Lines Matching refs:target
396 QuickEntrypointEnum target; in GenFilledNewArray() local
399 target = kQuickCheckAndAllocArray; in GenFilledNewArray()
401 target = kQuickCheckAndAllocArrayWithAccessCheck; in GenFilledNewArray()
403 CallRuntimeHelperImmMethodImm(target, type_idx, elems, true); in GenFilledNewArray()
471 LIR* target = NewLIR0(kPseudoTargetLabel); in GenFilledNewArray() local
481 OpDecAndBranch(kCondGe, r_idx, target); in GenFilledNewArray()
517 uninit_->target = unresolved_target; in Compile()
613 QuickEntrypointEnum target = in GenSput() local
616 CallRuntimeHelperImmRegLocation(target, field_info.FieldIndex(), rl_src, true); in GenSput()
695 QuickEntrypointEnum target = in GenSget() local
698 CallRuntimeHelperImm(target, field_info.FieldIndex(), true); in GenSget()
751 QuickEntrypointEnum target = in GenIGet() local
756 CallRuntimeHelperImmRegLocation(target, field_info.FieldIndex(), rl_obj, true); in GenIGet()
801 QuickEntrypointEnum target = in GenIPut() local
804 CallRuntimeHelperImmRegLocationRegLocation(target, field_info.FieldIndex(), rl_obj, rl_src, in GenIPut()
814 QuickEntrypointEnum target = needs_range_check in GenArrayObjPut() local
818 CallRuntimeHelperRegLocationRegLocationRegLocation(target, rl_array, rl_index, rl_src, true); in GenArrayObjPut()
1070 LIR* target = NewLIR0(kPseudoTargetLabel); in GenInstanceofFinal() local
1071 null_branchover->target = target; in GenInstanceofFinal()
1197 LIR* target = NewLIR0(kPseudoTargetLabel); in GenInstanceofCallingHelper() local
1199 branch1->target = target; in GenInstanceofCallingHelper()
1201 branchover->target = target; in GenInstanceofCallingHelper()
1345 branch1->target = cont; in GenCheckCast()
1396 QuickEntrypointEnum target; in GenShiftOpLong() local
1400 target = kQuickShlLong; in GenShiftOpLong()
1404 target = kQuickShrLong; in GenShiftOpLong()
1408 target = kQuickUshrLong; in GenShiftOpLong()
1412 target = kQuickShlLong; in GenShiftOpLong()
1415 CallRuntimeHelperRegLocationRegLocation(target, rl_src1, rl_shift, false); in GenShiftOpLong()
1840 QuickEntrypointEnum target; in GenArithOpLong() local
1873 target = kQuickLmul; in GenArithOpLong()
1880 target = kQuickLdiv; in GenArithOpLong()
1886 target = kQuickLmod; in GenArithOpLong()
1917 RegStorage r_tgt = CallHelperSetup(target); in GenArithOpLong()
1921 CallHelper(r_tgt, target, false /* not safepoint */); in GenArithOpLong()
1923 CallRuntimeHelperRegLocationRegLocation(target, rl_src1, rl_src2, false); in GenArithOpLong()
2001 void Mir2Lir::GenSuspendTestAndBranch(int opt_flags, LIR* target) { in GenSuspendTestAndBranch() argument
2004 OpUnconditionalBranch(target); in GenSuspendTestAndBranch()
2007 OpTestSuspend(target); in GenSuspendTestAndBranch()
2010 AddSlowPath(new (arena_) SuspendCheckSlowPath(this, branch, target)); in GenSuspendTestAndBranch()
2015 OpUnconditionalBranch(target); in GenSuspendTestAndBranch()
2021 OpUnconditionalBranch(target); in GenSuspendTestAndBranch()