创建LLVM IR的方法

时间:2014-12-13 18:53:46

标签: clang llvm abstract-syntax-tree llvm-clang llvm-ir

我正在创建clang工具,我想从clang AST生成LLVM IR。我知道可以使用-emit-llvm选项来获取* .ll文件,但有没有办法在代码中生成IR?我可以调用一些方法来获取clang AST或AST上下文并返回llvm::Module?我找不到任何显示这个的例子。

编辑: 所以我尝试使用CodeGenAction,但我无法让它工作。我最终得到了未解决的外部符号错误。我错过了什么吗?

#include <clang/CodeGen/CodeGenAction.h>
#include <clang/Frontend/CompilerInstance.h>
#include <clang/Frontend/CompilerInvocation.h>
#include <clang/Basic/DiagnosticOptions.h>
#include <clang/Frontend/TextDiagnosticPrinter.h>
#include <llvm/ADT/IntrusiveRefCntPtr.h>
#include <llvm/IR/Module.h>
#include <llvm/IR/LLVMContext.h>

using namespace std;

clang::CodeGenAction * getAction(void)
{
    // Path to the C file
    string inputPath = "test.c";

    // Arguments to pass to the clang frontend
    vector<const char *> args;
    args.push_back(inputPath.c_str());

    // The compiler invocation needs a DiagnosticsEngine so it can report problems
    clang::DiagnosticOptions opt = clang::DiagnosticOptions();
    clang::TextDiagnosticPrinter *DiagClient = new clang::TextDiagnosticPrinter(llvm::errs(), &opt);
    llvm::IntrusiveRefCntPtr<clang::DiagnosticIDs> DiagID(new clang::DiagnosticIDs());
    clang::DiagnosticsEngine Diags(DiagID, &opt, DiagClient);

    // Create the compiler invocation
    clang::CompilerInvocation* CI(new clang::CompilerInvocation());
    clang::CompilerInvocation::CreateFromArgs(*CI, &args[0], &args[0] + args.size(), Diags);

    // Create the compiler instance
    clang::CompilerInstance Clang;
    Clang.setInvocation(CI);

    // Get ready to report problems
    Clang.createDiagnostics(&Diags.getDiagnosticOptions());
    if (!Clang.hasDiagnostics())
        return NULL;

    // Create an action and make the compiler instance carry it out
    clang::CodeGenAction *Act = new clang::EmitLLVMOnlyAction(&llvm::getGlobalContext());
    if (!Clang.ExecuteAction(*Act))
        return NULL;

    return Act;
}

int main(void)
{
    clang::CodeGenAction* Act = getAction();

    // Grab the module built by the EmitLLVMOnlyAction
    std::unique_ptr<llvm::Module> module = Act->takeModule();

    // Print all functions in the module
    for (llvm::Module::FunctionListType::iterator i = module->getFunctionList().begin(); i != module->getFunctionList().end(); ++i)
        printf("%s\n", i->getName().str().c_str());

    return 0;
}

我在链接过程中遇到的错误:

LNK1120: 2 unresolved externals 

LNK2001: unresolved external symbol "public: __thiscall clang::EmitLLVMOnlyAction::EmitLLVMOnlyAction(class llvm::LLVMContext *)" (??0EmitLLVMOnlyAction@clang@@QAE@PAVLLVMContext@llvm@@@Z)

LNK2001: unresolved external symbol "public: class std::unique_ptr<class llvm::Module,struct std::default_delete<class llvm::Module> > __thiscall clang::CodeGenAction::takeModule(void)" (?takeModule@CodeGenAction@clang@@QAE?AV?$unique_ptr@VModule@llvm@@U?$default_delete@VModule@llvm@@@std@@@std@@XZ)

1 个答案:

答案 0 :(得分:1)

在clang中,代码生成发生在CodeGenModule类中。在那里,您可以通过llvm::Module & getModule () const获取当前模块。 CodeGenModule处理模块级别的代码生成,CodeGenFunction为特定函数执行此操作。在那里,您可以找到AST的每个节点的Emit*函数。