Lines Matching refs:GetAllocator

415     HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph);  in TEST_F()
418 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
420 HBasicBlock* first_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
425 HEqual* equal = new (GetAllocator()) HEqual(constant0, constant0); in TEST_F()
427 first_block->AddInstruction(new (GetAllocator()) HIf(equal)); in TEST_F()
429 HBasicBlock* then_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
430 HBasicBlock* else_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
431 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
442 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
443 then_block->AddInstruction(new (GetAllocator()) HReturn(constant0)); in TEST_F()
444 else_block->AddInstruction(new (GetAllocator()) HReturn(constant1)); in TEST_F()
453 HParallelMove* move = new (graph_in->GetAllocator()) HParallelMove(graph_in->GetAllocator()); in TEST_F()
476 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
479 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
480 HBasicBlock* code_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
482 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
484 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
501 new (graph_in->GetAllocator()) HParallelMove(graph_in->GetAllocator()); in TEST_F()
524 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
527 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
529 HBasicBlock* if_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
531 HBasicBlock* if_true_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
533 HBasicBlock* if_false_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
535 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
537 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
569 new (graph_in->GetAllocator()) HParallelMove(graph_in->GetAllocator()); in TEST_F()
605 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); in TestComparison()
608 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TestComparison()
610 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in TestComparison()
613 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TestComparison()
616 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TestComparison()
638 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison()
642 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison()
646 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison()
650 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison()
654 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison()
658 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison()
662 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison()
666 comparison = new (GetAllocator()) HBelowOrEqual(op1, op2); in TestComparison()
670 comparison = new (GetAllocator()) HAbove(op1, op2); in TestComparison()
674 comparison = new (GetAllocator()) HAboveOrEqual(op1, op2); in TestComparison()
679 block->AddInstruction(new (GetAllocator()) HReturn(comparison)); in TestComparison()
724 HParallelMove* move = new (graph->GetAllocator()) HParallelMove(graph->GetAllocator()); in TEST_F()
769 HParallelMove* move = new (graph->GetAllocator()) HParallelMove(graph->GetAllocator()); in TEST_F()
794 HParallelMove* move = new (graph->GetAllocator()) HParallelMove(graph->GetAllocator()); in TEST_F()