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

/art/compiler/optimizing/
H A Dcode_generator_arm64.cc2811 // is nullptr (fallthrough) use and bind `fallthrough_target` instead.
2812 vixl::Label fallthrough_target; local
2914 if (fallthrough_target.IsLinked()) {
2915 __ Bind(&fallthrough_target);
H A Dcode_generator_arm.cc1351 // targets is nullptr (fallthrough) use and bind `fallthrough_target` instead.
1352 Label fallthrough_target; local
1353 Label* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in;
1354 Label* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in;
1378 if (false_target != &fallthrough_target) {
1382 if (fallthrough_target.IsLinked()) {
1383 __ Bind(&fallthrough_target);
H A Dcode_generator_x86.cc1319 // targets is nullptr (fallthrough) use and bind `fallthrough_target` instead.
1320 LabelType fallthrough_target; local
1321 LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in;
1322 LabelType* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in;
1345 if (false_target != &fallthrough_target) {
1349 if (fallthrough_target.IsLinked()) {
1350 __ Bind(&fallthrough_target);
H A Dcode_generator_x86_64.cc1362 // targets is nullptr (fallthrough) use and bind `fallthrough_target` instead.
1363 LabelType fallthrough_target; local
1364 LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in;
1365 LabelType* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in;
1389 if (false_target != &fallthrough_target) {
1393 if (fallthrough_target.IsLinked()) {
1394 __ Bind(&fallthrough_target);

Completed in 238 milliseconds