我使用 llvm 在线编译器来编译我的示例 C 代码,
int main() { return 0; }
生成的 LLVM 程序集,
; ModuleID = '/tmp/webcompile/_31588_0.bc'
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
define i32 @main() nounwind uwtable {
%1 = alloca i32, align 4
store i32 0, i32* %1
ret i32 0
}
然后我将 LLVM 程序集编译为 obj 文件,
llc -filetype=obj a.ll
当我尝试使用链接 obj 文件时link.exe a.o
出现错误
fatal error LNK1107: invalid or corrupt file: cannot read at 0x438
如何生成正确的 obj 文件以输入 link.exe?
更多信息
- 我使用 Visual Studio 11 构建了 LLVM。我没有安装 cygwin。
- link.exe 也来自 Visual Studio 11
- LLVM 是从最新的源代码构建的。
如果我使用 VC++ 编译器将相同的代码编译成程序集,它看起来像这样,
; Listing generated by Microsoft (R) Optimizing Compiler Version 17.00.50402.0
include listing.inc
INCLUDELIB LIBCMT
INCLUDELIB OLDNAMES
PUBLIC main
; Function compile flags: /Odtp
_TEXT SEGMENT
main PROC
; File c:\tmp\u.c
; Line 1
xor eax, eax
ret 0
main ENDP
_TEXT ENDS
END
llc -filetype=asm j.ll
生成以下代码。它也因 ml.exe 而失败。
.def _main;
.scl 2;
.type 32;
.endef
.text
.globl _main
.align 16, 0x90
_main: # @main
# BB#0:
pushl %eax
movl $0, (%esp)
xorl %eax, %eax
popl %edx
ret