100 releases (breaking)
0.92.0 | Jan 20, 2023 |
---|---|
0.91.0 | Dec 21, 2022 |
0.90.1 | Dec 1, 2022 |
0.90.0 | Nov 21, 2022 |
0.17.0 | Jul 24, 2018 |
#768 in WebAssembly
31,954 downloads per month
Used in 36 crates
(26 directly)
3.5MB
91K
SLoC
This crate provides module-level functionality, which allow multiple functions and data to be emitted with Cranelift and then linked together.
This crate is structured as an optional layer on top of cranelift-codegen. It provides additional functionality, such as linking, however users that require greater flexibility don't need to use it.
A module is a collection of functions and data objects that are linked
together. The Module
trait that defines a common interface for various kinds
of modules. Most users will use one of the following Module
implementations:
JITModule
, provided by cranelift-jit, which JITs code to memory for direct execution.ObjectModule
, provided by cranelift-object, which emits native object files.
lib.rs
:
Top-level lib.rs for cranelift_module
.
Dependencies
~2MB
~40K SLoC