| /wasmtime-44.0.1/cranelift/codegen/src/isa/unwind/ |
| H A D | winarm64.rs | 113 let encoding = if is_pair { in emit() localVariable 115 encoding |= reg << 6; in emit() 117 encoding in emit() 120 encoding |= reg << 5; in emit() 122 encoding in emit() 135 encoding |= reg << 6; in emit() 137 encoding in emit() 140 encoding |= reg << 5; in emit() 142 encoding in emit() 157 let encoding = size / 16; in emit() localVariable [all …]
|
| /wasmtime-44.0.1/cranelift/assembler-x64/meta/src/ |
| H A D | dsl.rs | 8 mod encoding; module 13 pub use encoding::{Encoding, ModRmKind, OpcodeMod}; 14 pub use encoding::{Evex, Length, Vex, VexEscape, VexPrefix, evex, vex}; 15 pub use encoding::{ 26 encoding: impl Into<Encoding>, in inst() 29 let encoding = encoding.into(); in inst() localVariable 30 encoding.validate(&format.operands); in inst() 34 encoding, in inst() 60 pub encoding: Encoding, field 123 encoding, in fmt()
|
| H A D | instructions.rs | 128 if sse_inst.encoding.opcode() != avx_inst.encoding.opcode() { in check_sse_matches_avx()
|
| /wasmtime-44.0.1/crates/test-programs/src/ |
| H A D | nn.rs | 30 encoding: GraphEncoding, in load() 33 graph::load(bytes, encoding, target).map_err(err_as_anyhow) in load() 94 encoding: GraphEncoding, in load() 97 Ok(GraphBuilder::new(encoding, target).build_from_bytes(bytes)?) in load() 103 encoding: GraphEncoding, in load_by_name() 106 Ok(GraphBuilder::new(encoding, target).build_from_cache(name)?) in load_by_name()
|
| /wasmtime-44.0.1/crates/cranelift/src/debug/transform/ |
| H A D | synthetic.rs | 36 encoding: gimli::Encoding, in new() 40 let unit_id = Self::create_unit(encoding, out_units, out_strings); in new() 61 encoding: gimli::Encoding, in create_unit() 65 let unit_id = out_units.add(Unit::new(encoding, LineProgram::none())); in create_unit()
|
| H A D | unit.rs | 279 if let Some(convert_program) = unit.read_line_program(Some(unit.unit.encoding()), None)? { in clone_unit() 365 if let Some(expr) = compile_expression(&expr, unit.unit.encoding(), None)? { in clone_unit()
|
| /wasmtime-44.0.1/crates/wasi-preview1-component-adapter/verify/src/ |
| H A D | main.rs | 16 Payload::Version { encoding, .. } => { in main() 17 if encoding != Encoding::Module { in main()
|
| /wasmtime-44.0.1/crates/wasi-nn/wit/ |
| H A D | wasi-nn.wit | 73 /// Describes the encoding of the graph. This allows the API to be implemented by various 75 enum graph-encoding { 99 …load: func(builder: list<graph-builder>, encoding: graph-encoding, target: execution-target) -> re… 134 // Invalid encoding. 135 invalid-encoding,
|
| /wasmtime-44.0.1/tests/misc_testsuite/component-model/ |
| H A D | string-transcode-invalid.wast | 15 string-encoding=latin1+utf16) 19 ;; Source component: uses utf16 encoding. 29 … (core func $recv_lowered (canon lower (func $recv) string-encoding=utf16 (memory $libc "memory")))
|
| H A D | strings.wast | 15 (canon lift (core func $m "f") (memory $m "m") string-encoding=utf16)) 17 (canon lift (core func $m "f") (memory $m "m") string-encoding=latin1+utf16)) 46 string-encoding=utf16) 59 (core func $f (canon lower (func $f) string-encoding=utf8 (memory $libc "memory"))) 96 string-encoding=latin1+utf16) 109 (core func $f (canon lower (func $f) string-encoding=utf16 (memory $libc "memory"))) 145 string-encoding=latin1+utf16) 157 (core func $f (canon lower (func $f) string-encoding=latin1+utf16 (memory $libc "memory"))) 196 string-encoding=latin1+utf16) 276 string-encoding=latin1+utf16) [all …]
|
| H A D | adapter.wast | 51 string-encoding=utf8 60 string-encoding=utf16 69 string-encoding=latin1+utf16
|
| /wasmtime-44.0.1/cranelift/filetests/src/ |
| H A D | test_unwind.rs | 308 if let Some(encoding) = cie.lsda_encoding() { in dump_eh_frame() 309 writeln!(w, " lsda_encoding: {:#02x}", encoding.0)?; in dump_eh_frame() 311 if let Some((encoding, personality)) = cie.personality_with_encoding() { in dump_eh_frame() 312 write!(w, " personality: {:#02x} ", encoding.0)?; in dump_eh_frame() 316 if let Some(encoding) = cie.fde_address_encoding() { in dump_eh_frame() 317 writeln!(w, " fde_encoding: {:#02x}", encoding.0)?; in dump_eh_frame()
|
| /wasmtime-44.0.1/crates/wasi-nn/src/ |
| H A D | witx.rs | 43 let backends = backends.into_iter().map(|b| (b.encoding(), b)).collect(); in new() 132 encoding: generated::types::GraphEncoding, in load() 135 let graph = if let Some(backend) = self.backends.get_mut(&encoding.into()) { in load() 150 return Err(UsageError::InvalidEncoding(encoding.into()).into()); in load()
|
| H A D | wit.rs | 34 let backends = backends.into_iter().map(|b| (b.encoding(), b)).collect(); in new() 173 encoding: GraphEncoding, in load() 177 if let Some(backend) = self.ctx.backends.get_mut(&encoding) { in load()
|
| H A D | lib.rs | 25 .find(|b| b.encoding() == kind_) in preload()
|
| /wasmtime-44.0.1/cranelift/object/src/ |
| H A D | backend.rs | 701 encoding: RelocationEncoding::Generic, in process_reloc() 706 encoding: RelocationEncoding::Generic, in process_reloc() 711 encoding: RelocationEncoding::Generic, in process_reloc() 716 encoding: RelocationEncoding::X86Branch, in process_reloc() 723 encoding: RelocationEncoding::X86Branch, in process_reloc() 728 encoding: RelocationEncoding::Generic, in process_reloc() 733 encoding: RelocationEncoding::Generic, in process_reloc() 738 encoding: RelocationEncoding::AArch64Call, in process_reloc() 874 encoding: RelocationEncoding::S390xDbl, in process_reloc() 879 encoding: RelocationEncoding::S390xDbl, in process_reloc()
|
| /wasmtime-44.0.1/crates/wasi-nn/examples/classification-example-named/ |
| H A D | README.md | 38 the `mobilenet` directory using the `openvino` encoding. Note that, in this 40 of the path passed in `--nn-graph=<encoding>::<path>`.
|
| /wasmtime-44.0.1/tests/misc_testsuite/component-model/async/ |
| H A D | many-params-with-retptr.wast | 91 string-encoding=latin1+utf16 138 string-encoding=latin1+utf16) 163 string-encoding=utf8
|
| /wasmtime-44.0.1/cranelift/assembler-x64/meta/src/generate/ |
| H A D | inst.rs | 132 match &self.encoding { in generate_encode_function() 254 let n = match self.encoding { in generate_num_registers_function()
|
| /wasmtime-44.0.1/cranelift/isle/veri/veri_engine/src/solver/encoded_ops/ |
| H A D | mod.rs | 51 fn check_unary_encoding_with_solver(encoding: &str, input: &str, output: &str, width: usize) { in check_unary_encoding_with_solver() 63 let output_from_call = match (encoding, width) { in check_unary_encoding_with_solver()
|
| /wasmtime-44.0.1/crates/wasi-nn/witx/ |
| H A D | wasi-nn.witx | 63 (param $encoding $graph_encoding)
|
| /wasmtime-44.0.1/ci/ |
| H A D | build-test-matrix.js | 167 const child = spawn("cargo", ["metadata"], { encoding: "utf8" }); property
|
| /wasmtime-44.0.1/crates/wizer/src/ |
| H A D | parse.rs | 29 encoding: Encoding::Component, in parse_with()
|
| /wasmtime-44.0.1/crates/wasi-nn/src/backend/ |
| H A D | mod.rs | 56 fn encoding(&self) -> GraphEncoding; in encoding() method
|
| /wasmtime-44.0.1/crates/wizer/src/component/ |
| H A D | parse.rs | 68 encoding: Encoding::Module, in parse_into()
|