[llvm] d443cd6 - [ASan] Move early exit checks outside "instrumentFunction()" to avoid… (#133285)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 18:00:33 PDT 2025
Author: Hank Chang
Date: 2025-03-28T09:00:30+08:00
New Revision: d443cd62d289d972c0245488920acba2b14f7cf9
URL: https://github.com/llvm/llvm-project/commit/d443cd62d289d972c0245488920acba2b14f7cf9
DIFF: https://github.com/llvm/llvm-project/commit/d443cd62d289d972c0245488920acba2b14f7cf9.diff
LOG: [ASan] Move early exit checks outside "instrumentFunction()" to avoid… (#133285)
… unnecessary FunctionSanitizer construction (NFC)
This patch moves several early-exit checks (e.g., empty function, etc.)
out of `AddressSanitizer::instrumentFunction` and into the caller. This
change avoids unnecessary construction of FunctionSanitizer when
instrumentation is not needed.
Added:
Modified:
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index 80da830567d2e..62bfb7cec4ff0 100644
--- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -1312,6 +1312,16 @@ PreservedAnalyses AddressSanitizerPass::run(Module &M,
const StackSafetyGlobalInfo *const SSGI =
ClUseStackSafety ? &MAM.getResult<StackSafetyGlobalAnalysis>(M) : nullptr;
for (Function &F : M) {
+ if (F.empty())
+ continue;
+ if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage)
+ continue;
+ if (!ClDebugFunc.empty() && ClDebugFunc == F.getName())
+ continue;
+ if (F.getName().starts_with("__asan_"))
+ continue;
+ if (F.isPresplitCoroutine())
+ continue;
AddressSanitizer FunctionSanitizer(
M, SSGI, Options.InstrumentationWithCallsThreshold,
Options.MaxInlinePoisoningSize, Options.CompileKernel, Options.Recover,
@@ -2989,14 +2999,6 @@ bool AddressSanitizer::suppressInstrumentationSiteForDebug(int &Instrumented) {
bool AddressSanitizer::instrumentFunction(Function &F,
const TargetLibraryInfo *TLI) {
- if (F.empty())
- return false;
- if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
- if (!ClDebugFunc.empty() && ClDebugFunc == F.getName()) return false;
- if (F.getName().starts_with("__asan_")) return false;
- if (F.isPresplitCoroutine())
- return false;
-
bool FunctionModified = false;
// Do not apply any instrumentation for naked functions.
More information about the llvm-commits
mailing list