[llvm] [WebAssembly] Support parsing .lto_set_conditional (PR #126546)
Heejin Ahn via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 29 04:50:33 PDT 2025
================
@@ -1817,7 +1817,18 @@ uint64_t WasmObjectWriter::writeOneObject(MCAssembler &Asm,
assert(WasmIndices.count(&WS) > 0);
Info.ElementIndex = WasmIndices.find(&WS)->second;
} else if (WS.isDefined()) {
- assert(DataLocations.count(&WS) > 0);
+ if (!DataLocations.count(&WS))
+ // In bitcode generated by split-LTO-unit mode in ThinLTO, these lines
+ // can appear:
+ // module asm ".lto_set_conditional symbolA,symbolA.[moduleId]"
+ // ...
+ // (Here [moduleId] will be replaced by a real module hash ID)
+ //
+ // Here the original symbols (symbolA here) have been renamed to symbol
+ // new names created by attaching their module IDs and the original
+ // symbols do not appear in the bitcode anymore, and thus not in
+ // DataLocations. We should ignore them.
----------------
aheejin wrote:
Done
https://github.com/llvm/llvm-project/pull/126546
More information about the llvm-commits
mailing list