Sha256: 48e60ed847f1fe7bcf561d3dd04217589698b576649d17094da98bbfcb826e8a

Contents?: true

Size: 875 Bytes

Versions: 8

Compression:

Stored size: 875 Bytes

Contents

//! Inline asm for making system calls.
//!
//! Compilers should really have intrinsics for making system calls. They're
//! much like regular calls, with custom calling conventions, and calling
//! conventions are otherwise the compiler's job. But for now, use inline asm.

#[cfg_attr(target_arch = "aarch64", path = "aarch64.rs")]
#[cfg_attr(all(target_arch = "arm", not(thumb_mode)), path = "arm.rs")]
#[cfg_attr(all(target_arch = "arm", thumb_mode), path = "thumb.rs")]
#[cfg_attr(target_arch = "mips", path = "mips.rs")]
#[cfg_attr(target_arch = "mips64", path = "mips64.rs")]
#[cfg_attr(target_arch = "powerpc64", path = "powerpc64.rs")]
#[cfg_attr(target_arch = "riscv64", path = "riscv64.rs")]
#[cfg_attr(target_arch = "x86", path = "x86.rs")]
#[cfg_attr(target_arch = "x86_64", path = "x86_64.rs")]
mod target_arch;

pub(in crate::backend) use self::target_arch::*;

Version data entries

8 entries across 7 versions & 1 rubygems

Version Path
wasmtime-8.0.0 ./ext/cargo-vendor/rustix-0.36.12/src/backend/linux_raw/arch/inline/mod.rs
wasmtime-7.0.0 ./ext/cargo-vendor/rustix-0.36.11/src/backend/linux_raw/arch/inline/mod.rs
wasmtime-7.0.0 ./ext/cargo-vendor/rustix-0.37.5/src/backend/linux_raw/arch/inline/mod.rs
wasmtime-6.0.1 ./ext/cargo-vendor/rustix-0.36.8/src/backend/linux_raw/arch/inline/mod.rs
wasmtime-6.0.0 ./ext/cargo-vendor/rustix-0.36.8/src/backend/linux_raw/arch/inline/mod.rs
wasmtime-5.0.0 ./ext/cargo-vendor/rustix-0.36.7/src/backend/linux_raw/arch/inline/mod.rs
wasmtime-0.4.1 ./ext/cargo-vendor/rustix-0.36.5/src/backend/linux_raw/arch/inline/mod.rs
wasmtime-0.4.0 ./ext/cargo-vendor/rustix-0.36.5/src/backend/linux_raw/arch/inline/mod.rs