Reland of 00bf4755. This patches fixes the visibility and linkage information of symbols referring to IR globals. Emission of external declarations is now done in the first execution of emitConstantPool rather than in emitLinkage (and a few other places). This is the point where we have already gathered information about used symbols (by running the MC Lower PrePass) and not yet started emitting any functions so that any declarations that need to be emitted are done so at the top of the file before any functions. This changes the order of a few directives in the final asm file which required an update to a few tests. Reviewed By: sbc100 Differential Revision: https://reviews.llvm.org/D118995
33 lines
1.2 KiB
LLVM
33 lines
1.2 KiB
LLVM
; RUN: llc < %s --mtriple=wasm32-unknown-unknown -asm-verbose=false -mattr=+reference-types | FileCheck %s
|
|
|
|
%funcptr = type void () addrspace(20)*
|
|
%funcref = type i8 addrspace(20)* ;; addrspace 20 is nonintegral
|
|
|
|
@funcref_table = local_unnamed_addr addrspace(1) global [0 x %funcref] undef
|
|
|
|
; CHECK: .tabletype __funcref_call_table, funcref, 1
|
|
|
|
define void @call_funcref_from_table(i32 %i) {
|
|
; CHECK-LABEL: call_funcref_from_table:
|
|
; CHECK-NEXT: .functype call_funcref_from_table (i32) -> ()
|
|
; CHECK-NEXT: i32.const 0
|
|
; CHECK-NEXT: local.get 0
|
|
; CHECK-NEXT: table.get funcref_table
|
|
; CHECK-NEXT: table.set __funcref_call_table
|
|
; CHECK-NEXT: i32.const 0
|
|
; CHECK-NEXT: call_indirect __funcref_call_table, () -> ()
|
|
; CHECK-NEXT: i32.const 0
|
|
; CHECK-NEXT: ref.null_func
|
|
; CHECK-NEXT: table.set __funcref_call_table
|
|
; CHECK-NEXT: end_function
|
|
%p = getelementptr [0 x %funcref], [0 x %funcref] addrspace (1)* @funcref_table, i32 0, i32 %i
|
|
%ref = load %funcref, %funcref addrspace(1)* %p
|
|
%fn = bitcast %funcref %ref to %funcptr
|
|
call addrspace(20) void %fn()
|
|
ret void
|
|
}
|
|
|
|
; CHECK: .tabletype funcref_table, funcref
|
|
; CHECK-LABEL: funcref_table:
|
|
|