Lines Matching refs:GetAllocator
37 HBasicBlock* if_block = new (GetAllocator()) HBasicBlock(graph); in CreateIfBlock()
40 HInstruction* equal = new (GetAllocator()) HEqual(instr, instr); in CreateIfBlock()
42 instr = new (GetAllocator()) HIf(equal); in CreateIfBlock()
48 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in CreateGotoBlock()
50 HInstruction* got = new (GetAllocator()) HGoto(); in CreateGotoBlock()
62 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in CreateReturnBlock()
64 HInstruction* return_instr = new (GetAllocator()) HReturnVoid(); in CreateReturnBlock()
70 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in CreateExitBlock()
72 HInstruction* exit_instr = new (GetAllocator()) HExit(); in CreateExitBlock()
284 HInstruction* first_instruction = new (GetAllocator()) HIntConstant(4); in TEST_F()
297 HInstruction* second_instruction = new (GetAllocator()) HIntConstant(4); in TEST_F()