我正在为Decaf语言编写编译器。我完成了词法分析器(flex)和解析器(野牛)。此外,我已经生成了AST并实现了类型检查。我现在正尝试使用LLVM IR实现codegen。
然而,在链接文件时,g ++会抛出错误,说它无法找到llvm :: getGlobalContext()等。
g++ -O2 -Wno-write-strings -std=c++11 `llvm-config --cxxflags` -c ast.cc
bison -d -t -y --verbose parser.y
g++ -O2 -Wno-write-strings -std=c++11 `llvm-config --cxxflags` y.tab.c -c
flex -8 lexer.l
g++ -O2 -Wno-write-strings -std=c++11 `llvm-config --cxxflags` lex.yy.c -c -lfl
g++ -O2 -Wno-write-strings -std=c++11 `llvm-config --cxxflags` -c symtable.cc
g++ -O2 -Wno-write-strings -std=c++11 `llvm-config --cxxflags` ast.o lex.yy.o y.tab.o symtable.o -o dcc -lfl
ast.o: In function `IntegerConstant::Codegen()':
ast.cc:(.text._ZN15IntegerConstant7CodegenEv+0x6): undefined reference to `llvm::getGlobalContext()'
ast.cc:(.text._ZN15IntegerConstant7CodegenEv+0xe): undefined reference to `llvm::Type::getInt64Ty(llvm::LLVMContext&)'
ast.cc:(.text._ZN15IntegerConstant7CodegenEv+0x1f): undefined reference to `llvm::ConstantInt::get(llvm::IntegerType*, unsigned long, bool)'
ast.o: In function `CharConstant::Codegen()':
ast.cc:(.text._ZN12CharConstant7CodegenEv+0x7): undefined reference to `llvm::getGlobalContext()'
ast.cc:(.text._ZN12CharConstant7CodegenEv+0xf): undefined reference to `llvm::Type::getInt64Ty(llvm::LLVMContext&)'
ast.cc:(.text._ZN12CharConstant7CodegenEv+0x20): undefined reference to `llvm::ConstantInt::get(llvm::IntegerType*, unsigned long, bool)'
ast.o: In function `BooleanConstant::Codegen()':
ast.cc:(.text._ZN15BooleanConstant7CodegenEv+0x6): undefined reference to `llvm::getGlobalContext()'
ast.cc:(.text._ZN15BooleanConstant7CodegenEv+0xe): undefined reference to `llvm::Type::getInt64Ty(llvm::LLVMContext&)'
ast.cc:(.text._ZN15BooleanConstant7CodegenEv+0x1f): undefined reference to `llvm::ConstantInt::get(llvm::IntegerType*, unsigned long, bool)'
ast.o: In function `_GLOBAL__sub_I_ast.cc':
ast.cc:(.text.startup._GLOBAL__sub_I_ast.cc+0x2b): undefined reference to `llvm::getGlobalContext()'
collect2: error: ld returned 1 exit status
Makefile:12: recipe for target 'dcc' failed
make: *** [dcc] Error 1
我在ast.h中包含了LLVM头文件,并且没有其他地方(因为我只调用ast.cc中的codegen()方法
如果有帮助,我很乐意提供更多背景信息。此外,如果我注释掉llvm部分(目前在我的AST中只包含几个整数/ bool / char常量类的codegen函数),项目编译时没有错误。
这是我的Makefile,如果它有帮助:
CCC = g++
CCFLAGS= -O2 -Wno-write-strings -std=c++11
LLVMFLAGS = `llvm-config --cxxflags`
LEX = flex
LFLAGS= -8
YACC= bison
YFLAGS= -d -t -y --verbose
RM = /bin/rm -f
dcc: ast.o y.tab.o lex.yy.o symtable.o
${CCC} ${CCFLAGS} ${LLVMFLAGS} ast.o lex.yy.o y.tab.o symtable.o -o dcc -lfl
symtable.o: symtable.h symtable.cc
${CCC} ${CCFLAGS} ${LLVMFLAGS} -c symtable.cc
ast.o: ast.cc ast.h
${CCC} ${CCFLAGS} ${LLVMFLAGS} -c ast.cc
y.tab.o: parser.y
${YACC} ${YFLAGS} parser.y
${CCC} ${CCFLAGS} ${LLVMFLAGS} y.tab.c -c
lex.yy.o: lexer.l
${LEX} $(LFLAGS) lexer.l
${CCC} ${CCFLAGS} ${LLVMFLAGS} lex.yy.c -c -lfl
clean:
/bin/rm -f lex.yy.* y.tab.* *.o *.output dcc
请帮助。
我在ast.h中定义了虚拟Codegen()函数,并在ast.cc中定义了它们的实现
我正在使用
using namespace llvm;
Value *ErrorV(const char *Str) { return 0; }
static Module *TheModule;
static IRBuilder<> Builder(getGlobalContext());
static std::map<std::string, Value*> NamedValues;
Value *IntegerConstant::Codegen() {
return ConstantInt::get(Type::getInt64Ty(getGlobalContext()), val_, true);
}
在ast.cc结束时(因为我写的所有其他函数都在
下)using namespace std;
答案 0 :(得分:2)
要链接,您需要“llvm-config --ldflags --libs”。我建议在LLVMFLAGS变量中一起使用所有三个标志。