Lines Matching refs:GetAllocator

737   HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph_);  in TEST_F()
740 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
742 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
749 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F()
752 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
757 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter)); in TEST_F()
758 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
759 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero)); in TEST_F()
760 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
761 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(zero, parameter)); in TEST_F()
762 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
763 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(parameter, zero)); in TEST_F()
764 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
765 block->AddInstruction(last = new (GetAllocator()) HBelow(zero, parameter)); in TEST_F()
766 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
767 block->AddInstruction(last = new (GetAllocator()) HBelow(parameter, zero)); in TEST_F()
768 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
769 block->AddInstruction(last = new (GetAllocator()) HBelowOrEqual(zero, parameter)); in TEST_F()
770 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
771 block->AddInstruction(last = new (GetAllocator()) HBelowOrEqual(parameter, zero)); in TEST_F()
772 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
773 block->AddInstruction(new (GetAllocator()) HReturn(zero)); in TEST_F()
775 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()