HomeSort by relevance Sort by last modified time
    Searched refs:RelocInfo (Results 26 - 50 of 171) sorted by null

12 3 4 5 6 7

  /external/v8/src/
assembler.h 288 // Specifies whether to perform icache flush operations on RelocInfo updates.
306 class RelocInfo {
365 CODE_AGE_SEQUENCE, // Not stored in RelocInfo array, used explictly by
378 RelocInfo() {}
380 RelocInfo(byte* pc, Mode rmode, intptr_t data, Code* host)
383 RelocInfo(byte* pc, double data64)
447 // Returns true if the first RelocInfo has the same mode and raw data as the
449 static inline bool IsEqual(RelocInfo first, RelocInfo second) {
451 (first.rmode() == RelocInfo::NONE64
    [all...]
variables.cc 45 initializer_position_(RelocInfo::kNoPosition),
type-info.cc 393 ZoneList<RelocInfo> infos(16, zone());
404 ZoneList<RelocInfo>* infos) {
405 int mask = RelocInfo::ModeMask(RelocInfo::CODE_TARGET_WITH_ID);
413 ZoneList<RelocInfo>* infos) {
421 void TypeFeedbackOracle::RelocateRelocInfos(ZoneList<RelocInfo>* infos,
425 RelocInfo* info = &(*infos)[i];
433 void TypeFeedbackOracle::ProcessRelocInfos(ZoneList<RelocInfo>* infos) {
435 RelocInfo reloc_entry = (*infos)[i];
parser.cc 723 factory->NewSymbolLiteral("symbolIterator", RelocInfo::kNoPosition);
735 return factory->NewTheHoleLiteral(RelocInfo::kNoPosition);
    [all...]
debug.cc 110 if (RelocInfo::IsPosition(rmode())) {
111 if (RelocInfo::IsStatementPosition(rmode())) {
127 } else if (RelocInfo::IsCodeTarget(rmode())) {
137 RelocInfo::IsConstructCall(rmode())) {
161 if (RelocInfo::IsJSReturn(rmode())) {
251 ~RelocInfo::ModeMask(RelocInfo::CODE_AGE_SEQUENCE));
254 ~RelocInfo::ModeMask(RelocInfo::CODE_AGE_SEQUENCE));
333 if (RelocInfo::IsJSReturn(rmode()))
    [all...]
serialize.h 269 virtual void VisitRuntimeEntry(RelocInfo* rinfo) {
425 void VisitEmbeddedPointer(RelocInfo* target);
427 void VisitExternalReference(RelocInfo* rinfo);
428 void VisitCodeTarget(RelocInfo* target);
430 void VisitCell(RelocInfo* rinfo);
431 void VisitRuntimeEntry(RelocInfo* reloc);
  /external/v8/src/ia32/
deoptimizer-ia32.cc 43 if (pc_delta <= RelocInfo::kMaxSmallPCDelta) {
56 int comment_reloc_size = RelocInfo::kMinRelocCommentSize;
77 = reinterpret_cast<intptr_t>(RelocInfo::kFillerCommentString);
78 RelocInfo rinfo(0, RelocInfo::COMMENT, comment_string, NULL);
84 DCHECK(RelocInfo::kMinRelocCommentSize ==
142 patcher.masm()->call(deopt_entry, RelocInfo::NONE32);
144 RelocInfo rinfo(call_address + 1, // 1 after the call opcode.
145 RelocInfo::RUNTIME_ENTRY,
assembler-ia32.h 289 bool is_zero() const { return x_ == 0 && RelocInfo::IsNone(rmode_); }
291 return -128 <= x_ && x_ < 128 && RelocInfo::IsNone(rmode_);
294 return -32768 <= x_ && x_ < 32768 && RelocInfo::IsNone(rmode_);
301 RelocInfo::Mode rmode_;
333 INLINE(explicit Operand(int32_t disp, RelocInfo::Mode rmode));
340 RelocInfo::Mode rmode = RelocInfo::NONE32);
347 RelocInfo::Mode rmode = RelocInfo::NONE32);
353 RelocInfo::Mode rmode = RelocInfo::NONE32)
    [all...]
assembler-ia32.cc 87 // Implementation of RelocInfo
90 const int RelocInfo::kApplyMask =
91 RelocInfo::kCodeTargetMask | 1 << RelocInfo::RUNTIME_ENTRY |
92 1 << RelocInfo::JS_RETURN | 1 << RelocInfo::INTERNAL_REFERENCE |
93 1 << RelocInfo::DEBUG_BREAK_SLOT | 1 << RelocInfo::CODE_AGE_SEQUENCE;
96 bool RelocInfo::IsCodedSpecially() {
105 bool RelocInfo::IsInConstantPool()
    [all...]
debug-ia32.cc 42 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
43 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
  /external/v8/src/ic/arm/
ic-compiler-arm.cc 81 __ Jump(handlers->at(current), RelocInfo::CODE_TARGET, eq);
108 __ Jump(handler_stubs->at(i), RelocInfo::CODE_TARGET, eq);
113 __ Jump(handler_stubs->at(i), RelocInfo::CODE_TARGET, al);
  /external/v8/src/ic/mips/
ic-compiler-mips.cc 65 __ Jump(handlers->at(current), RelocInfo::CODE_TARGET, eq, match,
91 __ Jump(handler_stubs->at(i), RelocInfo::CODE_TARGET, eq, scratch1(),
97 __ Jump(handler_stubs->at(i), RelocInfo::CODE_TARGET);
  /external/v8/src/ic/mips64/
ic-compiler-mips64.cc 65 __ Jump(handlers->at(current), RelocInfo::CODE_TARGET, eq, match,
91 __ Jump(handler_stubs->at(i), RelocInfo::CODE_TARGET, eq, scratch1(),
97 __ Jump(handler_stubs->at(i), RelocInfo::CODE_TARGET);
  /external/v8/src/compiler/
source-position.h 31 static const int kUnknownPosition = RelocInfo::kNoPosition;
  /external/v8/src/heap/
objects-visiting.h 366 INLINE(static void VisitEmbeddedPointer(Heap* heap, RelocInfo* rinfo));
367 INLINE(static void VisitCell(Heap* heap, RelocInfo* rinfo));
368 INLINE(static void VisitDebugTarget(Heap* heap, RelocInfo* rinfo));
369 INLINE(static void VisitCodeTarget(Heap* heap, RelocInfo* rinfo));
370 INLINE(static void VisitCodeAgeSequence(Heap* heap, RelocInfo* rinfo));
371 INLINE(static void VisitExternalReference(RelocInfo* rinfo)) {}
372 INLINE(static void VisitRuntimeEntry(RelocInfo* rinfo)) {}
incremental-marking.h 111 INLINE(void RecordWriteIntoCode(HeapObject* obj, RelocInfo* rinfo,
118 void RecordWriteIntoCodeSlow(HeapObject* obj, RelocInfo* rinfo,
incremental-marking-inl.h 58 void IncrementalMarking::RecordWriteIntoCode(HeapObject* obj, RelocInfo* rinfo,
  /external/v8/src/arm/
assembler-arm.cc 220 // Implementation of RelocInfo
222 const int RelocInfo::kApplyMask = 0;
225 bool RelocInfo::IsCodedSpecially() {
234 bool RelocInfo::IsInConstantPool() {
239 void RelocInfo::PatchCode(byte* instructions, int instruction_count) {
254 void RelocInfo::PatchCodeWithCall(Address target, int guard_bytes) {
272 rmode_ = RelocInfo::EMBEDDED_OBJECT;
276 rmode_ = RelocInfo::NONE32;
1047 if (rmode_ == RelocInfo::EXTERNAL_REFERENCE) {
1050 } else if (RelocInfo::IsNone(rmode_))
    [all...]
  /external/v8/src/x87/
deoptimizer-x87.cc 43 if (pc_delta <= RelocInfo::kMaxSmallPCDelta) {
56 int comment_reloc_size = RelocInfo::kMinRelocCommentSize;
77 = reinterpret_cast<intptr_t>(RelocInfo::kFillerCommentString);
78 RelocInfo rinfo(0, RelocInfo::COMMENT, comment_string, NULL);
84 DCHECK(RelocInfo::kMinRelocCommentSize ==
142 patcher.masm()->call(deopt_entry, RelocInfo::NONE32);
144 RelocInfo rinfo(call_address + 1, // 1 after the call opcode.
145 RelocInfo::RUNTIME_ENTRY,
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 366 unsigned int n = relocInfo ? relocInfo->count : 0;
369 size_t size = sizeof(RelocInfo) + n * sizeof(RelocEntry);
370 relocInfo = reinterpret_cast<RelocInfo *>(
371 REALLOC(relocInfo, n ? size : 0,
373 if (!relocInfo)
376 memset(relocInfo, 0, sizeof(RelocInfo));
378 ++relocInfo->count
    [all...]
  /external/v8/src/ic/arm64/
ic-compiler-arm64.cc 81 __ Jump(handlers->at(current), RelocInfo::CODE_TARGET);
118 __ Jump(handler_stubs->at(i), RelocInfo::CODE_TARGET);
  /external/v8/src/arm64/
assembler-arm64.cc 167 // Implementation of RelocInfo
169 const int RelocInfo::kApplyMask = 0;
172 bool RelocInfo::IsCodedSpecially() {
180 bool RelocInfo::IsInConstantPool() {
186 void RelocInfo::PatchCode(byte* instructions, int instruction_count) {
201 void RelocInfo::PatchCodeWithCall(Address target, int guard_bytes) {
281 rmode_ = RelocInfo::EMBEDDED_OBJECT;
285 rmode_ = RelocInfo::NONE64;
291 RelocInfo::Mode rmode = immediate_.rmode();
293 if (rmode == RelocInfo::EXTERNAL_REFERENCE)
    [all...]
  /external/v8/src/x64/
assembler-x64.h 552 static inline RelocInfo::Mode RelocInfoNone() {
554 return RelocInfo::NONE64;
557 return RelocInfo::NONE32;
723 void movp(Register dst, void* ptr, RelocInfo::Mode rmode);
745 void load_rax(void* ptr, RelocInfo::Mode rmode);
844 void store_rax(void* dst, RelocInfo::Mode mode);
891 void call(Address entry, RelocInfo::Mode rmode);
893 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
    [all...]
assembler-x64.cc 39 // Implementation of RelocInfo
43 void RelocInfo::PatchCodeWithCall(Address target, int guard_bytes) {
71 void RelocInfo::PatchCode(byte* instructions, int instruction_count) {
374 RelocInfo::Mode rmode = it.rinfo()->rmode();
375 if (rmode == RelocInfo::INTERNAL_REFERENCE) {
676 void Assembler::call(Address entry, RelocInfo::Mode rmode) {
677 DCHECK(RelocInfo::IsRuntimeEntry(rmode));
687 RelocInfo::Mode rmode,
1028 void Assembler::j(Condition cc, Address entry, RelocInfo::Mode rmode) {
1029 DCHECK(RelocInfo::IsRuntimeEntry(rmode))
    [all...]
macro-assembler-x64.h     [all...]

Completed in 353 milliseconds

12 3 4 5 6 7