Trait rustc_codegen_ssa::traits::intrinsic::IntrinsicCallMethods[][src]

pub trait IntrinsicCallMethods<'tcx>: BackendTypes {
    fn codegen_intrinsic_call(
        &mut self,
        instance: Instance<'tcx>,
        fn_abi: &FnAbi<'tcx, Ty<'tcx>>,
        args: &[OperandRef<'tcx, Self::Value>],
        llresult: Self::Value,
        span: Span
    );
fn abort(&mut self);
fn assume(&mut self, val: Self::Value);
fn expect(&mut self, cond: Self::Value, expected: bool) -> Self::Value;
fn sideeffect(&mut self);
fn va_start(&mut self, val: Self::Value) -> Self::Value;
fn va_end(&mut self, val: Self::Value) -> Self::Value; }

Required methods

Remember to add all intrinsics here, in compiler/rustc_typeck/src/check/mod.rs, and in library/core/src/intrinsics.rs; if you need access to any LLVM intrinsics, add them to compiler/rustc_codegen_llvm/src/context.rs.

Emits a forced side effect.

Currently has any effect only when LLVM versions prior to 12.0 are used as the backend.

Trait method used to inject va_start on the “spoofed” VaListImpl in Rust defined C-variadic functions.

Trait method used to inject va_end on the “spoofed” VaListImpl before Rust defined C-variadic functions return.

Implementors