[llvm] [BOLT] Enable hugify for AArch64 (PR #117158)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 05:42:01 PDT 2025
================
@@ -595,8 +595,15 @@ Error RewriteInstance::discoverStorage() {
// Hugify: Additional huge page from left side due to
// weird ASLR mapping addresses (4KB aligned)
- if (opts::Hugify && !BC->HasFixedLoadAddress)
+ if (opts::Hugify && !BC->HasFixedLoadAddress) {
NextAvailableAddress += BC->PageAlign;
+ if (opts::Verbosity >= 1) {
+ BC->outs()
----------------
alekuz01 wrote:
Sure! Because it helps to inform about some issues that could have happened, and regarding garbage. Is it something you correlate with other Outputs under `opts::Verbosity` like this one for example: https://github.com/llvm/llvm-project/blob/9dc854ccbd3d29c8dcf6b81b691724c9fc4bfc6c/bolt/lib/Rewrite/RewriteInstance.cpp#L840 ?
So, it would be nice to discuss then what "other garbage" in your opinion are there?
https://github.com/llvm/llvm-project/pull/117158
More information about the llvm-commits
mailing list