Searched refs:if_cond (Results 1 - 6 of 6) sorted by last modified time

/art/compiler/optimizing/
H A Dcode_generator_arm.cc1269 IfCondition if_cond = cond->GetCondition(); local
1273 IfCondition true_high_cond = if_cond;
1275 Condition final_condition = ARMUnsignedCondition(if_cond); // unsigned on lower part
1280 switch (if_cond) {
1316 if (if_cond == kCondNE) {
1318 } else if (if_cond == kCondEQ) {
1331 if (if_cond == kCondNE) {
1333 } else if (if_cond == kCondEQ) {
H A Dcode_generator_arm64.cc2485 IfCondition if_cond = instruction->GetCondition(); local
2489 __ Cset(res, ARM64FPCondition(if_cond, instruction->IsGtBias()));
2495 __ Cset(res, ARM64Condition(if_cond));
H A Dcode_generator_mips.cc3286 IfCondition if_cond = condition->GetCondition(); local
3290 if_cond = condition->GetOppositeCondition();
3296 GenerateIntCompareAndBranch(if_cond, locations, branch_target);
3299 GenerateLongCompareAndBranch(if_cond, locations, branch_target);
3303 GenerateFpCompareAndBranch(if_cond, condition->IsGtBias(), type, locations, branch_target);
H A Dcode_generator_mips64.cc2611 IfCondition if_cond = condition->GetCondition(); local
2615 if_cond = condition->GetOppositeCondition();
2621 GenerateIntLongCompareAndBranch(if_cond, /* is64bit */ false, locations, branch_target);
2624 GenerateIntLongCompareAndBranch(if_cond, /* is64bit */ true, locations, branch_target);
2628 GenerateFpCompareAndBranch(if_cond, condition->IsGtBias(), type, locations, branch_target);
H A Dcode_generator_x86.cc1190 IfCondition if_cond = cond->GetCondition(); local
1194 IfCondition true_high_cond = if_cond;
1196 Condition final_condition = X86UnsignedOrFPCondition(if_cond); // unsigned on lower part
1200 switch (if_cond) {
1237 if (if_cond == kCondNE) {
1239 } else if (if_cond == kCondEQ) {
1252 if (if_cond == kCondNE) {
1254 } else if (if_cond == kCondEQ) {
1265 if (if_cond == kCondNE) {
1267 } else if (if_cond
[all...]
H A Dnodes.h3065 IfCondition if_cond = GetCondition(); local
3066 if (if_cond == kCondNE) {
3068 } else if (if_cond == kCondEQ) {
3071 return ((if_cond == kCondGT) || (if_cond == kCondGE)) && IsGtBias();
3076 IfCondition if_cond = GetCondition(); local
3077 if (if_cond == kCondEQ) {
3079 } else if (if_cond == kCondNE) {
3082 return ((if_cond == kCondLT) || (if_cond
[all...]

Completed in 87 milliseconds