转储LLVM解释器中的全局变量

时间:2017-12-22 21:16:50

标签: c++ llvm-clang

我想扩展Clang的C解释器的代码(参见https://github.com/llvm-mirror/clang/tree/master/examples/clang-interpreter)以在

之后将全局变量转储到程序中
int Res = 255;
if (std::unique_ptr<llvm::Module> Module = Act->takeModule())
    Res = Execute(std::move(Module), envp);

但是我没有看到在ExecutionEngine类中访问全局变量列表的明确方法(参见http://llvm.org/doxygen/classllvm_1_1ExecutionEngine.html#pub-methods)。

0 个答案:

没有答案