Stream: cranelift

Topic: wasm const global variables usage


view this post on Zulip davee (Jan 13 2021 at 15:33):

Hey, I'm implementing FuncEnvironment::make_global, and struggling to figure out how to correctly use cranelift_wasm::GlobalVariable::Const (https://docs.rs/cranelift-wasm/0.69.0/cranelift_wasm/enum.GlobalVariable.html). My assumption was that I could create a Value using a constant, but seems I would need to insert an instruction (iconst, etc), and use the return Value? make_global also has no access to the builder (just the ir::Function), can you advise how I should go about inserting such an instruction?

view this post on Zulip Benjamin Bouvier (Jan 13 2021 at 15:47):

You can create a FuncCursor with the mutable function ref, and then insert any series of instruction that creates a Value, and set this to the GlobalVariable::Const value.


Last updated: Oct 23 2024 at 20:03 UTC