[llvm] ThinLTO: Add flag to print uselistorder in bitcode writer pass (PR #133230)
Teresa Johnson via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 09:29:16 PDT 2025
================
@@ -487,9 +488,9 @@ void splitAndWriteThinLTOBitcode(
// be used in the backends, and use that in the minimized bitcode
// produced for the full link.
ModuleHash ModHash = {{0}};
- W.writeModule(M, /*ShouldPreserveUseListOrder=*/false, &Index,
+ W.writeModule(M, ShouldPreserveUseListOrder, &Index,
/*GenerateHash=*/true, &ModHash);
- W.writeModule(*MergedM, /*ShouldPreserveUseListOrder=*/false, &MergedMIndex);
+ W.writeModule(*MergedM, ShouldPreserveUseListOrder, &MergedMIndex);
----------------
teresajohnson wrote:
There are some other calls to write the module in this function that presumably also need the change (and tests): see below where we write the module when requesting minimized bitcode (ThinLinkOS - for the opt tool this is set when `-thin-link-bitcode-file=` is specified). Also at the beginning of this function there are some calls in the case where the ModuleId was empty - although it looks like that would only be the case if there are no externally visible symbols in the module, not sure if we ever would have or care about the uselistorder in that case?
https://github.com/llvm/llvm-project/pull/133230
More information about the llvm-commits
mailing list