Home
last modified time | relevance | path

Searched refs:entry_block (Results 1 – 19 of 19) sorted by relevance

/external/llvm/test/Bindings/OCaml/
Dipo.ml44 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
Dexecutionengine.ml32 let b = builder_at_end (global_context ()) (entry_block fn) in
40 let b = builder_at_end (global_context ()) (entry_block fn) in
Dvectorize.ml42 ignore (build_ret_void (builder_at_end context (entry_block fn)));
Danalysis.ml27 let at_entry = builder_at_end context (entry_block fn) in
Dlinker.ml36 ignore (build_ret_void (builder_at_end context (entry_block fn)));
Dcore.ml578 let b = builder_at_end context (entry_block fn) in
605 let b = builder_at_end context (entry_block fn) in
668 ignore (build_unreachable (builder_at_end context (entry_block fn)));
682 ignore (build_unreachable (builder_at_end context (entry_block fn)));
691 ignore (build_unreachable (builder_at_end context (entry_block fn)));
703 ignore (build_unreachable (builder_at_end context (entry_block fn)));
785 insist (bb = entry_block fn);
807 let bb = entry_block fn in
815 let bb = entry_block fn in
856 let bb = entry_block f in
[all …]
Dscalar_opts.ml42 ignore (build_ret_void (builder_at_end context (entry_block fn)));
/external/v8/src/crankshaft/
Dhydrogen-bce.h35 EliminateRedundantBoundsChecks(graph()->entry_block()); in Run()
Dhydrogen-gvn.cc685 HBasicBlock* entry_block, in CreateEntry() argument
688 GvnBasicBlockState(NULL, entry_block, entry_map, NULL, zone); in CreateEntry()
794 HBasicBlock* entry_block = graph()->entry_block(); in AnalyzeGraph() local
798 GvnBasicBlockState::CreateEntry(zone(), entry_block, entry_map); in AnalyzeGraph()
Dhydrogen-range-analysis.cc36 HBasicBlock* block(graph()->entry_block()); in Run()
Dhydrogen-bch.cc372 table.CollectInductionVariableData(graph()->entry_block()); in HoistRedundantBoundsChecks()
Dhydrogen.cc523 ReachabilityAnalyzer(HBasicBlock* entry_block, in ReachabilityAnalyzer() argument
527 stack_(16, entry_block->zone()), in ReachabilityAnalyzer()
528 reachable_(block_count, entry_block->zone()), in ReachabilityAnalyzer()
530 PushBlock(entry_block); in ReachabilityAnalyzer()
653 constant->InsertAfter(entry_block()->first()); in GetConstant()
665 constant->InsertAfter(entry_block()->first()); in ReinsertConstantIfNecessary()
704 constant->InsertAfter(entry_block()->first()); \
1191 set_current_block(graph()->entry_block()); in CreateGraph()
Dhydrogen.h308 HBasicBlock* entry_block() const { return entry_block_; } in entry_block() function
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_flow.h169 LLVMBasicBlockRef entry_block; member
Dlp_bld_flow.c386 ifthen->entry_block = block; in lp_build_if()
440 LLVMPositionBuilderAtEnd(builder, ifthen->entry_block); in lp_build_endif()
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Dcodegen.ml18 let builder = builder_at context (instr_begin (entry_block the_function)) in
/external/llvm/docs/tutorial/
DOCamlLangImpl7.rst344 let builder = builder_at (instr_begin (entry_block the_function)) in
1237 let builder = builder_at context (instr_begin (entry_block the_function)) in
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml898 external entry_block : llvalue -> llbasicblock = "LLVMGetEntryBasicBlock"
Dllvm.mli1609 (** [entry_block fn] returns the entry basic block of the function [f].
1611 val entry_block : llvalue -> llbasicblock val