Searched refs:with_function (Results 1 – 9 of 9) sorted by relevance
| /wasmtime-44.0.1/cranelift/codegen/src/dominator_tree/ |
| H A D | simple.rs | 208 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 D | dominator_tree.rs | 287 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 D | flowgraph.rs | 98 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 D | cfg_printer.rs | 23 cfg: ControlFlowGraph::with_function(func), in new()
|
| H A D | loop_analysis.rs | 407 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 D | misc.rs | 170 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 D | test_domtree.rs | 44 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 D | blockorder.rs | 396 let dom_tree = DominatorTree::with_function(&func, &cfg); in build_test_func()
|
| /wasmtime-44.0.1/cranelift/codegen/src/verifier/ |
| H A D | mod.rs | 311 let expected_cfg = ControlFlowGraph::with_function(func); in new() 312 let expected_domtree = DominatorTree::with_function(func, &expected_cfg); in new()
|