This is combination of two patches by Nicholas Wilson: 1. https://reviews.llvm.org/D41954 2. https://reviews.llvm.org/D42495 Along with a few local modifications: - One change I made was to add the UNDEFINED bit to the binary format to avoid the extra byte used when writing data symbols. Although this bit is redundant for other symbols types (i.e. undefined can be implied if a function or global is a wasm import) - I prefer to be explicit and consistent and not have derived flags. - Some field renaming. - Some reverting of unrelated minor changes. - No test output differences. Differential Revision: https://reviews.llvm.org/D43147 llvm-svn: 325860
62 lines
1.8 KiB
LLVM
62 lines
1.8 KiB
LLVM
; RUN: llc -filetype=obj %s -o - | llvm-readobj -r -expand-relocs | FileCheck %s
|
|
|
|
target triple = "wasm32-unknown-unknown-wasm"
|
|
|
|
; Pointers to functions of two different types
|
|
@a = global i64 ()* inttoptr (i64 5 to i64 ()*), align 8
|
|
@b = global i32 ()* inttoptr (i32 7 to i32 ()*), align 8
|
|
|
|
; External functions
|
|
declare i32 @c()
|
|
declare i32 @d()
|
|
|
|
define i32 @f1() {
|
|
entry:
|
|
%aa = load i64 ()*, i64 ()** @a, align 8
|
|
%bb = load i32 ()*, i32 ()** @b, align 8
|
|
%tmp1 = call i64 %aa()
|
|
%tmp2 = call i32 %bb()
|
|
%tmp3 = call i32 @c()
|
|
%tmp4 = call i32 @d()
|
|
ret i32 %tmp2
|
|
}
|
|
|
|
|
|
; CHECK: Format: WASM
|
|
; CHECK: Relocations [
|
|
; CHECK-NEXT: Section (4) CODE {
|
|
; CHECK-NEXT: Relocation {
|
|
; CHECK-NEXT: Type: R_WEBASSEMBLY_MEMORY_ADDR_LEB (3)
|
|
; CHECK-NEXT: Offset: 0x9
|
|
; CHECK-NEXT: Index: 0x3
|
|
; CHECK-NEXT: Addend: 0
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: Relocation {
|
|
; CHECK-NEXT: Type: R_WEBASSEMBLY_MEMORY_ADDR_LEB (3)
|
|
; CHECK-NEXT: Offset: 0x14
|
|
; CHECK-NEXT: Index: 0x4
|
|
; CHECK-NEXT: Addend: 0
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: Relocation {
|
|
; CHECK-NEXT: Type: R_WEBASSEMBLY_TYPE_INDEX_LEB (6)
|
|
; CHECK-NEXT: Offset: 0x1A
|
|
; CHECK-NEXT: Index: 0x1
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: Relocation {
|
|
; CHECK-NEXT: Type: R_WEBASSEMBLY_TYPE_INDEX_LEB (6)
|
|
; CHECK-NEXT: Offset: 0x24
|
|
; CHECK-NEXT: Index: 0x0
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: Relocation {
|
|
; CHECK-NEXT: Type: R_WEBASSEMBLY_FUNCTION_INDEX_LEB (0)
|
|
; CHECK-NEXT: Offset: 0x2D
|
|
; CHECK-NEXT: Index: 0x0
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: Relocation {
|
|
; CHECK-NEXT: Type: R_WEBASSEMBLY_FUNCTION_INDEX_LEB (0)
|
|
; CHECK-NEXT: Offset: 0x34
|
|
; CHECK-NEXT: Index: 0x1
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: ]
|