<div dir="ltr">Hello,<div><br></div><div>I asked this question a few days ago, but it seems that thread died out:</div><div><br></div><div><div>I have a MAIN program which includes LLVM libraries and loads one bc file. From MAIN I execute different functions from the bc file using LLVM interpreter.  On the LLVM website it is said:</div>
<div>"LLVMContext is an opaque class in the LLVM API which clients can use to operate multiple, isolated instances of LLVM concurrently within the same address space." - It seems that this is not correct or I'm not understanding it properly.</div>
<div><br></div><div>One context is used to create two modules, and based on modules all other things needed for the execution (engine builders, execution engines, functions). When functions are executed (sequentially), they are obviously executed in different memory space. I have verified this over access to the global variable.</div>
<div><br></div><div>However, if functions are executed using the same execution engine (context, module and execution builder the same), then they are executed in the same memory space. But using one execution engine is not suitable for me, because one execution engine means one stack.</div>
<div><br></div><div>One option is to use different stack frames. Before trying that, I just wanted to ask is there a different way for sharing memory space between more execution engines?</div></div><div><br></div><div>Best regards,</div>
<div>Jasmin</div><div><br></div></div>