Lines Matching refs:rmode
235 Operand::Operand(Register base, int32_t disp, RelocInfo::Mode rmode) { in Operand() argument
237 if (disp == 0 && RelocInfo::IsNone(rmode) && base != ebp) { in Operand()
241 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) { in Operand()
250 set_dispr(disp, rmode); in Operand()
259 RelocInfo::Mode rmode) { in Operand() argument
262 if (disp == 0 && RelocInfo::IsNone(rmode) && base != ebp) { in Operand()
266 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) { in Operand()
275 set_dispr(disp, rmode); in Operand()
283 RelocInfo::Mode rmode) { in Operand() argument
288 set_dispr(disp, rmode); in Operand()
646 void Assembler::mov(Operand dst, Address src, RelocInfo::Mode rmode) { in mov() argument
650 emit(src, rmode); in mov()
1612 void Assembler::call(Address entry, RelocInfo::Mode rmode) { in call() argument
1614 DCHECK(!RelocInfo::IsCodeTarget(rmode)); in call()
1616 if (RelocInfo::IsRuntimeEntry(rmode)) { in call()
1617 emit(entry, rmode); in call()
1619 emit(entry - (reinterpret_cast<Address>(pc_) + sizeof(int32_t)), rmode); in call()
1623 void Assembler::wasm_call(Address entry, RelocInfo::Mode rmode) { in wasm_call() argument
1626 emit(entry, rmode); in wasm_call()
1635 void Assembler::call(Handle<Code> code, RelocInfo::Mode rmode) { in call() argument
1637 DCHECK(RelocInfo::IsCodeTarget(rmode)); in call()
1639 emit(code, rmode); in call()
1694 void Assembler::jmp(Address entry, RelocInfo::Mode rmode) { in jmp() argument
1696 DCHECK(!RelocInfo::IsCodeTarget(rmode)); in jmp()
1698 if (RelocInfo::IsRuntimeEntry(rmode)) { in jmp()
1699 emit(entry, rmode); in jmp()
1701 emit(entry - (reinterpret_cast<Address>(pc_) + sizeof(int32_t)), rmode); in jmp()
1712 void Assembler::jmp(Handle<Code> code, RelocInfo::Mode rmode) { in jmp() argument
1714 DCHECK(RelocInfo::IsCodeTarget(rmode)); in jmp()
1716 emit(code, rmode); in jmp()
1765 void Assembler::j(Condition cc, byte* entry, RelocInfo::Mode rmode) { in j() argument
1771 if (RelocInfo::IsRuntimeEntry(rmode)) { in j()
1772 emit(reinterpret_cast<uint32_t>(entry), rmode); in j()
1774 emit(entry - (pc_ + sizeof(int32_t)), rmode); in j()
1779 void Assembler::j(Condition cc, Handle<Code> code, RelocInfo::Mode rmode) { in j() argument
1784 emit(code, rmode); in j()
3358 void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) { in RecordRelocInfo() argument
3359 DCHECK(!RelocInfo::IsNone(rmode)); in RecordRelocInfo()
3362 if (RelocInfo::IsOnlyForSerializer(rmode) && in RecordRelocInfo()
3366 RelocInfo rinfo(reinterpret_cast<Address>(pc_), rmode, data, nullptr); in RecordRelocInfo()