Lines Matching refs:rmode
236 DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) || in call_address()
237 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence())); in call_address()
243 DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) || in set_call_address()
244 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence())); in set_call_address()
265 DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) || in call_object_address()
266 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence())); in call_object_address()
294 RelocInfo::Mode mode = rmode(); in Visit()
321 RelocInfo::Mode mode = rmode(); in Visit()
414 void Assembler::emit(uint32_t x, RelocInfo::Mode rmode, TypeFeedbackId id) { in emit() argument
415 if (rmode == RelocInfo::CODE_TARGET && !id.IsNone()) { in emit()
417 } else if (!RelocInfo::IsNone(rmode) in emit()
418 && rmode != RelocInfo::CODE_AGE_SEQUENCE) { in emit()
419 RecordRelocInfo(rmode); in emit()
426 RelocInfo::Mode rmode, in emit() argument
429 emit(reinterpret_cast<intptr_t>(code.location()), rmode, id); in emit()
543 void Operand::set_dispr(int32_t disp, RelocInfo::Mode rmode) { in set_dispr() argument
548 rmode_ = rmode; in set_dispr()
557 Operand::Operand(int32_t disp, RelocInfo::Mode rmode) { in Operand() argument
560 set_dispr(disp, rmode); in Operand()