Skip to content

Commit

Permalink
[WebAssembly] Check signatures of weakly defined funtions too
Browse files Browse the repository at this point in the history
Subscribers: jfb, dschuff, jgravelle-google, aheejin, sunfish, llvm-commits

Differential Revision: https://reviews.llvm.org/D43492

llvm-svn: 325598
  • Loading branch information
sbc100 committed Feb 20, 2018
1 parent 29b98ae commit c7e885b
Showing 3 changed files with 26 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lld/test/wasm/Inputs/strong-symbol.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
target triple = "wasm32-unknown-unknown-wasm"

define i64 @weakFn() #0 {
entry:
ret i64 1
}
19 changes: 19 additions & 0 deletions lld/test/wasm/signature-mismatch-weak.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
; RUN: llc -filetype=obj %p/Inputs/weak-symbol1.ll -o %t.weak.o
; RUN: llc -filetype=obj %p/Inputs/strong-symbol.ll -o %t.strong.o
; RUN: llc -filetype=obj %s -o %t.o
; RUN: not wasm-ld --check-signatures -o %t.wasm %t.o %t.strong.o %t.weak.o 2>&1 | FileCheck %s
; RUN: wasm-ld -o %t.wasm %t.o %t.strong.o %t.weak.o

target triple = "wasm32-unknown-unknown-wasm"

declare i32 @weakFn() local_unnamed_addr

define void @_start() local_unnamed_addr {
entry:
%call = call i32 @weakFn()
ret void
}

; CHECK: error: function signature mismatch: weakFn
; CHECK-NEXT: >>> defined as () -> I32 in {{.*}}signature-mismatch-weak.ll.tmp.o
; CHECK-NEXT: >>> defined as () -> I64 in {{.*}}signature-mismatch-weak.ll.tmp.strong.o
1 change: 1 addition & 0 deletions lld/wasm/SymbolTable.cpp
Original file line number Diff line number Diff line change
@@ -175,6 +175,7 @@ Symbol *SymbolTable::addDefined(bool IsFunction, StringRef Name, uint32_t Flags,
} else if ((Flags & WASM_SYMBOL_BINDING_MASK) == WASM_SYMBOL_BINDING_WEAK) {
// the new symbol is weak we can ignore it
DEBUG(dbgs() << "existing symbol takes precedence\n");
CheckTypes = true;
} else if (S->isWeak()) {
// the existing symbol is, so we replace it
DEBUG(dbgs() << "replacing existing weak symbol\n");

0 comments on commit c7e885b

Please sign in to comment.