Sorry if this question has already been asked - are there any directions on how to use the interpreter? Currently I translate source programs to cranelift-jit
- I tried to use https://docs.rs/cranelift-interpreter/latest/cranelift_interpreter/environment/struct.FunctionStore.html#method.add to add every function from the module, but I couldn't find a convenient way to get an ir::Function
from that. Is there a way to convert between the two, or would I need to rewrite the code I use to translate to Cranelift?
Hey, you should be able to use the function that is stored in the Context
and add it both to the interpreter FunctionStore
and to define_function
in the Module for use with the JIT
The interpreter only operates in CLIF functions, and it doesn't interact very much with the compilation pipeline beyond that, so we really need the CLIF code.
Also, the interpreter is quite experimental, and we're actively working on it, if you find any instruction that is not implemented or producing wrong results let me know and i'll try to fix it promptly!
Last updated: Nov 22 2024 at 17:03 UTC