EnzymeWrapper

Struct EnzymeWrapper 

Source
pub(crate) struct EnzymeWrapper {
Show 25 fields EnzymeNewTypeTree: unsafe extern "C" fn() -> *mut EnzymeTypeTree, EnzymeNewTypeTreeCT: unsafe extern "C" fn(CConcreteType, &Context) -> *mut EnzymeTypeTree, EnzymeNewTypeTreeTR: unsafe extern "C" fn(*mut EnzymeTypeTree) -> *mut EnzymeTypeTree, EnzymeFreeTypeTree: unsafe extern "C" fn(*mut EnzymeTypeTree), EnzymeMergeTypeTree: unsafe extern "C" fn(*mut EnzymeTypeTree, *mut EnzymeTypeTree) -> bool, EnzymeTypeTreeOnlyEq: unsafe extern "C" fn(*mut EnzymeTypeTree, i64), EnzymeTypeTreeData0Eq: unsafe extern "C" fn(*mut EnzymeTypeTree), EnzymeTypeTreeShiftIndiciesEq: unsafe extern "C" fn(*mut EnzymeTypeTree, *const c_char, i64, i64, u64), EnzymeTypeTreeInsertEq: unsafe extern "C" fn(*mut EnzymeTypeTree, *const i64, usize, CConcreteType, &Context), EnzymeTypeTreeToString: unsafe extern "C" fn(*mut EnzymeTypeTree) -> *const c_char, EnzymeTypeTreeToStringFree: unsafe extern "C" fn(*const c_char), EnzymePrintPerf: *mut c_void, EnzymePrintActivity: *mut c_void, EnzymePrintType: *mut c_void, EnzymeFunctionToAnalyze: *mut c_void, EnzymePrint: *mut c_void, EnzymeStrictAliasing: *mut c_void, EnzymeInline: *mut c_void, EnzymeMaxTypeDepth: *mut c_void, RustTypeRules: *mut c_void, looseTypeAnalysis: *mut c_void, EnzymeSetCLBool: unsafe extern "C" fn(*mut c_void, u8), EnzymeSetCLString: unsafe extern "C" fn(*mut c_void, *const c_char), pub registerEnzymeAndPassPipeline: *const c_void, lib: Library,
}

Fields§

§EnzymeNewTypeTree: unsafe extern "C" fn() -> *mut EnzymeTypeTree§EnzymeNewTypeTreeCT: unsafe extern "C" fn(CConcreteType, &Context) -> *mut EnzymeTypeTree§EnzymeNewTypeTreeTR: unsafe extern "C" fn(*mut EnzymeTypeTree) -> *mut EnzymeTypeTree§EnzymeFreeTypeTree: unsafe extern "C" fn(*mut EnzymeTypeTree)§EnzymeMergeTypeTree: unsafe extern "C" fn(*mut EnzymeTypeTree, *mut EnzymeTypeTree) -> bool§EnzymeTypeTreeOnlyEq: unsafe extern "C" fn(*mut EnzymeTypeTree, i64)§EnzymeTypeTreeData0Eq: unsafe extern "C" fn(*mut EnzymeTypeTree)§EnzymeTypeTreeShiftIndiciesEq: unsafe extern "C" fn(*mut EnzymeTypeTree, *const c_char, i64, i64, u64)§EnzymeTypeTreeInsertEq: unsafe extern "C" fn(*mut EnzymeTypeTree, *const i64, usize, CConcreteType, &Context)§EnzymeTypeTreeToString: unsafe extern "C" fn(*mut EnzymeTypeTree) -> *const c_char§EnzymeTypeTreeToStringFree: unsafe extern "C" fn(*const c_char)§EnzymePrintPerf: *mut c_void§EnzymePrintActivity: *mut c_void§EnzymePrintType: *mut c_void§EnzymeFunctionToAnalyze: *mut c_void§EnzymePrint: *mut c_void§EnzymeStrictAliasing: *mut c_void§EnzymeInline: *mut c_void§EnzymeMaxTypeDepth: *mut c_void§RustTypeRules: *mut c_void§looseTypeAnalysis: *mut c_void§EnzymeSetCLBool: unsafe extern "C" fn(*mut c_void, u8)§EnzymeSetCLString: unsafe extern "C" fn(*mut c_void, *const c_char)§registerEnzymeAndPassPipeline: *const c_void§lib: Library

Implementations§

Source§

impl EnzymeWrapper

Source

pub(crate) fn get_or_init( sysroot: &Sysroot, ) -> Result<MutexGuard<'static, Self>, Box<dyn Error>>

Initialize EnzymeWrapper with the given sysroot if not already initialized. Safe to call multiple times - subsequent calls are no-ops due to OnceLock.

Source

pub(crate) fn get_instance() -> MutexGuard<'static, Self>

Get the EnzymeWrapper instance. Panics if not initialized.

Source

pub(crate) fn new_type_tree(&self) -> *mut EnzymeTypeTree

Source

pub(crate) fn new_type_tree_ct( &self, t: CConcreteType, ctx: &Context, ) -> *mut EnzymeTypeTree

Source

pub(crate) fn new_type_tree_tr( &self, tree: *mut EnzymeTypeTree, ) -> *mut EnzymeTypeTree

Source

pub(crate) fn free_type_tree(&self, tree: *mut EnzymeTypeTree)

Source

pub(crate) fn merge_type_tree( &self, tree1: *mut EnzymeTypeTree, tree2: *mut EnzymeTypeTree, ) -> bool

Source

pub(crate) fn tree_only_eq(&self, tree: *mut EnzymeTypeTree, num: i64)

Source

pub(crate) fn tree_data0_eq(&self, tree: *mut EnzymeTypeTree)

Source

pub(crate) fn shift_indicies_eq( &self, tree: *mut EnzymeTypeTree, data_layout: *const c_char, offset: i64, max_size: i64, add_offset: u64, )

Source

pub(crate) fn tree_insert_eq( &self, tree: *mut EnzymeTypeTree, indices: *const i64, len: usize, ct: CConcreteType, ctx: &Context, )

Source

pub(crate) fn tree_to_string(&self, tree: *mut EnzymeTypeTree) -> *const c_char

Source

pub(crate) fn tree_to_string_free(&self, ch: *const c_char)

Source

pub(crate) fn get_max_type_depth(&self) -> usize

Source

pub(crate) fn set_print_perf(&mut self, print: bool)

Source

pub(crate) fn set_print_activity(&mut self, print: bool)

Source

pub(crate) fn set_print_type(&mut self, print: bool)

Source

pub(crate) fn set_print_type_fun(&mut self, fun_name: &str)

Source

pub(crate) fn set_print(&mut self, print: bool)

Source

pub(crate) fn set_strict_aliasing(&mut self, strict: bool)

Source

pub(crate) fn set_loose_types(&mut self, loose: bool)

Source

pub(crate) fn set_inline(&mut self, val: bool)

Source

pub(crate) fn set_rust_rules(&mut self, val: bool)

Source

fn call_dynamic(sysroot: &Sysroot) -> Result<Self, Box<dyn Error>>

Source

fn get_enzyme_path(sysroot: &Sysroot) -> Result<String, String>

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Aligned for T

Source§

const ALIGN: Alignment

Alignment of Self.
Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T, R> CollectAndApply<T, R> for T

Source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

Source§

type Output = R

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<P> IntoQueryParam<P> for P

Source§

impl<T> MaybeResult<T> for T

Source§

type Error = !

Source§

fn from(_: Result<T, <T as MaybeResult<T>>::Error>) -> T

Source§

fn to_result(self) -> Result<T, <T as MaybeResult<T>>::Error>

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<I, T, U> Upcast<I, U> for T
where U: UpcastFrom<I, T>,

Source§

fn upcast(self, interner: I) -> U

Source§

impl<I, T> UpcastFrom<I, T> for T

Source§

fn upcast_from(from: T, _tcx: I) -> T

Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<Tcx, T> Value<Tcx> for T
where Tcx: DepContext,

Source§

default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> T

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 200 bytes