Home | History | Annotate | Download | only in arm

Lines Matching refs:rmode

84 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
87 mov(ip, Operand(target, rmode));
90 mov(pc, Operand(target, rmode), LeaveCC, cond);
95 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode,
97 ASSERT(!RelocInfo::IsCodeTarget(rmode));
98 Jump(reinterpret_cast<intptr_t>(target), rmode, cond);
102 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
104 ASSERT(RelocInfo::IsCodeTarget(rmode));
106 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
136 Address target, RelocInfo::Mode rmode, Condition cond) {
140 if (!Operand(immediate, rmode).is_single_instruction(mov_instr)) {
148 RelocInfo::Mode rmode,
165 mov(ip, Operand(reinterpret_cast<int32_t>(target), rmode));
173 mov(pc, Operand(reinterpret_cast<int32_t>(target), rmode), LeaveCC, cond);
176 ASSERT_EQ(CallSize(target, rmode, cond), SizeOfCodeGeneratedSince(&start));
181 RelocInfo::Mode rmode,
184 return CallSize(reinterpret_cast<Address>(code.location()), rmode, cond);
189 RelocInfo::Mode rmode,
194 ASSERT(RelocInfo::IsCodeTarget(rmode));
195 if (rmode == RelocInfo::CODE_TARGET && ast_id != kNoASTId) {
197 rmode = RelocInfo::CODE_TARGET_WITH_ID;
200 Call(reinterpret_cast<Address>(code.location()), rmode, cond);
201 ASSERT_EQ(CallSize(code, rmode, ast_id, cond),
1072 RelocInfo::Mode rmode,
1086 Call(code, rmode);
1089 Jump(code, rmode);