HomeSort by relevance Sort by last modified time
    Searched refs:rmode (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/v8/src/
disassembler.cc 154 it->rinfo()->rmode() == RelocInfo::INTERNAL_REFERENCE) {
175 if (RelocInfo::IsComment(it->rinfo()->rmode())) {
181 rmodes.Add(it->rinfo()->rmode());
215 RelocInfo::Mode rmode = relocinfo.rmode(); local
216 if (RelocInfo::IsPosition(rmode)) {
217 if (RelocInfo::IsStatementPosition(rmode)) {
222 } else if (rmode == RelocInfo::EMBEDDED_OBJECT) {
228 } else if (rmode == RelocInfo::EXTERNAL_REFERENCE) {
232 } else if (RelocInfo::IsCodeTarget(rmode)) {
    [all...]
assembler.cc 184 // (The middle_tag encodes rmode - RelocInfo::LAST_COMPACT_ENUM,
321 RelocInfo::Mode rmode = rinfo->rmode(); local
324 if (rmode == RelocInfo::EMBEDDED_OBJECT) {
326 } else if (rmode == RelocInfo::CODE_TARGET) {
329 } else if (rmode == RelocInfo::CODE_TARGET_WITH_ID) {
343 } else if (RelocInfo::IsPosition(rmode)) {
347 int pos_type_tag = (rmode == RelocInfo::POSITION) ? kNonstatementPositionTag
359 } else if (RelocInfo::IsComment(rmode)) {
365 ASSERT(rmode > RelocInfo::LAST_COMPACT_ENUM)
550 int rmode = extra_tag + RelocInfo::LAST_COMPACT_ENUM; local
    [all...]
  /external/chromium_org/v8/src/
disassembler.cc 154 it->rinfo()->rmode() == RelocInfo::INTERNAL_REFERENCE) {
175 if (RelocInfo::IsComment(it->rinfo()->rmode())) {
181 rmodes.Add(it->rinfo()->rmode());
215 RelocInfo::Mode rmode = relocinfo.rmode(); local
216 if (RelocInfo::IsPosition(rmode)) {
217 if (RelocInfo::IsStatementPosition(rmode)) {
222 } else if (rmode == RelocInfo::EMBEDDED_OBJECT) {
228 } else if (rmode == RelocInfo::EXTERNAL_REFERENCE) {
232 } else if (RelocInfo::IsCodeTarget(rmode)) {
    [all...]
assembler.cc 261 // (The middle_tag encodes rmode - RelocInfo::LAST_COMPACT_ENUM,
409 ASSERT(rinfo->rmode() < RelocInfo::NUMBER_OF_MODES);
415 RelocInfo::Mode rmode = rinfo->rmode(); local
418 if (rmode == RelocInfo::EMBEDDED_OBJECT) {
420 } else if (rmode == RelocInfo::CODE_TARGET) {
423 } else if (rmode == RelocInfo::CODE_TARGET_WITH_ID) {
437 } else if (RelocInfo::IsPosition(rmode)) {
441 int pos_type_tag = (rmode == RelocInfo::POSITION) ? kNonstatementPositionTag
453 } else if (RelocInfo::IsComment(rmode)) {
662 int rmode = extra_tag + RelocInfo::LAST_COMPACT_ENUM; local
    [all...]
  /external/v8/src/ia32/
assembler-ia32-inl.h 176 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
177 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
183 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
184 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
205 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
206 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
222 RelocInfo::Mode mode = rmode();
250 RelocInfo::Mode mode = rmode();
341 void Assembler::emit(uint32_t x, RelocInfo::Mode rmode, unsigned id) {
342 if (rmode == RelocInfo::CODE_TARGET && id != kNoASTId)
    [all...]
assembler-ia32.cc 229 Operand::Operand(Register base, int32_t disp, RelocInfo::Mode rmode) {
231 if (disp == 0 && rmode == RelocInfo::NONE && !base.is(ebp)) {
235 } else if (is_int8(disp) && rmode == RelocInfo::NONE) {
244 set_dispr(disp, rmode);
253 RelocInfo::Mode rmode) {
256 if (disp == 0 && rmode == RelocInfo::NONE && !base.is(ebp)) {
260 } else if (is_int8(disp) && rmode == RelocInfo::NONE) {
269 set_dispr(disp, rmode);
277 RelocInfo::Mode rmode) {
282 set_dispr(disp, rmode);
1448 emit(reinterpret_cast<intptr_t>(code.location()), rmode, ast_id); local
1498 emit(reinterpret_cast<intptr_t>(code.location()), rmode); local
2497 RelocInfo::Mode rmode = it.rinfo()->rmode(); local
    [all...]
assembler-ia32.h 318 INLINE(explicit Operand(int32_t disp, RelocInfo::Mode rmode));
323 RelocInfo::Mode rmode = RelocInfo::NONE);
330 RelocInfo::Mode rmode = RelocInfo::NONE);
336 RelocInfo::Mode rmode = RelocInfo::NONE);
375 inline void set_dispr(int32_t disp, RelocInfo::Mode rmode);
877 void call(byte* entry, RelocInfo::Mode rmode);
883 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
889 void jmp(byte* entry, RelocInfo::Mode rmode);
892 void jmp(Handle<Code> code, RelocInfo::Mode rmode);
898 void j(Condition cc, byte* entry, RelocInfo::Mode rmode);
    [all...]
  /external/chromium_org/v8/src/x64/
assembler-x64-inl.h 54 void Assembler::emitp(void* x, RelocInfo::Mode rmode) {
57 if (!RelocInfo::IsNone(rmode)) {
58 RecordRelocInfo(rmode, value);
64 void Assembler::emitq(uint64_t x, RelocInfo::Mode rmode) {
66 if (!RelocInfo::IsNone(rmode)) {
67 RecordRelocInfo(rmode, x);
80 RelocInfo::Mode rmode,
82 ASSERT(RelocInfo::IsCodeTarget(rmode));
83 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) {
86 RecordRelocInfo(rmode);
    [all...]
assembler-x64.h 703 void movq(Register dst, void* ptr, RelocInfo::Mode rmode);
704 void movq(Register dst, int64_t value, RelocInfo::Mode rmode);
705 void movq(Register dst, const char* s, RelocInfo::Mode rmode);
708 void movq(Register dst, Handle<Object> handle, RelocInfo::Mode rmode);
728 void load_rax(void* ptr, RelocInfo::Mode rmode);
    [all...]
assembler-x64.cc 505 RelocInfo::Mode rmode = it.rinfo()->rmode(); local
506 if (rmode == RelocInfo::INTERNAL_REFERENCE) {
840 void Assembler::call(Address entry, RelocInfo::Mode rmode) {
841 ASSERT(RelocInfo::IsRuntimeEntry(rmode));
846 emit_runtime_entry(entry, rmode);
851 RelocInfo::Mode rmode,
857 emit_code_target(target, rmode, ast_id);
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips-inl.h 52 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) {
55 rmode_ = rmode;
281 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
282 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
291 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
292 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
311 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
312 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
342 RelocInfo::Mode mode = rmode();
370 RelocInfo::Mode mode = rmode();
    [all...]
assembler-mips.cc 845 bool Assembler::MustUseReg(RelocInfo::Mode rmode) {
846 return !RelocInfo::IsNone(rmode);
2010 RelocInfo::Mode rmode = it.rinfo()->rmode(); local
    [all...]
  /external/v8/src/arm/
assembler-arm-inl.h 168 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
169 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
175 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
176 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
197 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
198 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
229 RelocInfo::Mode mode = rmode();
255 RelocInfo::Mode mode = rmode();
278 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) {
281 rmode_ = rmode;
    [all...]
macro-assembler-arm.cc 84 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
87 mov(ip, Operand(target, rmode));
90 mov(pc, Operand(target, rmode), LeaveCC, cond);
95 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode,
97 ASSERT(!RelocInfo::IsCodeTarget(rmode));
98 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
102 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
104 ASSERT(RelocInfo::IsCodeTarget(rmode));
106 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
136 Address target, RelocInfo::Mode rmode, Condition cond)
200 Call(reinterpret_cast<Address>(code.location()), rmode, cond); local
    [all...]
  /external/v8/src/mips/
assembler-mips-inl.h 51 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) {
54 rmode_ = rmode;
233 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
234 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
243 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
244 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
263 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
264 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
294 RelocInfo::Mode mode = rmode();
320 RelocInfo::Mode mode = rmode();
    [all...]
assembler-mips.cc 849 bool Assembler::MustUseReg(RelocInfo::Mode rmode) {
850 return rmode != RelocInfo::NONE;
1999 RelocInfo::Mode rmode = it.rinfo()->rmode(); local
    [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32-inl.h 209 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
210 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
216 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
217 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
238 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
239 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
255 RelocInfo::Mode mode = rmode();
285 RelocInfo::Mode mode = rmode();
383 void Assembler::emit(uint32_t x, RelocInfo::Mode rmode, TypeFeedbackId id) {
384 if (rmode == RelocInfo::CODE_TARGET && !id.IsNone())
397 emit(reinterpret_cast<intptr_t>(code.location()), rmode, id); local
    [all...]
assembler-ia32.cc 261 Operand::Operand(Register base, int32_t disp, RelocInfo::Mode rmode) {
263 if (disp == 0 && RelocInfo::IsNone(rmode) && !base.is(ebp)) {
267 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) {
276 set_dispr(disp, rmode);
285 RelocInfo::Mode rmode) {
288 if (disp == 0 && RelocInfo::IsNone(rmode) && !base.is(ebp)) {
292 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) {
301 set_dispr(disp, rmode);
309 RelocInfo::Mode rmode) {
314 set_dispr(disp, rmode);
1435 emit(reinterpret_cast<uint32_t>(entry), rmode); local
1504 emit(reinterpret_cast<uint32_t>(entry), rmode); local
1565 emit(reinterpret_cast<uint32_t>(entry), rmode); local
2591 RelocInfo::Mode rmode = it.rinfo()->rmode(); local
    [all...]
assembler-ia32.h 391 INLINE(explicit Operand(int32_t disp, RelocInfo::Mode rmode));
396 RelocInfo::Mode rmode = RelocInfo::NONE32);
403 RelocInfo::Mode rmode = RelocInfo::NONE32);
409 RelocInfo::Mode rmode = RelocInfo::NONE32);
449 inline void set_dispr(int32_t disp, RelocInfo::Mode rmode);
895 void call(byte* entry, RelocInfo::Mode rmode);
901 RelocInfo::Mode rmode,
907 void jmp(byte* entry, RelocInfo::Mode rmode);
910 void jmp(Handle<Code> code, RelocInfo::Mode rmode);
916 void j(Condition cc, byte* entry, RelocInfo::Mode rmode);
    [all...]
  /external/v8/src/x64/
assembler-x64-inl.h 51 void Assembler::emitq(uint64_t x, RelocInfo::Mode rmode) {
53 if (rmode != RelocInfo::NONE) {
54 RecordRelocInfo(rmode, x);
67 RelocInfo::Mode rmode,
69 ASSERT(RelocInfo::IsCodeTarget(rmode));
70 if (rmode == RelocInfo::CODE_TARGET && ast_id != kNoASTId) {
73 RecordRelocInfo(rmode);
356 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
357 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
364 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) |
    [all...]
assembler-x64.h 710 void movq(Register dst, void* ptr, RelocInfo::Mode rmode);
711 void movq(Register dst, int64_t value, RelocInfo::Mode rmode);
712 void movq(Register dst, const char* s, RelocInfo::Mode rmode);
715 void movq(Register dst, Handle<Object> handle, RelocInfo::Mode rmode);
734 void load_rax(void* ptr, RelocInfo::Mode rmode);
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm-inl.h 230 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
231 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
237 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
238 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
259 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
260 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
283 RelocInfo::Mode mode = rmode();
311 RelocInfo::Mode mode = rmode();
336 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) {
339 rmode_ = rmode;
    [all...]
macro-assembler-arm.h 91 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al);
92 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al);
95 int CallSize(Address target, RelocInfo::Mode rmode, Condition cond = al);
97 RelocInfo::Mode rmode,
99 void Call(Address target, RelocInfo::Mode rmode,
103 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
107 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
607 RelocInfo::Mode rmode,
    [all...]
  /external/chromium_org/v8/test/cctest/
test-reloc-info.cc 75 CHECK_EQ(mode, it.rinfo()->rmode());
92 CHECK_EQ(mode, it.rinfo()->rmode());
108 CHECK_EQ(mode, it.rinfo()->rmode());
  /external/v8/test/cctest/
test-reloc-info.cc 75 CHECK_EQ(mode, it.rinfo()->rmode());
92 CHECK_EQ(mode, it.rinfo()->rmode());
108 CHECK_EQ(mode, it.rinfo()->rmode());

Completed in 478 milliseconds

1 2 3 4 5