Lines Matching refs:target

1836 void TurboAssembler::BranchTrueShortF(Label* target, CFRegister cj) {
1837 bcnez(cj, target);
1840 void TurboAssembler::BranchFalseShortF(Label* target, CFRegister cj) {
1841 bceqz(cj, target);
1844 void TurboAssembler::BranchTrueF(Label* target, CFRegister cj) {
1846 bool long_branch = target->is_bound()
1847 ? !is_near(target, OffsetSize::kOffset21)
1852 Branch(target);
1855 BranchTrueShortF(target, cj);
1859 void TurboAssembler::BranchFalseF(Label* target, CFRegister cj) {
1860 bool long_branch = target->is_bound()
1861 ? !is_near(target, OffsetSize::kOffset21)
1866 Branch(target);
1869 BranchFalseShortF(target, cj);
2278 // target.
2530 void TurboAssembler::Jump(Register target, Condition cond, Register rj,
2534 jirl(zero_reg, target, 0);
2539 jirl(zero_reg, target, 0);
2544 void TurboAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
2552 li(t7, Operand(target, rmode));
2558 void TurboAssembler::Jump(Address target, RelocInfo::Mode rmode, Condition cond,
2561 Jump(static_cast<intptr_t>(target), rmode, cond, rj, rk);
2614 void TurboAssembler::Call(Register target, Condition cond, Register rj,
2618 jirl(ra, target, 0);
2623 jirl(ra, target, 0);
2643 void TurboAssembler::Call(Address target, RelocInfo::Mode rmode, Condition cond,
2650 intptr_t offset_diff = target - pc_offset();
2657 li(t7, Operand(static_cast<int64_t>(target), rmode), ADDRESS_LOAD);
2746 void TurboAssembler::PatchAndJump(Address target) {
2755 *reinterpret_cast<uint64_t*>(pc_) = target; // pc_ should be align.
2759 void TurboAssembler::StoreReturnAddressAndCall(Register target) {
2781 // TODO(LOONG_dev): can be jirl target? a0 -- a7?
2782 jirl(zero_reg, target, 0);
2862 void TurboAssembler::Call(Label* target) { Branch(target, true); }
3103 // Clear the new.target register if not given.
3631 // if the target platform will need alignment, so this is controlled from a
4081 void TurboAssembler::CallForDeoptimization(Builtin target, int, Label* exit,
4087 MemOperand(kRootRegister, IsolateData::BuiltinEntrySlotOffset(target)));