Files
clang-p2996/lld/test/wasm/debug-undefined-fs.s
Sam Clegg 6f5c5cbe5f [lld][WebAssembly] Fix for debug relocations against undefined function symbols
This is very similar to https://reviews.llvm.org/D103557 but applies to
symbols which are undefined at link time rather than compile time.

We already have code that handles symbols which were defined at link
time but dead stripped by `--gc-sections` (See
`test/wasm/debug-removed-fn.ll`). In that case the symbols are not live
(!isLive()).  However, we can also have live symbols (which are
references by the program) but which are undefined at link time and are
imported by the linker.

In the test case here the symbol `undef` is used but is not defined
in the program but is imported by the linker due to the
`--import-undefined` flag.

Fixes: https://github.com/emscripten-core/emscripten/issues/15528

Differential Revision: https://reviews.llvm.org/D114921
2021-12-02 08:36:28 -08:00

38 lines
908 B
ArmAsm

# Verify that we can handle R_WASM_FUNCTION_OFFSET relocations against live but
# undefined symbols. Test that the .debug_info and .debug_int sections are
# generated without error
#
# Based on llvm/test/MC/WebAssembly/debuginfo-relocs.s
#
# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown -o %t.o %s
# RUN: wasm-ld --import-undefined %t.o -o %t.wasm
# RUN: obj2yaml %t.wasm | FileCheck %s
.functype undef () -> ()
bar:
.functype bar () -> ()
end_function
.globl _start
_start:
.functype _start () -> ()
call bar
call undef
end_function
.section .debug_int,"",@
.Ld:
.int32 1
.size .Ld, 4
.section .debug_info,"",@
.int32 bar
.int32 undef
.int32 .Ld
# CHECK: Name: .debug_info
# CHECK-NEXT: Payload: 02000000FFFFFFFF00000000
# CHECK: Name: .debug_int
# CHECK-NEXT: Payload: '01000000'