Home
last modified time | relevance | path

Searched refs:non_fallthrough_target (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_arm64.cc3509 vixl::aarch64::Label* non_fallthrough_target; in GenerateTestAndBranch() local
3512 non_fallthrough_target = false_target; in GenerateTestAndBranch()
3515 non_fallthrough_target = true_target; in GenerateTestAndBranch()
3522 __ Cbz(lhs, non_fallthrough_target); in GenerateTestAndBranch()
3525 __ Cbnz(lhs, non_fallthrough_target); in GenerateTestAndBranch()
3529 __ Tbnz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, non_fallthrough_target); in GenerateTestAndBranch()
3533 __ Tbz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, non_fallthrough_target); in GenerateTestAndBranch()
3542 __ B(arm64_cond, non_fallthrough_target); in GenerateTestAndBranch()
Dcode_generator_arm_vixl.cc2659 vixl32::Label* non_fallthrough_target; in GenerateCompareTestAndBranch() local
2666 non_fallthrough_target = false_target; in GenerateCompareTestAndBranch()
2670 non_fallthrough_target = true_target; in GenerateCompareTestAndBranch()
2679 __ B(cond.first, non_fallthrough_target, is_far_target); in GenerateCompareTestAndBranch()
2748 vixl32::Label* non_fallthrough_target; in GenerateTestAndBranch() local
2755 non_fallthrough_target = false_target; in GenerateTestAndBranch()
2758 non_fallthrough_target = true_target; in GenerateTestAndBranch()
2763 __ CompareAndBranchIfZero(left, non_fallthrough_target, far_target); in GenerateTestAndBranch()
2766 __ CompareAndBranchIfNonZero(left, non_fallthrough_target, far_target); in GenerateTestAndBranch()
2770 __ B(arm_cond, non_fallthrough_target, far_target); in GenerateTestAndBranch()