[llvm] [FuncSpec] Update MinFunctionSize logic (PR #112711)
Hari Limaye via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 17 07:17:50 PDT 2024
https://github.com/hazzlim updated https://github.com/llvm/llvm-project/pull/112711
>From a70bd41ca9b1084f043e7da5965f44e3e5780320 Mon Sep 17 00:00:00 2001
From: Hari Limaye <hari.limaye at arm.com>
Date: Thu, 17 Oct 2024 10:21:37 +0000
Subject: [PATCH 1/2] [FuncSpec] Update MinFunctionSize logic
Always require functions to be larger than MinFunctionSize when
SpecializeLiteralConstant is enabled, and increase MinFunctionSize to
500, to prevent excessive triggering of specialisations on small
functions.
---
.../lib/Transforms/IPO/FunctionSpecialization.cpp | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp b/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
index bd0a337e579e48..6d5c8b4229a417 100644
--- a/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
+++ b/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
@@ -57,9 +57,9 @@ static cl::opt<unsigned> MaxBlockPredecessors(
"considered during the estimation of dead code"));
static cl::opt<unsigned> MinFunctionSize(
- "funcspec-min-function-size", cl::init(300), cl::Hidden, cl::desc(
- "Don't specialize functions that have less than this number of "
- "instructions"));
+ "funcspec-min-function-size", cl::init(500), cl::Hidden,
+ cl::desc("Don't specialize functions that have less than this number of "
+ "instructions"));
static cl::opt<unsigned> MaxCodeSizeGrowth(
"funcspec-max-codesize-growth", cl::init(3), cl::Hidden, cl::desc(
@@ -641,12 +641,17 @@ bool FunctionSpecializer::run() {
Metrics.analyzeBasicBlock(&BB, GetTTI(F), EphValues);
}
+ // When specializing literal constants is enabled, always require functions
+ // to be larger than MinFunctionSize, to prevent excessive specialization.
+ bool RequireMinSize =
+ !ForceSpecialization &&
+ (SpecializeLiteralConstant || !F.hasFnAttribute(Attribute::NoInline));
+
// If the code metrics reveal that we shouldn't duplicate the function,
// or if the code size implies that this function is easy to get inlined,
// then we shouldn't specialize it.
if (Metrics.notDuplicatable || !Metrics.NumInsts.isValid() ||
- (!ForceSpecialization && !F.hasFnAttribute(Attribute::NoInline) &&
- Metrics.NumInsts < MinFunctionSize))
+ (RequireMinSize && Metrics.NumInsts < MinFunctionSize))
continue;
// TODO: For now only consider recursive functions when running multiple
>From 801a8c354c022eaf80de31e4e8b8931c7ddf1185 Mon Sep 17 00:00:00 2001
From: Hari Limaye <hari.limaye at arm.com>
Date: Thu, 17 Oct 2024 14:16:08 +0000
Subject: [PATCH 2/2] Make variable const (review)
---
llvm/lib/Transforms/IPO/FunctionSpecialization.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp b/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
index 6d5c8b4229a417..7feebbe420ae53 100644
--- a/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
+++ b/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
@@ -643,7 +643,7 @@ bool FunctionSpecializer::run() {
// When specializing literal constants is enabled, always require functions
// to be larger than MinFunctionSize, to prevent excessive specialization.
- bool RequireMinSize =
+ const bool RequireMinSize =
!ForceSpecialization &&
(SpecializeLiteralConstant || !F.hasFnAttribute(Attribute::NoInline));
More information about the llvm-commits
mailing list