-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lld][WebAssembly] Handle weakly defined symbols in shared libraries.
In the case of weakly defined symbols in shared libraries we now generate both an import and an export. The dynamic linker can then choose how a winner from among all the shared libraries that define a given symbol. Previously any direct usage of a weakly defined symbol would use the DSO-local definition (For example, even through there would be single address for a weakly defined function, each DSO could end up directly calling its local version). Fixes: emscripten-core/emscripten#13773 Differential Revision: https://reviews.llvm.org/D108413
- Loading branch information
Showing
5 changed files
with
98 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown -o %t.o %s | ||
# RUN: wasm-ld --experimental-pic -shared -o %t.wasm %t.o | ||
# RUN: obj2yaml %t.wasm | FileCheck %s | ||
# RUN: llvm-objdump -d %t.wasm | FileCheck %s -check-prefix=ASM | ||
|
||
# Verify the weakly defined fuctions (weak_func) are both | ||
# imported and exported, and that internal usage (direct call) | ||
# always uses the imported version. | ||
|
||
|
||
.globl weak_func | ||
.weak weak_func | ||
weak_func: | ||
.functype weak_func () -> (i32) | ||
i32.const 0 | ||
end_function | ||
|
||
.globl call_weak | ||
call_weak: | ||
# ASM: <call_weak>: | ||
.functype call_weak () -> (i32) | ||
call weak_func | ||
# ASM: 10 80 80 80 80 00 call 0 | ||
end_function | ||
# ASM-NEXT: 0b end | ||
|
||
# CHECK: - Type: IMPORT | ||
# CHECK-NEXT: Imports: | ||
# CHECK-NEXT: - Module: env | ||
# CHECK-NEXT: Field: memory | ||
# CHECK-NEXT: Kind: MEMORY | ||
# CHECK-NEXT: Memory: | ||
# CHECK-NEXT: Minimum: 0x0 | ||
# CHECK-NEXT: - Module: env | ||
# CHECK-NEXT: Field: __memory_base | ||
# CHECK-NEXT: Kind: GLOBAL | ||
# CHECK-NEXT: GlobalType: I32 | ||
# CHECK-NEXT: GlobalMutable: false | ||
# CHECK-NEXT: - Module: env | ||
# CHECK-NEXT: Field: __table_base | ||
# CHECK-NEXT: Kind: GLOBAL | ||
# CHECK-NEXT: GlobalType: I32 | ||
# CHECK-NEXT: GlobalMutable: false | ||
# CHECK-NEXT: - Module: env | ||
# CHECK-NEXT: Field: weak_func | ||
# CHECK-NEXT: Kind: FUNCTION | ||
# CHECK-NEXT: SigIndex: 0 | ||
|
||
# CHECK: - Type: CUSTOM | ||
# CHECK-NEXT: Name: name | ||
# CHECK-NEXT: FunctionNames: | ||
# CHECK-NEXT: - Index: 0 | ||
# CHECK-NEXT: Name: weak_func | ||
# CHECK-NEXT: - Index: 1 | ||
# CHECK-NEXT: Name: __wasm_call_ctors | ||
# CHECK-NEXT: - Index: 2 | ||
# CHECK-NEXT: Name: __wasm_apply_data_relocs | ||
# CHECK-NEXT: - Index: 3 | ||
# CHECK-NEXT: Name: weak_func |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters