Home | History | Annotate | Download | only in arm

Lines Matching defs:rmode

39 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
41 DCHECK(RelocInfo::IsCodeTarget(rmode));
42 mov(pc, Operand(target, rmode), LeaveCC, cond);
46 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode,
48 DCHECK(!RelocInfo::IsCodeTarget(rmode));
49 Jump(reinterpret_cast<intptr_t>(target), rmode, cond);
53 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
55 DCHECK(RelocInfo::IsCodeTarget(rmode));
58 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
78 Address target, RelocInfo::Mode rmode, Condition cond) {
80 Operand mov_operand = Operand(reinterpret_cast<intptr_t>(target), rmode);
93 RelocInfo::Mode rmode,
109 int expected_size = CallSize(target, rmode, cond);
123 mov(ip, Operand(reinterpret_cast<int32_t>(target), rmode));
134 RelocInfo::Mode rmode,
138 return CallSize(reinterpret_cast<Address>(code.location()), rmode, cond);
143 RelocInfo::Mode rmode,
149 DCHECK(RelocInfo::IsCodeTarget(rmode));
150 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) {
152 rmode = RelocInfo::CODE_TARGET_WITH_ID;
156 Call(reinterpret_cast<Address>(code.location()), rmode, cond, mode);