HomeSort by relevance Sort by last modified time
    Searched refs:entry_block (Results 1 - 25 of 39) sorted by null

1 2

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/val/
construct.h 61 const BasicBlock* entry_block() const;
66 BasicBlock* entry_block();
construct.cpp 56 const BasicBlock* Construct::entry_block() const { return entry_block_; } function in class:libspirv::Construct
57 BasicBlock* Construct::entry_block() { return entry_block_; } function in class:libspirv::Construct
function.cpp 171 ->entry_block();
290 entry_block_to_construct_[std::make_pair(new_construct.entry_block(),
295 Construct& Function::FindConstructForEntryBlock(const BasicBlock* entry_block,
298 entry_block_to_construct_.find(std::make_pair(entry_block, type));
335 BasicBlock* loop_header = loop_construct->entry_block();
function.h 210 Construct& FindConstructForEntryBlock(const BasicBlock* entry_block,
  /art/compiler/optimizing/
graph_checker_test.cc 38 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); local
39 entry_block->AddInstruction(new (GetAllocator()) HReturnVoid());
40 graph->AddBlock(entry_block);
41 graph->SetEntryBlock(entry_block);
46 entry_block->AddSuccessor(exit_block);
graph_test.cc 82 HBasicBlock* entry_block = CreateEntryBlock(graph); local
88 entry_block->AddSuccessor(if_block);
114 HBasicBlock* entry_block = CreateEntryBlock(graph); local
120 entry_block->AddSuccessor(if_block);
146 HBasicBlock* entry_block = CreateEntryBlock(graph); local
151 entry_block->AddSuccessor(if_block);
166 ASSERT_EQ(if_block->GetPredecessors()[0], entry_block->GetSingleSuccessor());
178 HBasicBlock* entry_block = CreateEntryBlock(graph); local
183 entry_block->AddSuccessor(if_block);
198 ASSERT_EQ(if_block->GetPredecessors()[0], entry_block->GetSingleSuccessor())
210 HBasicBlock* entry_block = CreateEntryBlock(graph); local
246 HBasicBlock* entry_block = CreateEntryBlock(graph); local
    [all...]
pc_relative_fixups_mips.cc 56 HBasicBlock* entry_block = GetGraph()->GetEntryBlock(); local
57 entry_block->InsertInstructionBefore(base_, entry_block->GetFirstInstruction());
codegen_test.cc 481 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); local
482 graph->AddBlock(entry_block);
483 graph->SetEntryBlock(entry_block);
484 entry_block->AddInstruction(new (GetAllocator()) HGoto());
491 entry_block->AddSuccessor(code_block);
528 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); local
529 graph->AddBlock(entry_block);
530 graph->SetEntryBlock(entry_block);
531 entry_block->AddInstruction(new (GetAllocator()) HGoto());
543 graph->SetEntryBlock(entry_block);
608 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); local
837 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); local
    [all...]
pc_relative_fixups_x86.cc 183 HBasicBlock* entry_block = GetGraph()->GetEntryBlock(); local
184 entry_block->InsertInstructionBefore(method_address, entry_block->GetFirstInstruction());
constant_folding_test.cc 742 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph_); local
743 graph_->AddBlock(entry_block);
744 graph_->SetEntryBlock(entry_block);
750 entry_block->AddSuccessor(block);
756 entry_block->AddInstruction(parameter);
757 entry_block->AddInstruction(new (GetAllocator()) HGoto());
block_builder.cc 416 HBasicBlock* entry_block = new (allocator_) HBasicBlock(graph_, kNoDexPc); local
421 graph_->AddBlock(entry_block);
424 graph_->SetEntryBlock(entry_block);
428 entry_block->AddSuccessor(body);
superblock_cloner.cc 225 void SuperblockCloner::FindBackEdgesLocal(HBasicBlock* entry_block, ArenaBitVector* local_set) {
241 visited.SetBit(entry_block->GetBlockId());
242 visiting.SetBit(entry_block->GetBlockId());
243 worklist.push_back(entry_block);
superblock_cloner.h 259 void FindBackEdgesLocal(HBasicBlock* entry_block, ArenaBitVector* local_set);
  /external/v8/src/crankshaft/
hydrogen-bce.h 35 EliminateRedundantBoundsChecks(graph()->entry_block());
  /external/llvm/test/Bindings/OCaml/
ipo.ml 44 ignore (build_ret (const_int i8_type 4) (builder_at_end context (entry_block fn)));
45 let b = builder_at_end context (entry_block fn2) in
vectorize.ml 42 ignore (build_ret_void (builder_at_end context (entry_block fn)));
executionengine.ml 32 let b = builder_at_end (global_context ()) (entry_block fn) in
40 let b = builder_at_end (global_context ()) (entry_block fn) in
analysis.ml 27 let at_entry = builder_at_end context (entry_block fn) in
linker.ml 40 ignore (build_ret_void (builder_at_end context (entry_block fn)));
scalar_opts.ml 42 ignore (build_ret_void (builder_at_end context (entry_block fn)));
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
ipo_opts.ml 41 ignore (build_ret (const_int i8_type 4) (builder_at_end context (entry_block fn)));
42 let b = builder_at_end context (entry_block fn2) in
analysis.ml 24 let at_entry = builder_at_end context (entry_block fn) in
executionengine.ml 29 let b = builder_at_end (global_context ()) (entry_block fn) in
36 let b = builder_at_end (global_context ()) (entry_block fn) in
scalar_opts.ml 39 ignore (build_ret_void (builder_at_end context (entry_block fn)));
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.h 172 LLVMBasicBlockRef entry_block; member in struct:lp_build_if_state

Completed in 295 milliseconds

1 2