Searched refs:HGreaterThanOrEqual (Results 1 – 9 of 9) sorted by relevance
/art/compiler/optimizing/ |
D | bounds_check_elimination_test.cc | 63 HInstruction* cmp = new (&allocator) HGreaterThanOrEqual(parameter2, constant_0); in TEST() 180 HInstruction* cmp2 = new (&allocator) HGreaterThanOrEqual(add, array_length); in TEST() 243 HInstruction* cmp = new (&allocator) HGreaterThanOrEqual(parameter2, array_length); in TEST() 402 cmp = new (allocator) HGreaterThanOrEqual(phi, array_length); in BuildSSAGraph1() 664 cmp = new (allocator) HGreaterThanOrEqual(phi, constant_10); in BuildSSAGraph3() 781 cmp = new (allocator) HGreaterThanOrEqual(phi, array_length); in BuildSSAGraph4() 893 HInstruction* cmp = new (&allocator) HGreaterThanOrEqual(phi_i, add); in TEST() 910 cmp = new (&allocator) HGreaterThanOrEqual(phi_j, add); in TEST() 938 cmp = new (&allocator) HGreaterThanOrEqual(array_get_j, array_get_j_plus_1); in TEST()
|
D | boolean_simplifier.cc | 77 return new (allocator) HGreaterThanOrEqual(lhs, rhs); in GetOppositeCondition()
|
D | nodes.h | 2077 class HGreaterThanOrEqual : public HCondition { 2079 HGreaterThanOrEqual(HInstruction* first, HInstruction* second) in HGreaterThanOrEqual() function 2096 DISALLOW_COPY_AND_ASSIGN(HGreaterThanOrEqual);
|
D | bounds_check_elimination.cc | 824 cond = new (graph->GetArena()) HGreaterThanOrEqual(initial_, end_); in AddLoopBodyEntryTest()
|
D | code_generator_mips64.cc | 3241 void LocationsBuilderMIPS64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { in VisitGreaterThanOrEqual() 3245 void InstructionCodeGeneratorMIPS64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { in VisitGreaterThanOrEqual()
|
D | builder.cc | 1427 IF_XX(HGreaterThanOrEqual, GE); in AnalyzeDexInstruction()
|
D | code_generator_arm.cc | 1106 void LocationsBuilderARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { in VisitGreaterThanOrEqual() 1110 void InstructionCodeGeneratorARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { in VisitGreaterThanOrEqual()
|
D | code_generator_x86_64.cc | 1022 void LocationsBuilderX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { in VisitGreaterThanOrEqual() 1026 void InstructionCodeGeneratorX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { in VisitGreaterThanOrEqual()
|
D | code_generator_x86.cc | 1061 void LocationsBuilderX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { in VisitGreaterThanOrEqual() 1065 void InstructionCodeGeneratorX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { in VisitGreaterThanOrEqual()
|