[llvm] 79cf24e - [llvm-nm][WebAssembly] Report the size of data symbols
Sam Clegg via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 25 16:48:19 PDT 2023
Author: Sam Clegg
Date: 2023-08-25T16:45:50-07:00
New Revision: 79cf24e2118f5070d93da51b6d8c7c8598ae2671
URL: https://github.com/llvm/llvm-project/commit/79cf24e2118f5070d93da51b6d8c7c8598ae2671
DIFF: https://github.com/llvm/llvm-project/commit/79cf24e2118f5070d93da51b6d8c7c8598ae2671.diff
LOG: [llvm-nm][WebAssembly] Report the size of data symbols
Fixes: https://github.com/llvm/llvm-project/issues/58839
Differential Revision: https://reviews.llvm.org/D158799
Added:
llvm/test/tools/llvm-nm/wasm/print-size.test
Modified:
llvm/lib/Object/WasmObjectFile.cpp
llvm/tools/llvm-nm/llvm-nm.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Object/WasmObjectFile.cpp b/llvm/lib/Object/WasmObjectFile.cpp
index 11b9b579a8d7cc..e9471adf66eda5 100644
--- a/llvm/lib/Object/WasmObjectFile.cpp
+++ b/llvm/lib/Object/WasmObjectFile.cpp
@@ -724,7 +724,7 @@ Error WasmObjectFile::parseLinkingSectionSymtab(ReadContext &Ctx) {
if (IsDefined) {
auto Index = readVaruint32(Ctx);
if (Index >= DataSegments.size())
- return make_error<GenericBinaryError>("invalid data symbol index",
+ return make_error<GenericBinaryError>("invalid data segment index",
object_error::parse_failed);
auto Offset = readVaruint64(Ctx);
auto Size = readVaruint64(Ctx);
diff --git a/llvm/test/tools/llvm-nm/wasm/print-size.test b/llvm/test/tools/llvm-nm/wasm/print-size.test
new file mode 100644
index 00000000000000..c166edb4641c4b
--- /dev/null
+++ b/llvm/test/tools/llvm-nm/wasm/print-size.test
@@ -0,0 +1,46 @@
+# RUN: yaml2obj %s -o %t.o
+# RUN: llvm-nm --print-size %t.o | FileCheck %s --strict-whitespace
+# RUN: llvm-nm -S %t.o | FileCheck %s --strict-whitespace
+
+--- !WASM
+FileHeader:
+ Version: 0x1
+Sections:
+ - Type: TYPE
+ Signatures:
+ - Index: 0
+ ParamTypes: []
+ ReturnTypes: []
+ - Type: FUNCTION
+ FunctionTypes: [ 0 ]
+ - Type: CODE
+ Functions:
+ - Index: 0
+ Locals:
+ Body: 200008808080800041000B
+ - Type: DATA
+ Segments:
+ - SectionOffset: 6
+ InitFlags: 0
+ Offset:
+ Opcode: I32_CONST
+ Value: 0
+ Content: '00000000'
+ - Type: CUSTOM
+ Name: linking
+ Version: 2
+ SymbolTable:
+ - Index: 0
+ Kind: FUNCTION
+ Name: a_func
+ Flags: [ ]
+ Function: 0
+ - Index: 1
+ Kind: DATA
+ Name: a_data_symbol
+ Flags: [ ]
+ Segment: 0
+ Size: 32
+
+# CHECK: 00000000 00000020 D a_data_symbol
+# CHECK: 00000001 00000000 T a_func
diff --git a/llvm/tools/llvm-nm/llvm-nm.cpp b/llvm/tools/llvm-nm/llvm-nm.cpp
index 9accf5681e83c3..e10bbf8a139799 100644
--- a/llvm/tools/llvm-nm/llvm-nm.cpp
+++ b/llvm/tools/llvm-nm/llvm-nm.cpp
@@ -1818,6 +1818,12 @@ static bool getSymbolNamesFromObject(SymbolicFile &Obj,
dyn_cast<const XCOFFObjectFile>(&Obj))
S.Size = XCOFFObj->getSymbolSize(Sym.getRawDataRefImpl());
+ if (const WasmObjectFile *WasmObj = dyn_cast<WasmObjectFile>(&Obj)) {
+ const WasmSymbol &WasmSym = WasmObj->getWasmSymbol(Sym);
+ if (WasmSym.isTypeData())
+ S.Size = WasmSym.Info.DataRef.Size;
+ }
+
if (PrintAddress && isa<ObjectFile>(Obj)) {
SymbolRef SymRef(Sym);
Expected<uint64_t> AddressOrErr = SymRef.getAddress();
More information about the llvm-commits
mailing list