我写了一个简单的C程序:
example.c:
int main() {
return 0;
}
然后使用
将其转换为.llclang -S -emit-llvm example.c
哪个生成了一个example.ll文件,如下所示:
; ModuleID = 'example.c'
source_filename = "example.c"
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
; Function Attrs: noinline nounwind optnone uwtable
define dso_local i32 @main() #0 {
%1 = alloca i32, align 4
store i32 0, i32* %1, align 4
ret i32 0
}
attributes #0 = { noinline nounwind optnone uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" }
!llvm.module.flags = !{!0}
!llvm.ident = !{!1}
!0 = !{i32 1, !"wchar_size", i32 4}
!1 = !{!"clang version 8.0.0-3 (tags/RELEASE_800/final)"}
然后我使用以下方法将.ll文件转换为.o:
llc -filetype=obj example.ll
然后我尝试使用以下方法链接该文件以使其可执行:
ld.lld example.o -o example -e main
哪个创建了可执行文件。/示例。
运行示例会产生细分错误
29185 segmentation fault (core dumped) ./example
example.o的objdump看起来像这样:
example.o: file format elf64-x86-64
Disassembly of section .text:
0000000000000000 <main>:
0: 55 push %rbp
1: 48 89 e5 mov %rsp,%rbp
4: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%rbp)
b: 31 c0 xor %eax,%eax
d: 5d pop %rbp
e: c3 retq
可执行文件如下:
example: file format elf64-x86-64
Disassembly of section .text:
0000000000201000 <main>:
201000: 55 push %rbp
201001: 48 89 e5 mov %rsp,%rbp
201004: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%rbp)
20100b: 31 c0 xor %eax,%eax
20100d: 5d pop %rbp
20100e: c3 retq
我还尝试将目标文件与 ld 链接,但这也没有用。我错过了什么吗?如何使llvm目标文件可执行?请注意,所有命令均未产生任何错误或警告。
答案 0 :(得分:0)
好吧,这不是链接可执行文件的方式。例如。入口点应该被命名为“ _start”,依此类推,因此这里缺少一堆运行时初始化对象/库。
使用clang链接(例如clang example.ll
或clang example.o
),或者将-v传递给clang调用以获得正确的链接器cmdline。