Home
last modified time | relevance | path

Searched refs:comparison (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dcodegen_test.cc635 HInstruction* comparison = nullptr; in TestComparison() local
641 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison()
645 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison()
649 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison()
653 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison()
657 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison()
661 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison()
665 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison()
669 comparison = new (GetAllocator()) HBelowOrEqual(op1, op2); in TestComparison()
673 comparison = new (GetAllocator()) HAbove(op1, op2); in TestComparison()
[all …]
Dinstruction_builder.cc616 T* comparison = new (allocator_) T(first, second, dex_pc); in If_22t() local
617 AppendInstruction(comparison); in If_22t()
618 AppendInstruction(new (allocator_) HIf(comparison, dex_pc)); in If_22t()
625 T* comparison = new (allocator_) T(value, graph_->GetIntConstant(0, dex_pc), dex_pc); in If_21t() local
626 AppendInstruction(comparison); in If_21t()
627 AppendInstruction(new (allocator_) HIf(comparison, dex_pc)); in If_21t()
759 HEqual* comparison = new (allocator_) HEqual(value, case_value, dex_pc); in BuildSwitch() local
760 AppendInstruction(comparison); in BuildSwitch()
761 AppendInstruction(new (allocator_) HIf(comparison, dex_pc)); in BuildSwitch()
2068 #define IF_XX(comparison, cond) \ in ProcessDexInstruction() argument
[all …]