Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcodegen_test.cc637 HInstruction* comparison = nullptr; in TestComparison() local
643 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison()
647 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison()
651 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison()
655 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison()
659 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison()
663 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison()
667 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison()
671 comparison = new (GetAllocator()) HBelowOrEqual(op1, op2); in TestComparison()
675 comparison = new (GetAllocator()) HAbove(op1, op2); in TestComparison()
[all …]
Dinstruction_builder.cc617 T* comparison = new (allocator_) T(first, second, dex_pc); in If_22t() local
618 AppendInstruction(comparison); in If_22t()
619 AppendInstruction(new (allocator_) HIf(comparison, dex_pc)); in If_22t()
626 T* comparison = new (allocator_) T(value, graph_->GetIntConstant(0, dex_pc), dex_pc); in If_21t() local
627 AppendInstruction(comparison); in If_21t()
628 AppendInstruction(new (allocator_) HIf(comparison, dex_pc)); in If_21t()
758 HEqual* comparison = new (allocator_) HEqual(value, case_value, dex_pc); in BuildSwitch() local
759 AppendInstruction(comparison); in BuildSwitch()
760 AppendInstruction(new (allocator_) HIf(comparison, dex_pc)); in BuildSwitch()
2514 #define IF_XX(comparison, cond) \ in ProcessDexInstruction() argument
[all …]