Displaying 4 results from an estimated 4 matches for "eebuilder".
Did you mean:
  rebuilder
  
2019 May 08
2
Reuse llvm::ExecutionEngine
Heyho,
I can only provide you with a screenshot for the first problem I noticed:
[https://media.discordapp.net/attachments/534012750045642783/575369402195640321/unknown.png]
This code will crash when calling "eeBuilder.create".
But I also looked at what happens if I do reuse the llvm::ExecutionEngine. After the call to "finalizeObject" I use "removeModule" for the Module I used.
If I know parse the same module again and pass it to that llvm::ExecutionEngine, it will notice the duplicatio...
2019 Apr 18
3
Opt plugin linkage
...t to taste LLVM bitcode first-hand, you
can force output with the `-f' option.
Assertion failed: (M && "Module is null?"), function Init, file /Users/naville/Development/Hikari/lib/ExecutionEngine/ExecutionEngine.cpp, line 80.
```
Which is due to i didn't initialize the EEBuilder properly, but at least the pass now loads and executes properly
Zhang
------------------ Original ------------------
From:  "Zhang via llvm-dev"<llvm-dev at lists.llvm.org>;
Date:  Wed, Apr 17, 2019 04:35 AM
To:  "Viktor Was BSc"<gs15m015 at technikum-wien.at>...
2019 Apr 16
2
Opt plugin linkage
Hey:
I spent sometime debugging this, it seems like editing ``llvm/tools/opt.cpp`` and move ``cl::ParseCommandLineOptions(argc, argv,
    "llvm .bc -> .bc modular optimizer and analysis printer\n");`` to the beginning of main() solved it for me. I'm not sure if this is a bug on LLVM side
Zhang
 
 
------------------ Original ------------------
From:  "Viktor Was BSc via
2019 May 07
2
Reuse llvm::ExecutionEngine
Dear LLVM-Mailing-List,
I'm using the llvm::EngineBuilder to create an instance of the llvm::ExecutionEngine, I then JIT my code, take the addresses I need and delete the llvm::ExecutionEngine. But now I started to wonder, if I could reuse that instance for a new module again?
I first tried calling llvm::EngineBuilder without setting a Module, I planned to add it later - but when I do this