[][src]Struct cranelift_object::ObjectBuilder

pub struct ObjectBuilder { /* fields omitted */ }

A builder for ObjectBackend.

Methods

impl ObjectBuilder[src]

pub fn new(
    isa: Box<dyn TargetIsa>,
    name: String,
    collect_traps: ObjectTrapCollection,
    libcall_names: Box<dyn Fn(LibCall) -> String>
) -> ModuleResult<Self>
[src]

Create a new ObjectBuilder using the given Cranelift target, that can be passed to Module::new.

collect_traps setting determines whether trap information is collected in the ObjectProduct.

The libcall_names function provides a way to translate cranelift_codegen's ir::LibCall enum to symbols. LibCalls are inserted in the IR as part of the legalization for certain floating point instructions, and for stack probes. If you don't know what to use for this argument, use cranelift_module::default_libcall_names().

pub fn function_alignment(&mut self, alignment: u64) -> &mut Self[src]

Set the alignment used for functions.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.