Displaying 3 results from an estimated 3 matches for "test_func2".
Did you mean:
test_func
2020 Apr 27
2
C++ JIT Compiler with LLVM on Windows 10 - part 5
I was just reading the blog post -- very cool!
Regarding Globals construction & destruction: There definitely has been a
lot of churn in that area. There will probably be more before LLVM 11 is
released, but I can see light at the end of the tunnel. I think the Right
Way to run initializers in a JITDylib is to treat it as equivalent to a
dlopen operation (with extra allowances for the fact
2020 May 05
2
C++ JIT Compiler with LLVM on Windows 10 - part 5
...uot;exception3.lua" to
> generate the bitcode files and load the corresponding modules [of course I
> don't expect you to run lua scripts, but I thought that this could help
> understanding the code generation context anyway]. So with that script I
> generated the test_func1.bc/test_func2.bc/test_func1_and_func2.bc and the
> corresponding .ll file (generated from the .bc files using llvm-dis): all
> those files are attached to this email too.
>
> => So, I can load for instance the module corresponding to test_func1.bc
> in my main JITDylib, but then, if I try to lo...
2020 May 06
2
C++ JIT Compiler with LLVM on Windows 10 - part 5
...rate the bitcode files and load the corresponding
>>> modules [of course I don't expect you to run lua scripts, but I thought
>>> that this could help understanding the code generation context anyway]. So
>>> with that script I generated the
>>> test_func1.bc/test_func2.bc/test_func1_and_func2.bc and the corresponding
>>> .ll file (generated from the .bc files using llvm-dis): all those files are
>>> attached to this email too.
>>>
>>> => So, I can load for instance the module corresponding to test_func1.bc
>>> in my...