Searched refs:comparison (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | codegen_test.cc | 632 HInstruction* comparison = nullptr; in TestComparison() local 638 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison() 642 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison() 646 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison() 650 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison() 654 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison() 658 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison() 662 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison() 666 comparison = new (GetAllocator()) HBelowOrEqual(op1, op2); in TestComparison() 670 comparison = new (GetAllocator()) HAbove(op1, op2); in TestComparison() [all …]
|
D | instruction_builder.cc | 606 T* comparison = new (allocator_) T(first, second, dex_pc); in If_22t() local 607 AppendInstruction(comparison); in If_22t() 608 AppendInstruction(new (allocator_) HIf(comparison, dex_pc)); in If_22t() 615 T* comparison = new (allocator_) T(value, graph_->GetIntConstant(0, dex_pc), dex_pc); in If_21t() local 616 AppendInstruction(comparison); in If_21t() 617 AppendInstruction(new (allocator_) HIf(comparison, dex_pc)); in If_21t() 747 HEqual* comparison = new (allocator_) HEqual(value, case_value, dex_pc); in BuildSwitch() local 748 AppendInstruction(comparison); in BuildSwitch() 749 AppendInstruction(new (allocator_) HIf(comparison, dex_pc)); in BuildSwitch() 2241 #define IF_XX(comparison, cond) \ in ProcessDexInstruction() argument [all …]
|