• Home
  • Raw
  • Download

Lines Matching refs:cmp

82   HInstruction* cmp = new (GetAllocator()) HGreaterThanOrEqual(parameter2, constant_0);  in TEST_F()  local
83 HIf* if_inst = new (GetAllocator()) HIf(cmp); in TEST_F()
84 block1->AddInstruction(cmp); in TEST_F()
105 cmp = new (GetAllocator()) HLessThan(parameter2, array_length); in TEST_F()
106 if_inst = new (GetAllocator()) HIf(cmp); in TEST_F()
109 block3->AddInstruction(cmp); in TEST_F()
180 HInstruction* cmp = new (GetAllocator()) HLessThanOrEqual(parameter2, constant_0); in TEST_F() local
181 HIf* if_inst = new (GetAllocator()) HIf(cmp); in TEST_F()
182 block1->AddInstruction(cmp); in TEST_F()
247 HInstruction* cmp = new (GetAllocator()) HGreaterThanOrEqual(parameter2, array_length); in TEST_F() local
248 HIf* if_inst = new (GetAllocator()) HIf(cmp); in TEST_F()
251 block1->AddInstruction(cmp); in TEST_F()
394 HInstruction* cmp = nullptr; in BuildSSAGraph1() local
396 cmp = new (allocator) HGreaterThanOrEqual(phi, array_length); in BuildSSAGraph1()
399 cmp = new (allocator) HGreaterThan(phi, array_length); in BuildSSAGraph1()
401 HInstruction* if_inst = new (allocator) HIf(cmp); in BuildSSAGraph1()
405 loop_header->AddInstruction(cmp); in BuildSSAGraph1()
512 HInstruction* cmp = nullptr; in BuildSSAGraph2() local
514 cmp = new (allocator) HLessThanOrEqual(phi, constant_initial); in BuildSSAGraph2()
517 cmp = new (allocator) HLessThan(phi, constant_initial); in BuildSSAGraph2()
519 HInstruction* if_inst = new (allocator) HIf(cmp); in BuildSSAGraph2()
521 loop_header->AddInstruction(cmp); in BuildSSAGraph2()
621 HInstruction* cmp = nullptr; in BuildSSAGraph3() local
623 cmp = new (allocator) HGreaterThanOrEqual(phi, constant_10); in BuildSSAGraph3()
626 cmp = new (allocator) HGreaterThan(phi, constant_10); in BuildSSAGraph3()
628 HInstruction* if_inst = new (allocator) HIf(cmp); in BuildSSAGraph3()
630 loop_header->AddInstruction(cmp); in BuildSSAGraph3()
722 HInstruction* cmp = nullptr; in BuildSSAGraph4() local
724 cmp = new (allocator) HGreaterThanOrEqual(phi, array_length); in BuildSSAGraph4()
726 cmp = new (allocator) HGreaterThan(phi, array_length); in BuildSSAGraph4()
728 HInstruction* if_inst = new (allocator) HIf(cmp); in BuildSSAGraph4()
732 loop_header->AddInstruction(cmp); in BuildSSAGraph4()
819 HInstruction* cmp = new (GetAllocator()) HGreaterThanOrEqual(phi_i, add); in TEST_F() local
820 HIf* if_inst = new (GetAllocator()) HIf(cmp); in TEST_F()
825 outer_header->AddInstruction(cmp); in TEST_F()
836 cmp = new (GetAllocator()) HGreaterThanOrEqual(phi_j, add); in TEST_F()
837 if_inst = new (GetAllocator()) HIf(cmp); in TEST_F()
843 inner_header->AddInstruction(cmp); in TEST_F()
864 cmp = new (GetAllocator()) HGreaterThanOrEqual(array_get_j, array_get_j_plus_1); in TEST_F()
865 if_inst = new (GetAllocator()) HIf(cmp); in TEST_F()
871 inner_body_compare->AddInstruction(cmp); in TEST_F()
1002 HInstruction* cmp = new (GetAllocator()) HGreaterThanOrEqual(phi, constant_200); in TEST_F() local
1003 HInstruction* if_inst = new (GetAllocator()) HIf(cmp); in TEST_F()
1005 loop_header->AddInstruction(cmp); in TEST_F()