Rename SimpleJIT to JIT as it isn't simple anymore

This commit is contained in:
bjorn3
2020-12-04 19:28:31 +01:00
committed by Andrew Brown
parent 502b39606f
commit 411ec3a857
16 changed files with 68 additions and 74 deletions

View File

@@ -10,10 +10,8 @@ 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:
- `SimpleJITModule`, provided by [cranelift-simplejit], which JITs
code to memory for direct execution.
- `ObjectModule`, provided by [cranelift-object], which emits native
object files.
- `JITModule`, provided by [cranelift-jit], which JITs code to memory for direct execution.
- `ObjectModule`, provided by [cranelift-object], which emits native object files.
[cranelift-simplejit]: https://crates.io/crates/cranelift-simplejit
[cranelift-jit]: https://crates.io/crates/cranelift-jit
[cranelift-object]: https://crates.io/crates/cranelift-object