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

/art/compiler/optimizing/
H A Dcode_generator_mips64.cc2567 Mips64Label* false_target) {
2570 if (true_target == nullptr && false_target == nullptr) {
2581 if (false_target != nullptr) {
2582 __ Bc(false_target);
2589 // (1) true_target == nullptr && false_target != nullptr
2590 // - opposite condition true => branch to false_target
2591 // (2) true_target != nullptr && false_target == nullptr
2593 // (3) true_target != nullptr && false_target != nullptr
2595 // - branch to false_target
2601 __ Beqzc(cond_val.AsRegister<GpuRegister>(), false_target);
2564 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, Mips64Label* true_target, Mips64Label* false_target) argument
2652 Mips64Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? local
2691 Mips64Label false_target; local
[all...]
H A Dcode_generator_arm64.cc2809 vixl::Label* false_target) {
2815 if (true_target == nullptr && false_target == nullptr) {
2826 if (false_target != nullptr) {
2827 __ B(false_target);
2834 // (1) true_target == nullptr && false_target != nullptr
2835 // - opposite condition true => branch to false_target
2836 // (2) true_target != nullptr && false_target == nullptr
2838 // (3) true_target != nullptr && false_target != nullptr
2840 // - branch to false_target
2846 __ Cbz(InputRegisterAt(instruction, condition_input_index), false_target); local
2806 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, vixl::Label* true_target, vixl::Label* false_target) argument
2860 __ B(ARM64FPCondition(opposite_condition, condition->IsGtBias()), false_target); local
2931 vixl::Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? local
[all...]
H A Dcode_generator_mips.cc3242 MipsLabel* false_target) {
3245 if (true_target == nullptr && false_target == nullptr) {
3256 if (false_target != nullptr) {
3257 __ B(false_target);
3264 // (1) true_target == nullptr && false_target != nullptr
3265 // - opposite condition true => branch to false_target
3266 // (2) true_target != nullptr && false_target == nullptr
3268 // (3) true_target != nullptr && false_target != nullptr
3270 // - branch to false_target
3276 __ Beqz(cond_val.AsRegister<Register>(), false_target);
3239 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, MipsLabel* true_target, MipsLabel* false_target) argument
3327 MipsLabel* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? local
3366 MipsLabel false_target; local
[all...]
H A Dcode_generator_arm.cc1354 Label* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in; local
1363 GenerateLongComparesAndJumps(condition, true_target, false_target);
1367 GenerateFPJumps(condition, true_target, false_target);
1372 GenerateFPJumps(condition, true_target, false_target);
1378 if (false_target != &fallthrough_target) {
1379 __ b(false_target);
1390 Label* false_target) {
1393 if (true_target == nullptr && false_target == nullptr) {
1404 if (false_target != nullptr) {
1405 __ b(false_target);
1387 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, Label* true_target, Label* false_target) argument
1477 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? local
1515 Label false_target; local
[all...]
H A Dcode_generator_x86.cc1322 LabelType* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in; local
1331 GenerateLongComparesAndJumps(condition, true_target, false_target);
1335 GenerateFPJumps(condition, true_target, false_target);
1339 GenerateFPJumps(condition, true_target, false_target);
1345 if (false_target != &fallthrough_target) {
1346 __ jmp(false_target);
1368 LabelType* false_target) {
1371 if (true_target == nullptr && false_target == nullptr) {
1382 if (false_target != nullptr) {
1383 __ jmp(false_target);
1365 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, LabelType* true_target, LabelType* false_target) argument
1468 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? local
1608 NearLabel false_target; local
[all...]
H A Dcode_generator_x86_64.cc1365 LabelType* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in; local
1378 GenerateFPJumps(condition, true_target, false_target);
1382 GenerateFPJumps(condition, true_target, false_target);
1389 if (false_target != &fallthrough_target) {
1390 __ jmp(false_target);
1411 LabelType* false_target) {
1414 if (true_target == nullptr && false_target == nullptr) {
1425 if (false_target != nullptr) {
1426 __ jmp(false_target);
1433 // (1) true_target == nullptr && false_target !
1408 GenerateTestAndBranch(HInstruction* instruction, size_t condition_input_index, LabelType* true_target, LabelType* false_target) argument
1511 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? local
1619 NearLabel false_target; local
[all...]

Completed in 9781 milliseconds