Lines Matching refs:target
120 void TurboAssembler::Jump(Register target, Condition cond) { bx(target, cond); }
122 void TurboAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
124 mov(pc, Operand(target, rmode), LeaveCC, cond);
127 void TurboAssembler::Jump(Address target, RelocInfo::Mode rmode,
130 Jump(static_cast<intptr_t>(target), rmode, cond);
180 void TurboAssembler::Call(Register target, Condition cond) {
183 blx(target, cond);
186 void TurboAssembler::Call(Address target, RelocInfo::Mode rmode, Condition cond,
213 mov(ip, Operand(target, rmode));
365 void TurboAssembler::StoreReturnAddressAndCall(Register target) {
380 Call(target);
400 void TurboAssembler::Call(Label* target) { bl(target); }
1494 // if the target platform will need alignment, so this is controlled from a
1714 // Clear the new.target register if not given.
2636 void TurboAssembler::CallForDeoptimization(Builtin target, int, Label* exit,
2646 CHECK_LE(target, Builtins::kLastTier0);
2648 MemOperand(kRootRegister, IsolateData::BuiltinEntrySlotOffset(target)));