Pass information from CompilerEngineImpl to Module

Hi,

for a small project, I want to pass an additional map with data from the lowering pass to the module to have it available at runtime. I was able to collect the data and store it in an additional map in the CompileEngineImpl class, however, I have not found an easy way to pass it to the runtime::Module that will be output after the compilation process.

I tried to pass it through the CompileEngine::Global (which seems to be a singleton, but was unable to do so)

Can anybody recommend a feasible strategy for this approach?