我正在编译:
int main(){
}
使用clang,使用以下命令行:
clang++.exe -S -o %OUTFILE%.clang -emit-llvm %INFILE% -I. -I%INCLUDE_PATH% -std=c++14 -ftemplate-depth=1000
这给了我llvm字节码。
然后我像这样使用llc
,将字节码转换为c代码:
llc "%IN_FILE%.clang" -march=c -o foo.c
并收到此错误:
error: unterminated attribute group
attributes #0 = { norecurse nounwind uwtable "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2" "unsafe-fp-math"="false" "use-soft-float"="false" }
我做错了什么?
这就是clang ++给我的原因:
; ModuleID = 'C:\Users\Owner\Documents\C++\SVN\prototypeInd\util\StaticBigInt.cpp'
target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-windows-msvc18.0.0"
; Function Attrs: norecurse nounwind readnone uwtable
define i32 @main() #0 {
entry:
ret i32 0
}
attributes #0 = { norecurse nounwind readnone uwtable "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2" "unsafe-fp-math"="false" "use-soft-float"="false" }
!llvm.module.flags = !{!0}
!llvm.ident = !{!1}
!0 = !{i32 1, !"PIC Level", i32 2}
!1 = !{!"clang version 3.8.0 (branches/release_38)"}
注意:
我使用的是clang
版本3.8和llc
版本3.4
答案 0 :(得分:2)
运行如下命令时:
clang -S -emit-llvm ...
然后编译器不会以bitcode形式发出IR,而是发出人类可读的表示。
如果您使用的所有工具具有相同的版本,或者您只是想手动检查输出,那么这是有意义的。
但是,人类可读的IR可能与旧工具不兼容。
在这种情况下,我可以建议直接使用bitcode(请注意,不再有-S
参数):
clang -emit-llvm
答案 1 :(得分:1)