Lines Matching refs:GetAllocator

417     HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph);  in TEST_F()
420 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
422 HBasicBlock* first_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
427 HEqual* equal = new (GetAllocator()) HEqual(constant0, constant0); in TEST_F()
429 first_block->AddInstruction(new (GetAllocator()) HIf(equal)); in TEST_F()
431 HBasicBlock* then_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
432 HBasicBlock* else_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
433 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
444 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
445 then_block->AddInstruction(new (GetAllocator()) HReturn(constant0)); in TEST_F()
446 else_block->AddInstruction(new (GetAllocator()) HReturn(constant1)); in TEST_F()
457 HParallelMove* move = new (graph_in->GetAllocator()) HParallelMove(graph_in->GetAllocator()); in TEST_F()
479 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
482 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
483 HBasicBlock* code_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
485 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
487 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
504 new (graph_in->GetAllocator()) HParallelMove(graph_in->GetAllocator()); in TEST_F()
528 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
531 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
533 HBasicBlock* if_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
535 HBasicBlock* if_true_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
537 HBasicBlock* if_false_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
539 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
541 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
573 new (graph_in->GetAllocator()) HParallelMove(graph_in->GetAllocator()); in TEST_F()
610 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); in TestComparison()
613 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TestComparison()
615 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in TestComparison()
618 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TestComparison()
621 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TestComparison()
643 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison()
647 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison()
651 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison()
655 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison()
659 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison()
663 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison()
667 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison()
671 comparison = new (GetAllocator()) HBelowOrEqual(op1, op2); in TestComparison()
675 comparison = new (GetAllocator()) HAbove(op1, op2); in TestComparison()
679 comparison = new (GetAllocator()) HAboveOrEqual(op1, op2); in TestComparison()
684 block->AddInstruction(new (GetAllocator()) HReturn(comparison)); in TestComparison()
731 HParallelMove* move = new (graph->GetAllocator()) HParallelMove(graph->GetAllocator()); in TEST_F()
777 HParallelMove* move = new (graph->GetAllocator()) HParallelMove(graph->GetAllocator()); in TEST_F()
803 HParallelMove* move = new (graph->GetAllocator()) HParallelMove(graph->GetAllocator()); in TEST_F()