1

我正在编译这个:

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)"}

注意: 我使用的是clang3.8llc版和 3.4 版

4

2 回答 2

1

LLVM 中的 C 后端在几年前已被删除。您似乎正在尝试将 LLVM IR 从最近的 LLVM 版本提供给旧 LLVM 的 llc。这当然不受支持 - 版本之间的 IR 不兼容。

于 2016-06-07T07:37:15.860 回答
1

当您运行以下命令时:

clang -S -emit-llvm ...

然后编译器发出的不是位码形式的 IR,而是人类可读的表示。

如果您使用的所有工具都具有相同的版本,或者您只想手动检查输出,这很有意义。

但是,人类可读的 IR 可能与旧工具不兼容。

在这种情况下,我可以建议直接使用位码(注意不再有-S参数了):

clang -emit-llvm
于 2016-06-04T21:22:53.573 回答