Home | History | Annotate | Download | only in optimizing

Lines Matching refs:true_target

1321   LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in;
1331 GenerateLongComparesAndJumps(condition, true_target, false_target);
1335 GenerateFPJumps(condition, true_target, false_target);
1339 GenerateFPJumps(condition, true_target, false_target);
1367 LabelType* true_target,
1371 if (true_target == nullptr && false_target == nullptr) {
1377 if (true_target != nullptr) {
1378 __ jmp(true_target);
1390 // (1) true_target == nullptr && false_target != nullptr
1392 // (2) true_target != nullptr && false_target == nullptr
1393 // - condition true => branch to true_target
1394 // (3) true_target != nullptr && false_target != nullptr
1395 // - condition true => branch to true_target
1399 if (true_target == nullptr) {
1402 __ j(X86Condition(cond->AsCondition()->GetCondition()), true_target);
1412 if (true_target == nullptr) {
1415 __ j(kNotEqual, true_target);
1427 GenerateCompareTestAndBranch(condition, true_target, false_target);
1442 if (true_target == nullptr) {
1445 __ j(X86Condition(condition->GetCondition()), true_target);
1449 // If neither branch falls through (case 3), the conditional branch to `true_target`
1451 if (true_target != nullptr && false_target != nullptr) {
1466 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ?
1470 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);
1610 select, /* condition_input_index */ 2, /* true_target */ nullptr, &false_target);