Home
last modified time | relevance | path

Searched refs:parse_functions (Results 1 – 10 of 10) sorted by relevance

/wasmtime-44.0.1/cranelift/interpreter/src/
H A Dinterpreter.rs567 use cranelift_reader::parse_functions;
584 let func = parse_functions(code).unwrap().into_iter().next().unwrap(); in sanity()
603 let func = parse_functions(code).unwrap().into_iter().next().unwrap(); in udiv_by_zero_traps()
624 let func = parse_functions(code).unwrap().into_iter().next().unwrap(); in sdiv_min_by_neg_one_traps_with_overflow()
658 let funcs = parse_functions(code).unwrap().to_vec(); in function_references()
678 let func = parse_functions(code).unwrap().into_iter().next().unwrap(); in fuel()
748 let funcs = parse_functions(code).unwrap().to_vec(); in stack_slots_multi_functions()
779 let func = parse_functions(code).unwrap().into_iter().next().unwrap(); in out_of_slot_write_traps()
805 let func = parse_functions(code).unwrap().into_iter().next().unwrap(); in partial_out_of_slot_write_traps()
830 let func = parse_functions(code).unwrap().into_iter().next().unwrap(); in out_of_slot_read_traps()
[all …]
H A Dframe.rs116 use cranelift_reader::parse_functions;
120 parse_functions(code).unwrap().into_iter().next().unwrap() in function()
/wasmtime-44.0.1/cranelift/src/
H A Dcat.rs9 use cranelift_reader::parse_functions;
33 parse_functions(&buffer).with_context(|| format!("failed to parse {}", path.display()))?; in cat_one()
H A Dprint_cfg.rs10 use cranelift_reader::parse_functions;
33 let items = parse_functions(&buffer)?; in print_cfg()
H A Dsouper_harvest.rs139 let funcs = cranelift_reader::parse_functions(&contents) in parse_input()
/wasmtime-44.0.1/cranelift/serde/src/
H A Dclif-json.rs7 use cranelift_reader::parse_functions;
14 let ret_of_parse = parse_functions(file); in call_ser()
/wasmtime-44.0.1/cranelift/reader/src/
H A Dlib.rs10 pub use crate::parser::{ParseOptions, parse_functions, parse_run_command, parse_test};
H A Dparser.rs90 pub fn parse_functions(text: &str) -> ParseResult<Vec<Function>> { in parse_functions() function
/wasmtime-44.0.1/cranelift/filetests/src/
H A Dfunction_runner.rs838 use cranelift_reader::{ParseOptions, parse_functions, parse_test};
841 parse_functions(code).unwrap().into_iter().nth(0).unwrap() in parse()
/wasmtime-44.0.1/tests/
H A Ddisas.rs270 cranelift_reader::parse_functions(clif).with_context(|| { in compile()