Home | History | Annotate | Download | only in arm64

Lines Matching defs:rmode

1884 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
1891 Mov(temp, Operand(target, rmode));
1897 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode,
1899 DCHECK(!RelocInfo::IsCodeTarget(rmode));
1900 Jump(reinterpret_cast<intptr_t>(target), rmode, cond);
1904 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
1906 DCHECK(RelocInfo::IsCodeTarget(rmode));
1908 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
1944 void MacroAssembler::Call(Address target, RelocInfo::Mode rmode) {
1952 DCHECK(rmode != RelocInfo::NONE32);
1957 if (rmode == RelocInfo::NONE64) {
1966 Ldr(temp, Immediate(reinterpret_cast<intptr_t>(target), rmode));
1970 AssertSizeOfCodeGeneratedSince(&start_call, CallSize(target, rmode));
1976 RelocInfo::Mode rmode,
1983 if ((rmode == RelocInfo::CODE_TARGET) && (!ast_id.IsNone())) {
1985 rmode = RelocInfo::CODE_TARGET_WITH_ID;
1989 Call(reinterpret_cast<Address>(code.location()), rmode);
1993 AssertSizeOfCodeGeneratedSince(&start_call, CallSize(code, rmode, ast_id));
2010 int MacroAssembler::CallSize(Address target, RelocInfo::Mode rmode) {
2014 DCHECK(rmode != RelocInfo::NONE32);
2016 if (rmode == RelocInfo::NONE64) {
2025 RelocInfo::Mode rmode,
2031 DCHECK(rmode != RelocInfo::NONE32);
2033 if (rmode == RelocInfo::NONE64) {