-
-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
downloads: upgrade LLVM 18.0.8 -> 19.1.6
As part of this we also modernize the BOLT apply settings to follow the recommendations at https://llvm.org/devmtg/2024-03/slides/practical-use-of-bolt.pdf. This includes enabling support for loading hot code from a huge page at runtime. This should _just work_ and could result in perf wins via improved iTLB hit rate, etc.
- Loading branch information
Showing
5 changed files
with
44 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
diff --git a/configure.ac b/configure.ac | ||
index ee034e5a962..f1a69b7d4a7 100644 | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -2183,8 +2183,9 @@ then | ||
[m4_normalize(" | ||
-update-debug-sections | ||
-reorder-blocks=ext-tsp | ||
- -reorder-functions=hfsort+ | ||
+ -reorder-functions=cdsort | ||
-split-functions | ||
+ -split-strategy=cdsplit | ||
-icf=1 | ||
-inline-all | ||
-split-eh | ||
@@ -2196,6 +2197,7 @@ then | ||
-dyno-stats | ||
-use-gnu-stack | ||
-frame-opt=hot | ||
+ -hugify | ||
")] | ||
) | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters