pub struct ObjectModule { /* private fields */ }
Expand description
An ObjectModule
implements Module
and emits “.o” files using the object
library.
See the ObjectBuilder
for a convenient way to construct ObjectModule
instances.
Implementations§
Source§impl ObjectModule
impl ObjectModule
Sourcepub fn new(builder: ObjectBuilder) -> Self
pub fn new(builder: ObjectBuilder) -> Self
Create a new ObjectModule
using the given Cranelift target.
Source§impl ObjectModule
impl ObjectModule
Sourcepub fn finish(self) -> ObjectProduct
pub fn finish(self) -> ObjectProduct
Finalize all relocations and output an object.
Trait Implementations§
Source§impl Module for ObjectModule
impl Module for ObjectModule
Source§fn declarations(&self) -> &ModuleDeclarations
fn declarations(&self) -> &ModuleDeclarations
Get all declarations in this module.
Source§fn declare_function(
&mut self,
name: &str,
linkage: Linkage,
signature: &Signature,
) -> ModuleResult<FuncId>
fn declare_function( &mut self, name: &str, linkage: Linkage, signature: &Signature, ) -> ModuleResult<FuncId>
Declare a function in this module.
Source§fn declare_anonymous_function(
&mut self,
signature: &Signature,
) -> ModuleResult<FuncId>
fn declare_anonymous_function( &mut self, signature: &Signature, ) -> ModuleResult<FuncId>
Declare an anonymous function in this module.
Source§fn declare_data(
&mut self,
name: &str,
linkage: Linkage,
writable: bool,
tls: bool,
) -> ModuleResult<DataId>
fn declare_data( &mut self, name: &str, linkage: Linkage, writable: bool, tls: bool, ) -> ModuleResult<DataId>
Declare a data object in this module.
Source§fn declare_anonymous_data(
&mut self,
writable: bool,
tls: bool,
) -> ModuleResult<DataId>
fn declare_anonymous_data( &mut self, writable: bool, tls: bool, ) -> ModuleResult<DataId>
Declare an anonymous data object in this module.
Source§fn define_function_with_control_plane(
&mut self,
func_id: FuncId,
ctx: &mut Context,
ctrl_plane: &mut ControlPlane,
) -> ModuleResult<()>
fn define_function_with_control_plane( &mut self, func_id: FuncId, ctx: &mut Context, ctrl_plane: &mut ControlPlane, ) -> ModuleResult<()>
Define a function, producing the function body from the given
Context
. Read moreSource§fn define_function_bytes(
&mut self,
func_id: FuncId,
alignment: u64,
bytes: &[u8],
relocs: &[ModuleReloc],
) -> ModuleResult<()>
fn define_function_bytes( &mut self, func_id: FuncId, alignment: u64, bytes: &[u8], relocs: &[ModuleReloc], ) -> ModuleResult<()>
Define a function, taking the function body from the given
bytes
. Read moreSource§fn define_data(
&mut self,
data_id: DataId,
data: &DataDescription,
) -> ModuleResult<()>
fn define_data( &mut self, data_id: DataId, data: &DataDescription, ) -> ModuleResult<()>
Define a data object, producing the data contents from the given
DataContext
.§fn get_name(&self, name: &str) -> Option<FuncOrDataId>
fn get_name(&self, name: &str) -> Option<FuncOrDataId>
Get the module identifier for a given name, if that name
has been declared.
§fn target_config(&self) -> TargetFrontendConfig
fn target_config(&self) -> TargetFrontendConfig
Return the target information needed by frontends to produce Cranelift IR
for the current target.
§fn make_context(&self) -> Context
fn make_context(&self) -> Context
§fn clear_context(&self, ctx: &mut Context)
fn clear_context(&self, ctx: &mut Context)
Clear the given
Context
and reset it for use with a new function. Read more§fn make_signature(&self) -> Signature
fn make_signature(&self) -> Signature
Create a new empty
Signature
with the default calling convention for
the TargetIsa
, to which parameter and return types can be added for
declaring a function to be called by this Module
.§fn clear_signature(&self, sig: &mut Signature)
fn clear_signature(&self, sig: &mut Signature)
Clear the given
Signature
and reset for use with a new function. Read more§fn declare_func_in_func(
&mut self,
func_id: FuncId,
func: &mut Function,
) -> FuncRef
fn declare_func_in_func( &mut self, func_id: FuncId, func: &mut Function, ) -> FuncRef
Use this when you’re building the IR of a function to reference a function. Read more
§fn declare_data_in_func(&self, data: DataId, func: &mut Function) -> GlobalValue
fn declare_data_in_func(&self, data: DataId, func: &mut Function) -> GlobalValue
Use this when you’re building the IR of a function to reference a data object. Read more
§fn declare_func_in_data(
&self,
func_id: FuncId,
data: &mut DataDescription,
) -> FuncRef
fn declare_func_in_data( &self, func_id: FuncId, data: &mut DataDescription, ) -> FuncRef
TODO: Same as above.
§fn declare_data_in_data(
&self,
data_id: DataId,
data: &mut DataDescription,
) -> GlobalValue
fn declare_data_in_data( &self, data_id: DataId, data: &mut DataDescription, ) -> GlobalValue
TODO: Same as above.
§fn define_function(
&mut self,
func: FuncId,
ctx: &mut Context,
) -> Result<(), ModuleError>
fn define_function( &mut self, func: FuncId, ctx: &mut Context, ) -> Result<(), ModuleError>
Define a function, producing the function body from the given
Context
. Read moreAuto Trait Implementations§
impl Freeze for ObjectModule
impl !RefUnwindSafe for ObjectModule
impl Send for ObjectModule
impl Sync for ObjectModule
impl Unpin for ObjectModule
impl !UnwindSafe for ObjectModule
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more