LLVM JIT编译的程序找不到外部函数

时间:2014-01-16 21:37:23

标签: c++ shared-libraries llvm unresolved-external llvm-ir

如果foo使用外部定义的函数,那么JIT编译LLVM IR模块并调用其中定义的函数foo的程序在运行时失败:

LLVM ERROR: Program used external function 'glutInit' which could not be resolved!

我的节目:

// foo1.cpp
#include <GL/glut.h>

extern "C" void foo()
{
  glutInit(0,0);
}

// foo2.cpp
#include <iostream>
#include <fstream>
#include <string>

#include <llvm/Support/raw_ostream.h>
#include <llvm/LLVMContext.h>
#include <llvm/Support/TargetSelect.h>
#include <llvm/Support/IRReader.h>
#include <llvm/ExecutionEngine/ExecutionEngine.h>
#include <llvm/Support/MemoryBuffer.h>
#include <llvm/ExecutionEngine/JIT.h>
#include <llvm/ExecutionEngine/RuntimeDyld.h>

int main(int argc, char **argv)
{
  using namespace llvm;
  InitializeNativeTarget();

  LLVMContext context;
  SMDiagnostic error;

  std::ifstream ir_file("foo1.s");
  std::string ir((std::istreambuf_iterator<char>(ir_file)),
                 (std::istreambuf_iterator<char>()));

  Module *m = ParseIR(MemoryBuffer::getMemBuffer(StringRef(ir)), error, context);
  if(!m)
  {
    error.print(argv[0], errs());
  }

  ExecutionEngine *ee = ExecutionEngine::create(m);

  Function *func = ee->FindFunctionNamed("foo");
  if(func == 0)
  {
    std::cerr << "Couldn't find Function foo" << std::endl;
    std::exit(-1);
  }

  typedef void (*fcn_ptr)();
  fcn_ptr foo = reinterpret_cast<fcn_ptr>(ee->getPointerToFunction(func));
  foo();
  delete ee;

  return 0;
}

以下是我构建程序的方法:

$ clang -S -emit-llvm foo1.cpp
$ g++ -rdynamic foo2.cpp `llvm-config --cxxflags` `llvm-config --libs` `llvm-config --ldflags` -lglut

输出:

$ ./a.out 
LLVM ERROR: Program used external function 'glutInit' which could not be resolved!

当我尝试使用不在C ++标准库中的外部定义函数时,它会失败并出现类似的错误(例如,printfmalloc和&amp; free没问题)。我做错了什么?

2 个答案:

答案 0 :(得分:3)

确保glutInit已与a.out相关联。如果你的主机代码(执行JIT的东西)没有调用它,它可能已被链接器所取代。如果是这种情况,则必须向其添加虚拟引用或使用链接描述文件。

答案 1 :(得分:2)

-Wl,-no-as-needed之前立即添加命令行选项-lglut将阻止链接器删除它认为不需要的glut库:

$ g++ -rdynamic foo2.cpp `llvm-config --cxxflags` `llvm-config --libs` `llvm-config --ldflags` -Wl,-no-as-needed -lglut