Home | History | Annotate | Download | only in ppc

Lines Matching defs:rmode

47 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
53 DCHECK(rmode == RelocInfo::CODE_TARGET || rmode == RelocInfo::RUNTIME_ENTRY);
55 mov(ip, Operand(target, rmode));
63 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode, Condition cond,
65 DCHECK(!RelocInfo::IsCodeTarget(rmode));
66 Jump(reinterpret_cast<intptr_t>(target), rmode, cond, cr);
70 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
72 DCHECK(RelocInfo::IsCodeTarget(rmode));
75 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
101 int MacroAssembler::CallSize(Address target, RelocInfo::Mode rmode,
103 Operand mov_operand = Operand(reinterpret_cast<intptr_t>(target), rmode);
109 RelocInfo::Mode rmode,
115 void MacroAssembler::Call(Address target, RelocInfo::Mode rmode,
123 int expected_size = CallSize(target, rmode, cond);
133 mov(ip, Operand(reinterpret_cast<intptr_t>(target), rmode));
141 int MacroAssembler::CallSize(Handle<Code> code, RelocInfo::Mode rmode,
144 return CallSize(reinterpret_cast<Address>(code.location()), rmode, cond);
148 void MacroAssembler::Call(Handle<Code> code, RelocInfo::Mode rmode,
151 DCHECK(RelocInfo::IsCodeTarget(rmode));
156 int expected_size = CallSize(code, rmode, ast_id, cond);
161 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) {
163 rmode = RelocInfo::CODE_TARGET_WITH_ID;
166 Call(reinterpret_cast<Address>(code.location()), rmode, cond);