[llvm] [LTO] Sort DefinedGlobals in LTO cache key (PR #210025)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 16 03:34:53 PDT 2026


https://github.com/nikic created https://github.com/llvm/llvm-project/pull/210025

Sort the DefindeGlobals by GUID when computing the LTO cache key, to avoid making the cache key dependent on the insertion order. This fixes large compile-time regressions in rust incremental builds.

Alternatively one could make collectDefinedGVSummariesPerModule() work on the sortedRange(), but as that is also used in other places, it probably makes sense to sort locally.

The issue was introduced in 760bb06cb3cd98832f1e4e7a4eaebd98b66d2bdd.

>From f910fe8307c52177d78d98cbad27675215fb26d0 Mon Sep 17 00:00:00 2001
From: Nikita Popov <npopov at redhat.com>
Date: Thu, 16 Jul 2026 12:29:43 +0200
Subject: [PATCH] [LTO] Sort DefinedGlobals in LTO cache key

Sort the DefindeGlobals by GUID when computing the LTO cache key,
to avoid making the cache key dependent on the insertion order.
This fixes large compile-time regressions in rust incremental builds.

Alternatively one could make collectDefinedGVSummariesPerModule()
work on the sortedRange(), but as that is also used in other places,
it probably makes sense to sort locally.

The issue was introduced in 760bb06cb3cd98832f1e4e7a4eaebd98b66d2bdd.
---
 llvm/lib/LTO/LTO.cpp | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/llvm/lib/LTO/LTO.cpp b/llvm/lib/LTO/LTO.cpp
index b0fd1d77a2d66..4863ab2973948 100644
--- a/llvm/lib/LTO/LTO.cpp
+++ b/llvm/lib/LTO/LTO.cpp
@@ -306,7 +306,10 @@ std::string llvm::computeLTOCacheKey(
 
   // Include the hash for the linkage type to reflect internalization and weak
   // resolution, and collect any used type identifier resolutions.
-  for (auto &GS : DefinedGlobals) {
+  SmallVector<std::pair<GlobalValue::GUID, GlobalValueSummary *>>
+      SortedDefinedGlobals(DefinedGlobals.begin(), DefinedGlobals.end());
+  llvm::sort(SortedDefinedGlobals, llvm::less_first());
+  for (auto &GS : SortedDefinedGlobals) {
     GlobalValue::LinkageTypes Linkage = GS.second->linkage();
     Hasher.update(
         ArrayRef<uint8_t>((const uint8_t *)&Linkage, sizeof(Linkage)));



More information about the llvm-commits mailing list