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

12 3 4 5

  /external/v8/src/heap/
objects-visiting-inl.h 228 DCHECK(rinfo->rmode() == RelocInfo::EMBEDDED_OBJECT);
244 DCHECK(rinfo->rmode() == RelocInfo::CELL);
257 DCHECK(RelocInfo::IsDebugBreakSlot(rinfo->rmode()) &&
269 DCHECK(RelocInfo::IsCodeTarget(rinfo->rmode()));
279 DCHECK(RelocInfo::IsCodeAgeSequence(rinfo->rmode()));
  /external/v8/src/arm64/
assembler-arm64.cc 298 RelocInfo::Mode rmode = immediate_.rmode(); local
300 if (rmode == RelocInfo::EXTERNAL_REFERENCE) {
304 return !RelocInfo::IsNone(rmode);
2951 RelocInfo rinfo(isolate(), reinterpret_cast<byte*>(pc_), rmode, data, NULL); local
2982 rmode, RecordedAstId().ToInt(), NULL); local
    [all...]
assembler-arm64-inl.h 307 Immediate::Immediate(T t, RelocInfo::Mode rmode)
309 rmode_(rmode) {
324 Operand::Operand(T t, RelocInfo::Mode rmode)
325 : immediate_(t, rmode),
809 DCHECK(IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence());
818 DCHECK(IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence());
842 RelocInfo::Mode mode = rmode();
864 RelocInfo::Mode mode = rmode();
    [all...]
macro-assembler-arm64.cc 1900 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
1908 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
1989 Call(reinterpret_cast<Address>(code.location()), rmode); local
    [all...]
simulator-arm64.h 719 int32_t FPToInt32(double value, FPRounding rmode);
720 int64_t FPToInt64(double value, FPRounding rmode);
721 uint32_t FPToUInt32(double value, FPRounding rmode);
722 uint64_t FPToUInt64(double value, FPRounding rmode);
823 DCHECK(fpcr().RMode() == FPTieEven); // Ties-to-even rounding only.
  /external/v8/src/profiler/
profiler-listener.cc 259 if (info->rmode() == RelocInfo::DEOPT_SCRIPT_OFFSET) {
262 DCHECK(it.rinfo()->rmode() == RelocInfo::DEOPT_INLINING_ID);
267 if (info->rmode() == RelocInfo::DEOPT_ID) {
  /external/v8/src/compiler/
common-operator.cc 148 return lhs.rmode() == rhs.rmode() && lhs.value() == rhs.value() &&
158 return base::hash_combine(p.value(), p.rmode(), p.type());
163 return os << p.value() << "|" << p.rmode() << "|" << p.type();
    [all...]
raw-machine-assembler.cc 39 RelocInfo::Mode rmode) {
41 ? RelocatableInt64Constant(value, rmode)
42 : RelocatableInt32Constant(static_cast<int>(value), rmode);
  /external/v8/src/wasm/
wasm-code-specialization.cc 139 DCHECK(RelocInfo::IsCodeTarget(it.rinfo()->rmode()));
188 RelocInfo::Mode mode = it.rinfo()->rmode();
  /external/v8/src/
assembler.h 293 // (rmode), and an optional data field. The relocation mode may be
379 RelocInfo(Isolate* isolate, byte* pc, Mode rmode, intptr_t data, Code* host)
380 : isolate_(isolate), pc_(pc), rmode_(rmode), data_(data), host_(host) {
484 Mode rmode() const { return rmode_; } function in class:v8::internal::RelocInfo
611 static const char* RelocModeName(Mode rmode);
675 inline void WriteMode(RelocInfo::Mode rmode);
676 inline void WriteModeAndPC(uint32_t pc_delta, RelocInfo::Mode rmode);
    [all...]
  /external/v8/src/ia32/
assembler-ia32.h 276 inline explicit Immediate(Address x, RelocInfo::Mode rmode);
332 INLINE(explicit Operand(int32_t disp, RelocInfo::Mode rmode));
339 RelocInfo::Mode rmode = RelocInfo::NONE32);
346 RelocInfo::Mode rmode = RelocInfo::NONE32);
352 RelocInfo::Mode rmode = RelocInfo::NONE32);
398 inline void set_dispr(int32_t disp, RelocInfo::Mode rmode);
838 void call(byte* entry, RelocInfo::Mode rmode);
844 RelocInfo::Mode rmode,
850 void jmp(byte* entry, RelocInfo::Mode rmode);
853 void jmp(Handle<Code> code, RelocInfo::Mode rmode);
    [all...]
macro-assembler-ia32.h     [all...]
  /external/v8/src/x64/
macro-assembler-x64.h     [all...]
assembler-x64.cc 853 void Assembler::call(Address entry, RelocInfo::Mode rmode) {
854 DCHECK(RelocInfo::IsRuntimeEntry(rmode));
858 emit_runtime_entry(entry, rmode);
863 RelocInfo::Mode rmode,
868 emit_code_target(target, rmode, ast_id);
4734 RelocInfo rinfo(isolate(), pc_, rmode, data, NULL); local
    [all...]
assembler-x64.h 341 explicit Immediate(int32_t value, RelocInfo::Mode rmode)
342 : value_(value), rmode_(rmode) {}
696 void movp(Register dst, void* ptr, RelocInfo::Mode rmode);
700 RelocInfo::Mode rmode = RelocInfo::NONE64);
702 RelocInfo::Mode rmode = RelocInfo::NONE64);
724 void load_rax(void* ptr, RelocInfo::Mode rmode);
    [all...]
  /external/v8/src/s390/
assembler-s390.cc 2090 DeferredRelocInfo rinfo(pc_offset(), rmode, data); local
2108 RelocInfo::Mode rmode = it->rmode(); local
2111 RelocInfo rinfo(isolate(), pc, rmode, it->data(), code); local
    [all...]
assembler-s390.h 300 RelocInfo::Mode rmode = kRelocInfo_NONEPTR));
375 DeferredRelocInfo(int position, RelocInfo::Mode rmode, intptr_t data)
376 : position_(position), rmode_(rmode), data_(data) {}
379 RelocInfo::Mode rmode() const { return rmode_; }
840 void call(Handle<Code> target, RelocInfo::Mode rmode,
842 void jump(Handle<Code> target, RelocInfo::Mode rmode, Condition cond);
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc 39 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
41 DCHECK(RelocInfo::IsCodeTarget(rmode));
42 mov(pc, Operand(target, rmode), LeaveCC, cond);
46 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode,
48 DCHECK(!RelocInfo::IsCodeTarget(rmode));
49 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
53 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
55 DCHECK(RelocInfo::IsCodeTarget(rmode));
58 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
78 Address target, RelocInfo::Mode rmode, Condition cond)
156 Call(reinterpret_cast<Address>(code.location()), rmode, cond, mode); local
    [all...]
macro-assembler-arm.h 100 int CallSize(Address target, RelocInfo::Mode rmode, Condition cond = al);
107 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al);
108 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al);
110 void Call(Address target, RelocInfo::Mode rmode,
113 void Call(Handle<Code> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
117 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 1025 bool Assembler::MustUseReg(RelocInfo::Mode rmode) {
1026 return !RelocInfo::IsNone(rmode);
3048 RelocInfo::Mode rmode = it.rinfo()->rmode(); local
3094 RelocInfo rinfo(isolate(), pc_, rmode, data, NULL); local
3109 RelocInfo reloc_info_with_ast_id(isolate(), pc_, rmode, local
    [all...]
  /external/v8/src/mips64/
assembler-mips64.cc 993 bool Assembler::MustUseReg(RelocInfo::Mode rmode) {
994 return !RelocInfo::IsNone(rmode);
3318 RelocInfo::Mode rmode = it.rinfo()->rmode(); local
3363 RelocInfo rinfo(isolate(), pc_, rmode, data, NULL); local
3378 RelocInfo reloc_info_with_ast_id(isolate(), pc_, rmode, local
    [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.cc 47 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
53 DCHECK(rmode == RelocInfo::CODE_TARGET || rmode == RelocInfo::RUNTIME_ENTRY);
55 mov(ip, Operand(target, rmode));
63 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode, Condition cond,
65 DCHECK(!RelocInfo::IsCodeTarget(rmode));
66 Jump(reinterpret_cast<intptr_t>(target), rmode, cond, cr); local
70 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
72 DCHECK(RelocInfo::IsCodeTarget(rmode));
75 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond) local
166 Call(reinterpret_cast<Address>(code.location()), rmode, cond); local
    [all...]
assembler-ppc.h 307 RelocInfo::Mode rmode = kRelocInfo_NONEPTR));
375 DeferredRelocInfo(int position, RelocInfo::Mode rmode, intptr_t data)
376 : position_(position), rmode_(rmode), data_(data) {}
379 RelocInfo::Mode rmode() const { return rmode_; }
    [all...]
macro-assembler-ppc.h 119 int CallSize(Address target, RelocInfo::Mode rmode, Condition cond = al);
121 RelocInfo::Mode rmode,
127 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al,
129 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al);
132 void Call(Address target, RelocInfo::Mode rmode, Condition cond = al);
134 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
137 void Call(Handle<Code> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
    [all...]
  /external/v8/src/x87/
macro-assembler-x87.h 732 void Call(Handle<Code> target, RelocInfo::Mode rmode,
734 call(target, rmode, id);
736 void Jump(Handle<Code> target, RelocInfo::Mode rmode) { jmp(target, rmode); }
    [all...]

Completed in 327 milliseconds

12 3 4 5