Home
last modified time | relevance | path

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

/external/llvm/test/Bindings/Ocaml/
Dipo_opts.ml41 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
Dexecutionengine.ml29 let b = builder_at_end (global_context ()) (entry_block fn) in
36 let b = builder_at_end (global_context ()) (entry_block fn) in
Danalysis.ml24 let at_entry = builder_at_end context (entry_block fn) in
Dscalar_opts.ml39 ignore (build_ret_void (builder_at_end context (entry_block fn)));
Dvmcore.ml496 let b = builder_at_end context (entry_block fn) in
523 let b = builder_at_end context (entry_block fn) in
585 ignore (build_unreachable (builder_at_end context (entry_block fn)));
599 ignore (build_unreachable (builder_at_end context (entry_block fn)));
608 ignore (build_unreachable (builder_at_end context (entry_block fn)));
620 ignore (build_unreachable (builder_at_end context (entry_block fn)));
702 insist (bb = entry_block fn);
724 let bb = entry_block fn in
732 let bb = entry_block fn in
773 let bb = entry_block f in
[all …]
/external/chromium/net/tools/dump_cache/
Ddump_files.cc196 disk_cache::CacheEntryBlock entry_block(file, address); in LoadEntry() local
197 if (!entry_block.Load()) in LoadEntry()
200 memcpy(entry, entry_block.Data(), sizeof(*entry)); in LoadEntry()
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Dcodegen.ml18 let builder = builder_at context (instr_begin (entry_block the_function)) in
/external/v8/src/
Dhydrogen.h253 HBasicBlock* entry_block() const { return entry_block_; } in entry_block() function
Dhydrogen.cc444 ReachabilityAnalyzer(HBasicBlock* entry_block, in ReachabilityAnalyzer() argument
451 PushBlock(entry_block); in ReachabilityAnalyzer()
828 MarkAsDeoptimizingRecursively(entry_block()); in PropagateDeoptimizingMark()
1014 Analyze(graph_->entry_block()); in Analyze()
1468 AnalyzeBlock(graph_->entry_block(), map); in Analyze()
2450 current_block_ = graph()->entry_block(); in CreateGraph()
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml804 external entry_block : llvalue -> llbasicblock = "LLVMGetEntryBasicBlock"
Dllvm.mli1463 (** [entry_block fn] returns the entry basic block of the function [f].
1465 val entry_block : llvalue -> llbasicblock val