Searched defs:non_fallthrough_target (Results 1 - 1 of 1) sorted by relevance

/art/compiler/optimizing/
H A Dcode_generator_arm64.cc2870 vixl::Label* non_fallthrough_target; local
2873 non_fallthrough_target = false_target;
2876 non_fallthrough_target = true_target;
2883 __ Cbz(lhs, non_fallthrough_target);
2886 __ Cbnz(lhs, non_fallthrough_target);
2890 __ Tbnz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, non_fallthrough_target);
2894 __ Tbz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, non_fallthrough_target);
2903 __ B(arm64_cond, non_fallthrough_target);

Completed in 49 milliseconds