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

/art/compiler/optimizing/
H A Dcode_generator_arm64.cc3564 vixl::aarch64::Label* true_target,
3568 if (true_target == nullptr && false_target == nullptr) {
3574 if (true_target != nullptr) {
3575 __ B(true_target);
3587 // (1) true_target == nullptr && false_target != nullptr
3589 // (2) true_target != nullptr && false_target == nullptr
3590 // - condition true => branch to true_target
3591 // (3) true_target != nullptr && false_target != nullptr
3592 // - condition true => branch to true_target
3598 if (true_target
3562 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, vixl::aarch64::Label* true_target, vixl::aarch64::Label* false_target) argument
3601 __ Cbnz(InputRegisterAt(instruction, condition_input_index), true_target); local
3678 vixl::aarch64::Label* true_target = codegen_->GetLabelOf(true_successor); local
[all...]
H A Dcode_generator_arm.cc2556 Label* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in; local
2560 GenerateLongComparesAndJumps(condition, true_target, false_target);
2573 Label* true_target,
2577 if (true_target == nullptr && false_target == nullptr) {
2583 if (true_target != nullptr) {
2584 __ b(true_target);
2596 // (1) true_target == nullptr && false_target != nullptr
2598 // (2) true_target != nullptr && false_target == nullptr
2599 // - condition true => branch to true_target
2600 // (3) true_target !
2571 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, Label* true_target, Label* false_target) argument
2677 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? local
2839 Label* true_target = nullptr; local
[all...]
H A Dcode_generator_arm_vixl.cc2591 vixl32::Label* true_target = (true_target_in == nullptr) ? &fallthrough : true_target_in; local
2595 GenerateLongComparesAndJumps(condition, true_target, false_target);
2608 vixl32::Label* true_target,
2613 if (true_target == nullptr && false_target == nullptr) {
2619 if (true_target != nullptr) {
2620 __ B(true_target);
2632 // (1) true_target == nullptr && false_target != nullptr
2634 // (2) true_target != nullptr && false_target == nullptr
2635 // - condition true => branch to true_target
2636 // (3) true_target !
2606 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, vixl32::Label* true_target, vixl32::Label* false_target, bool far_target) argument
2651 true_target, local
2710 vixl32::Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? local
2870 vixl32::Label* true_target = nullptr; local
[all...]
H A Dcode_generator_x86.cc1549 LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in; local
1559 GenerateLongComparesAndJumps(condition, true_target, false_target);
1563 GenerateFPJumps(condition, true_target, false_target);
1567 GenerateFPJumps(condition, true_target, false_target);
1595 LabelType* true_target,
1599 if (true_target == nullptr && false_target == nullptr) {
1605 if (true_target != nullptr) {
1606 __ jmp(true_target);
1618 // (1) true_target == nullptr && false_target != nullptr
1620 // (2) true_target !
1593 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, LabelType* true_target, LabelType* false_target) argument
1687 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? local
[all...]
H A Dcode_generator_x86_64.cc1572 LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in; local
1582 __ j(X86_64IntegerCondition(condition->GetCondition()), true_target);
1586 GenerateFPJumps(condition, true_target, false_target);
1590 GenerateFPJumps(condition, true_target, false_target);
1618 LabelType* true_target,
1622 if (true_target == nullptr && false_target == nullptr) {
1628 if (true_target != nullptr) {
1629 __ jmp(true_target);
1641 // (1) true_target == nullptr && false_target != nullptr
1643 // (2) true_target !
1616 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, LabelType* true_target, LabelType* false_target) argument
1709 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? local
[all...]

Completed in 66 milliseconds