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

  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/val/
Construct.cpp 71 const BasicBlock* Construct::exit_block() const { return exit_block_; } function in class:libspirv::Construct
72 BasicBlock* Construct::exit_block() { return exit_block_; } function in class:libspirv::Construct
  /art/compiler/optimizing/
graph_checker_test.cc 36 HBasicBlock* exit_block = new (allocator) HBasicBlock(graph); local
37 exit_block->AddInstruction(new (allocator) HExit());
38 graph->AddBlock(exit_block);
39 graph->SetExitBlock(exit_block);
40 entry_block->AddSuccessor(exit_block);
125 HBasicBlock* exit_block = graph->GetExitBlock(); local
126 HInstruction* last_inst = exit_block->GetLastInstruction();
127 exit_block->RemoveInstruction(last_inst);
nodes_test.cc 49 HBasicBlock* exit_block = new (&allocator) HBasicBlock(graph); local
50 graph->AddBlock(exit_block);
51 first_block->AddSuccessor(exit_block);
52 exit_block->AddInstruction(new (&allocator) HExit());
graph_test.cc 80 HBasicBlock* exit_block = createExitBlock(graph, &allocator); local
86 return_block->AddSuccessor(exit_block);
115 HBasicBlock* exit_block = createExitBlock(graph, &allocator); local
121 return_block->AddSuccessor(exit_block);
149 HBasicBlock* exit_block = createExitBlock(graph, &allocator); local
154 return_block->AddSuccessor(exit_block);
184 HBasicBlock* exit_block = createExitBlock(graph, &allocator); local
189 return_block->AddSuccessor(exit_block);
constant_folding_test.cc 751 HBasicBlock* exit_block = new (&allocator_) HBasicBlock(graph_); local
752 graph_->AddBlock(exit_block);
753 graph_->SetExitBlock(exit_block);
755 block->AddSuccessor(exit_block);
784 exit_block->AddInstruction(new (&allocator_) HExit());
codegen_test.cc 437 HBasicBlock* exit_block = new (&allocator) HBasicBlock(graph); local
438 graph->SetExitBlock(exit_block);
442 graph->AddBlock(exit_block);
445 then_block->AddSuccessor(exit_block);
446 else_block->AddSuccessor(exit_block);
448 exit_block->AddInstruction(new (&allocator) HExit());
489 HBasicBlock* exit_block = new (&allocator) HBasicBlock(graph); local
490 graph->AddBlock(exit_block);
491 exit_block->AddInstruction(new (&allocator) HExit());
494 code_block->AddSuccessor(exit_block);
542 HBasicBlock* exit_block = new (&allocator) HBasicBlock(graph); local
620 HBasicBlock* exit_block = new (&allocator) HBasicBlock(graph); local
835 HBasicBlock* exit_block = new (&allocator) HBasicBlock(graph); local
    [all...]
inliner.cc 1723 HBasicBlock* exit_block = callee_graph->GetExitBlock(); local
    [all...]

Completed in 963 milliseconds