HomeSort by relevance Sort by last modified time
    Searched defs:exit_block (Results 1 - 4 of 4) sorted by null

  /art/compiler/optimizing/
graph_checker_test.cc 38 HBasicBlock* exit_block = new (allocator) HBasicBlock(graph); local
39 exit_block->AddInstruction(new (allocator) HExit());
40 graph->AddBlock(exit_block);
41 graph->SetExitBlock(exit_block);
42 entry_block->AddSuccessor(exit_block);
140 HBasicBlock* exit_block = graph->GetExitBlock(); local
141 HInstruction* last_inst = exit_block->GetLastInstruction();
142 exit_block->RemoveInstruction(last_inst);
nodes_test.cc 48 HBasicBlock* exit_block = new (&allocator) HBasicBlock(graph); local
49 graph->AddBlock(exit_block);
50 first_block->AddSuccessor(exit_block);
51 exit_block->AddInstruction(new (&allocator) HExit());
graph_test.cc 81 HBasicBlock* exit_block = createExitBlock(graph, &allocator); local
87 return_block->AddSuccessor(exit_block);
116 HBasicBlock* exit_block = createExitBlock(graph, &allocator); local
122 return_block->AddSuccessor(exit_block);
150 HBasicBlock* exit_block = createExitBlock(graph, &allocator); local
155 return_block->AddSuccessor(exit_block);
185 HBasicBlock* exit_block = createExitBlock(graph, &allocator); local
190 return_block->AddSuccessor(exit_block);
codegen_test.cc 654 HBasicBlock* exit_block = new (&allocator) HBasicBlock(graph); local
655 graph->AddBlock(exit_block);
656 exit_block->AddInstruction(new (&allocator) HExit());
659 code_block->AddSuccessor(exit_block);
660 graph->SetExitBlock(exit_block);
705 HBasicBlock* exit_block = new (&allocator) HBasicBlock(graph); local
706 graph->AddBlock(exit_block);
707 exit_block->AddInstruction(new (&allocator) HExit());
713 if_true_block->AddSuccessor(exit_block);
714 if_false_block->AddSuccessor(exit_block);
    [all...]

Completed in 387 milliseconds