• Home
  • Raw
  • Download

Lines Matching refs:GetAllocator

742   HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph_);  in TEST_F()
745 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
747 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
754 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F()
757 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
762 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter)); in TEST_F()
763 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
764 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero)); in TEST_F()
765 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
766 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(zero, parameter)); in TEST_F()
767 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
768 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(parameter, zero)); in TEST_F()
769 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
770 block->AddInstruction(last = new (GetAllocator()) HBelow(zero, parameter)); in TEST_F()
771 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
772 block->AddInstruction(last = new (GetAllocator()) HBelow(parameter, zero)); in TEST_F()
773 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
774 block->AddInstruction(last = new (GetAllocator()) HBelowOrEqual(zero, parameter)); in TEST_F()
775 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
776 block->AddInstruction(last = new (GetAllocator()) HBelowOrEqual(parameter, zero)); in TEST_F()
777 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
778 block->AddInstruction(new (GetAllocator()) HReturn(zero)); in TEST_F()
780 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()