Lines Matching refs:rmode

431 bool Assembler::UseConstPoolFor(RelocInfo::Mode rmode) {  in UseConstPoolFor()  argument
433 return (rmode == RelocInfo::NONE || rmode == RelocInfo::EXTERNAL_REFERENCE || in UseConstPoolFor()
434 rmode == RelocInfo::OFF_HEAP_TARGET); in UseConstPoolFor()
1088 void Assembler::call(Address entry, RelocInfo::Mode rmode) { in call() argument
1089 DCHECK(RelocInfo::IsRuntimeEntry(rmode)); in call()
1093 emit_runtime_entry(entry, rmode); in call()
1106 void Assembler::call(Handle<Code> target, RelocInfo::Mode rmode) { in call() argument
1107 DCHECK(RelocInfo::IsCodeTarget(rmode)); in call()
1111 RecordRelocInfo(rmode); in call()
1116 void Assembler::near_call(Address addr, RelocInfo::Mode rmode) { in near_call() argument
1121 RecordRelocInfo(rmode); in near_call()
1125 void Assembler::near_jmp(Address addr, RelocInfo::Mode rmode) { in near_jmp() argument
1130 RecordRelocInfo(rmode); in near_jmp()
1531 void Assembler::j(Condition cc, Address entry, RelocInfo::Mode rmode) { in j() argument
1532 DCHECK(RelocInfo::IsRuntimeEntry(rmode)); in j()
1537 emit_runtime_entry(entry, rmode); in j()
1543 RelocInfo::Mode rmode) { in j() argument
1545 jmp(target, rmode); in j()
1555 DCHECK(RelocInfo::IsCodeTarget(rmode)); in j()
1556 RecordRelocInfo(rmode); in j()
1618 void Assembler::jmp(Handle<Code> target, RelocInfo::Mode rmode) { in jmp() argument
1619 DCHECK(RelocInfo::IsCodeTarget(rmode)); in jmp()
1623 RecordRelocInfo(rmode); in jmp()
1799 void Assembler::movp(Register dst, Address value, RelocInfo::Mode rmode) { in movp() argument
1800 if (constpool_.TryRecordEntry(value, rmode)) { in movp()
1809 emitp(value, rmode); in movp()
1821 void Assembler::movq(Register dst, int64_t value, RelocInfo::Mode rmode) { in movq() argument
1822 if (constpool_.TryRecordEntry(value, rmode)) { in movq()
1831 if (!RelocInfo::IsNone(rmode)) { in movq()
1832 RecordRelocInfo(rmode, value); in movq()
1838 void Assembler::movq(Register dst, uint64_t value, RelocInfo::Mode rmode) { in movq() argument
1839 movq(dst, static_cast<int64_t>(value), rmode); in movq()
4964 void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) { in RecordRelocInfo() argument
4965 DCHECK(!RelocInfo::IsNone(rmode)); in RecordRelocInfo()
4967 if (RelocInfo::IsOnlyForSerializer(rmode) && in RecordRelocInfo()
4971 RelocInfo rinfo(reinterpret_cast<Address>(pc_), rmode, data, nullptr); in RecordRelocInfo()