Searched defs:rmode (Results 1 - 25 of 45) sorted by relevance

12

/external/v8/src/arm/
H A Dmacro-assembler-arm.cc84 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode, argument
87 mov(ip, Operand(target, rmode));
90 mov(pc, Operand(target, rmode), LeaveCC, cond);
95 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode, argument
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, argument
104 ASSERT(RelocInfo::IsCodeTarget(rmode));
106 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
136 Address target, RelocInfo::Mode rmode, Conditio
135 CallSize( Address target, RelocInfo::Mode rmode, Condition cond) argument
147 Call(Address target, RelocInfo::Mode rmode, Condition cond) argument
180 CallSize(Handle<Code> code, RelocInfo::Mode rmode, unsigned ast_id, Condition cond) argument
188 Call(Handle<Code> code, RelocInfo::Mode rmode, unsigned ast_id, Condition cond) argument
200 Call(reinterpret_cast<Address>(code.location()), rmode, cond); local
[all...]
H A Dassembler-arm-inl.h168 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) { argument
281 rmode_ = rmode;
[all...]
/external/chromium_org/v8/src/arm/
H A Dmacro-assembler-arm.cc60 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode, argument
62 mov(ip, Operand(target, rmode));
67 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode, argument
69 ASSERT(!RelocInfo::IsCodeTarget(rmode));
70 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
74 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode, argument
76 ASSERT(RelocInfo::IsCodeTarget(rmode));
79 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
99 Address target, RelocInfo::Mode rmode, Condition cond) {
103 if (!Operand(immediate, rmode)
98 CallSize( Address target, RelocInfo::Mode rmode, Condition cond) argument
110 CallSizeNotPredictableCodeSize( Address target, RelocInfo::Mode rmode, Condition cond) argument
122 Call(Address target, RelocInfo::Mode rmode, Condition cond, TargetAddressStorageMode mode) argument
163 CallSize(Handle<Code> code, RelocInfo::Mode rmode, TypeFeedbackId ast_id, Condition cond) argument
172 Call(Handle<Code> code, RelocInfo::Mode rmode, TypeFeedbackId ast_id, Condition cond, TargetAddressStorageMode mode) argument
186 Call(reinterpret_cast<Address>(code.location()), rmode, cond, mode); local
[all...]
H A Dassembler-arm-inl.h230 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) { argument
339 rmode_ = rmode;
[all...]
/external/chromium_org/v8/src/
H A Ddisassembler.cc154 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...]
H A Dassembler.cc261 // (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
738 RelocModeName(RelocInfo::Mode rmode) argument
[all...]
H A Dassembler.h214 // (rmode), and an optional data field. The relocation mode may be
294 RelocInfo(byte* pc, Mode rmode, intptr_t data, Code* host) argument
295 : pc_(pc), rmode_(rmode), data_(data), host_(host) {
361 Mode rmode() const { return rmode_; } function in class:v8::internal::BASE_EMBEDDED
452 static const char* RelocModeName(Mode rmode);
H A Ddebug.h127 inline RelocInfo::Mode rmode() const { function in class:v8::internal::BreakLocationIterator
128 return reloc_iterator_->rinfo()->rmode();
134 return reloc_iterator_original_->rinfo()->rmode();
/external/v8/src/
H A Ddisassembler.cc154 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...]
H A Dassembler.cc184 // (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 > RelocInf
550 int rmode = extra_tag + RelocInfo::LAST_COMPACT_ENUM; local
595 RelocModeName(RelocInfo::Mode rmode) argument
[all...]
H A Dassembler.h152 // (rmode), and an optional data field. The relocation mode may be
220 RelocInfo(byte* pc, Mode rmode, intptr_t data, Code* host) argument
221 : pc_(pc), rmode_(rmode), data_(data), host_(host) {
263 Mode rmode() const { return rmode_; } function in class:v8::internal::BASE_EMBEDDED
342 static const char* RelocModeName(Mode rmode);
H A Ddebug.h117 inline RelocInfo::Mode rmode() const { function in class:v8::internal::BreakLocationIterator
118 return reloc_iterator_->rinfo()->rmode();
124 return reloc_iterator_original_->rinfo()->rmode();
/external/v8/src/mips/
H A Dassembler-mips-inl.h51 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) { argument
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...]
/external/chromium_org/v8/src/mips/
H A Dassembler-mips-inl.h52 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) { argument
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...]
H A Dassembler-mips.cc845 bool Assembler::MustUseReg(RelocInfo::Mode rmode) { argument
846 return !RelocInfo::IsNone(rmode);
2010 RelocInfo::Mode rmode = it.rinfo()->rmode(); local
2011 if (rmode == RelocInfo::INTERNAL_REFERENCE) {
2035 void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) { argument
2037 RelocInfo rinfo(pc_, rmode, data, NULL);
2038 if (rmode >= RelocInfo::JS_RETURN && rmode <= RelocInfo::DEBUG_BREAK_SLOT) {
2040 ASSERT(RelocInfo::IsDebugBreakSlot(rmode)
[all...]
/external/chromium_org/v8/src/x64/
H A Dassembler-x64-inl.h54 void Assembler::emitp(void* x, RelocInfo::Mode rmode) { argument
57 if (!RelocInfo::IsNone(rmode)) {
58 RecordRelocInfo(rmode, value);
64 void Assembler::emitq(uint64_t x, RelocInfo::Mode rmode) { argument
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);
79 emit_code_target(Handle<Code> target, RelocInfo::Mode rmode, TypeFeedbackId ast_id) argument
99 emit_runtime_entry(Address entry, RelocInfo::Mode rmode) argument
[all...]
H A Dmacro-assembler-x64.h342 RelocInfo::Mode rmode,
832 void Jump(Address destination, RelocInfo::Mode rmode);
834 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode);
836 void Call(Address destination, RelocInfo::Mode rmode);
839 RelocInfo::Mode rmode,
843 int CallSize(Address destination, RelocInfo::Mode rmode) { argument
H A Dassembler-x64.cc505 RelocInfo::Mode rmode = it.rinfo()->rmode(); local
506 if (rmode == RelocInfo::INTERNAL_REFERENCE) {
840 void Assembler::call(Address entry, RelocInfo::Mode rmode) { argument
841 ASSERT(RelocInfo::IsRuntimeEntry(rmode));
846 emit_runtime_entry(entry, rmode);
851 RelocInfo::Mode rmode,
857 emit_code_target(target, rmode, ast_id);
1258 void Assembler::j(Condition cc, Address entry, RelocInfo::Mode rmode) { argument
1259 ASSERT(RelocInfo::IsRuntimeEntry(rmode));
850 call(Handle<Code> target, RelocInfo::Mode rmode, TypeFeedbackId ast_id) argument
1268 j(Condition cc, Handle<Code> target, RelocInfo::Mode rmode) argument
1322 jmp(Handle<Code> target, RelocInfo::Mode rmode) argument
1330 jmp(Address entry, RelocInfo::Mode rmode) argument
1522 movq(Register dst, void* value, RelocInfo::Mode rmode) argument
1533 movq(Register dst, int64_t value, RelocInfo::Mode rmode) argument
3064 RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) argument
[all...]
/external/v8/src/ia32/
H A Dassembler-ia32-inl.h176 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) { argument
342 if (rmode
445 set_dispr(int32_t disp, RelocInfo::Mode rmode) argument
465 Operand(int32_t disp, RelocInfo::Mode rmode) argument
[all...]
/external/v8/src/x64/
H A Dassembler-x64-inl.h51 void Assembler::emitq(uint64_t x, RelocInfo::Mode rmode) { argument
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())
66 emit_code_target(Handle<Code> target, RelocInfo::Mode rmode, unsigned ast_id) argument
[all...]
H A Dmacro-assembler-x64.h347 RelocInfo::Mode rmode,
810 void Jump(Address destination, RelocInfo::Mode rmode);
812 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode);
814 void Call(Address destination, RelocInfo::Mode rmode);
817 RelocInfo::Mode rmode,
821 int CallSize(Address destination, RelocInfo::Mode rmode) { argument
/external/chromium_org/v8/src/ia32/
H A Dassembler-ia32-inl.h209 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) { argument
384 if (rmode
393 emit(Handle<Code> code, RelocInfo::Mode rmode, TypeFeedbackId id) argument
397 emit(reinterpret_cast<intptr_t>(code.location()), rmode, id); local
500 set_dispr(int32_t disp, RelocInfo::Mode rmode) argument
520 Operand(int32_t disp, RelocInfo::Mode rmode) argument
[all...]
H A Dassembler-ia32.cc261 Operand::Operand(Register base, int32_t disp, RelocInfo::Mode rmode) { argument
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);
281 Operand(Register base, Register index, ScaleFactor scale, int32_t disp, RelocInfo::Mode rmode) argument
306 Operand(Register index, ScaleFactor scale, int32_t disp, RelocInfo::Mode rmode) argument
1429 call(byte* entry, RelocInfo::Mode rmode) argument
1435 emit(reinterpret_cast<uint32_t>(entry), rmode); local
1456 CallSize(Handle<Code> code, RelocInfo::Mode rmode) argument
1461 call(Handle<Code> code, RelocInfo::Mode rmode, TypeFeedbackId ast_id) argument
1499 jmp(byte* entry, RelocInfo::Mode rmode) argument
1504 emit(reinterpret_cast<uint32_t>(entry), rmode); local
1518 jmp(Handle<Code> code, RelocInfo::Mode rmode) argument
1558 j(Condition cc, byte* entry, RelocInfo::Mode rmode) argument
1565 emit(reinterpret_cast<uint32_t>(entry), rmode); local
2591 RelocInfo::Mode rmode = it.rinfo()->rmode(); local
2672 RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) argument
[all...]
H A Dmacro-assembler-ia32.cc2318 RelocInfo::Mode rmode,
2332 call_wrapper.BeforeCall(CallSize(code, rmode));
2334 call(code, rmode);
2339 jmp(code, rmode);
2315 InvokeCode(Handle<Code> code, const ParameterCount& expected, const ParameterCount& actual, RelocInfo::Mode rmode, InvokeFlag flag, const CallWrapper& call_wrapper, CallKind call_kind) argument
/external/valgrind/main/VEX/priv/
H A Dguest_x86_helpers.c1472 UInt rmode = (fpucw >> 10) & 3; local
1487 return (((ULong)ew) << 32) | ((ULong)rmode);
1509 UInt rmode = (mxcsr >> 13) & 3; local
1529 return (((ULong)ew) << 32) | ((ULong)rmode);

Completed in 384 milliseconds

12