Home
last modified time | relevance | path

Searched refs:with_function (Results 1 – 9 of 9) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/dominator_tree/
H A Dsimple.rs208 pub fn with_function(func: &Function, cfg: &ControlFlowGraph) -> Self { in with_function() method
341 let cfg = ControlFlowGraph::with_function(&func); in empty()
343 let dtree = SimpleDominatorTree::with_function(&func, &cfg); in empty()
373 let cfg = ControlFlowGraph::with_function(cur.func); in unreachable_node()
374 let dt = SimpleDominatorTree::with_function(cur.func, &cfg); in unreachable_node()
424 let cfg = ControlFlowGraph::with_function(cur.func); in non_zero_entry_block()
425 let dt = SimpleDominatorTree::with_function(cur.func, &cfg); in non_zero_entry_block()
494 let cfg = ControlFlowGraph::with_function(cur.func); in backwards_layout()
495 let dt = SimpleDominatorTree::with_function(cur.func, &cfg); in backwards_layout()
558 let cfg = ControlFlowGraph::with_function(cur.func); in insts_same_block()
[all …]
/wasmtime-44.0.1/cranelift/codegen/src/
H A Ddominator_tree.rs287 pub fn with_function(func: &Function, cfg: &ControlFlowGraph) -> Self { in with_function() method
544 let cfg = ControlFlowGraph::with_function(&func); in empty()
546 let dtree = DominatorTree::with_function(&func, &cfg); in empty()
576 let cfg = ControlFlowGraph::with_function(cur.func); in unreachable_node()
577 let dt = DominatorTree::with_function(cur.func, &cfg); in unreachable_node()
627 let cfg = ControlFlowGraph::with_function(cur.func); in non_zero_entry_block()
628 let dt = DominatorTree::with_function(cur.func, &cfg); in non_zero_entry_block()
683 let cfg = ControlFlowGraph::with_function(cur.func); in backwards_layout()
684 let dt = DominatorTree::with_function(cur.func, &cfg); in backwards_layout()
747 let cfg = ControlFlowGraph::with_function(cur.func); in insts_same_block()
[all …]
H A Dflowgraph.rs98 pub fn with_function(func: &Function) -> Self { in with_function() method
206 ControlFlowGraph::with_function(&func); in empty()
219 let cfg = ControlFlowGraph::with_function(&func); in no_predecessors()
252 let mut cfg = ControlFlowGraph::with_function(&func); in branches_and_jumps()
H A Dcfg_printer.rs23 cfg: ControlFlowGraph::with_function(func), in new()
H A Dloop_analysis.rs407 let cfg = ControlFlowGraph::with_function(&func); in complex_loop_detection()
408 let domtree = DominatorTree::with_function(&func, &cfg); in complex_loop_detection()
/wasmtime-44.0.1/fuzz/fuzz_targets/
H A Dmisc.rs170 let cfg = ControlFlowGraph::with_function(&func); in dominator_tree()
171 let domtree = DominatorTree::with_function(&func, &cfg); in dominator_tree()
172 let expected_domtree = SimpleDominatorTree::with_function(&func, &cfg); in dominator_tree()
/wasmtime-44.0.1/cranelift/filetests/src/
H A Dtest_domtree.rs44 let cfg = ControlFlowGraph::with_function(func); in run()
45 let domtree = DominatorTree::with_function(func, &cfg); in run()
/wasmtime-44.0.1/cranelift/codegen/src/machinst/
H A Dblockorder.rs396 let dom_tree = DominatorTree::with_function(&func, &cfg); in build_test_func()
/wasmtime-44.0.1/cranelift/codegen/src/verifier/
H A Dmod.rs311 let expected_cfg = ControlFlowGraph::with_function(func); in new()
312 let expected_domtree = DominatorTree::with_function(func, &expected_cfg); in new()