[llvm] 9820248 - AddressSanitizer: Add use-after-scope to pass options (#130924)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 08:17:55 PDT 2025
Author: Guy David
Date: 2025-03-12T17:17:51+02:00
New Revision: 9820248e0aaaffbee87edeb6a73ced54b4e25be4
URL: https://github.com/llvm/llvm-project/commit/9820248e0aaaffbee87edeb6a73ced54b4e25be4
DIFF: https://github.com/llvm/llvm-project/commit/9820248e0aaaffbee87edeb6a73ced54b4e25be4.diff
LOG: AddressSanitizer: Add use-after-scope to pass options (#130924)
Added:
Modified:
llvm/lib/Passes/PassBuilder.cpp
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
llvm/test/Other/new-pm-print-pipeline.ll
Removed:
################################################################################
diff --git a/llvm/lib/Passes/PassBuilder.cpp b/llvm/lib/Passes/PassBuilder.cpp
index 2e62d6e6f4cc6..8d1273e3631c3 100644
--- a/llvm/lib/Passes/PassBuilder.cpp
+++ b/llvm/lib/Passes/PassBuilder.cpp
@@ -790,6 +790,8 @@ Expected<AddressSanitizerOptions> parseASanPassOptions(StringRef Params) {
if (ParamName == "kernel") {
Result.CompileKernel = true;
+ } else if (ParamName == "use-after-scope") {
+ Result.UseAfterScope = true;
} else {
return make_error<StringError>(
formatv("invalid AddressSanitizer pass parameter '{0}' ", ParamName)
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index b5e9cde2ba5f6..23fd21cb28ca1 100644
--- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -1244,7 +1244,9 @@ void AddressSanitizerPass::printPipeline(
OS, MapClassName2PassName);
OS << '<';
if (Options.CompileKernel)
- OS << "kernel";
+ OS << "kernel;";
+ if (Options.UseAfterScope)
+ OS << "use-after-scope";
OS << '>';
}
diff --git a/llvm/test/Other/new-pm-print-pipeline.ll b/llvm/test/Other/new-pm-print-pipeline.ll
index eb3ffe3a098dd..db398d68fd426 100644
--- a/llvm/test/Other/new-pm-print-pipeline.ll
+++ b/llvm/test/Other/new-pm-print-pipeline.ll
@@ -120,3 +120,6 @@
; RUN: opt -disable-output -disable-verify -print-pipeline-passes -passes='speculative-execution<only-if-divergent-target>' < %s | FileCheck %s --match-full-lines --check-prefixes=CHECK-36
; CHECK-36: function(speculative-execution<only-if-divergent-target>)
+
+; RUN: opt -disable-output -disable-verify -print-pipeline-passes -passes='module(asan<>,asan<kernel;use-after-scope>)' < %s | FileCheck %s --match-full-lines --check-prefixes=CHECK-37
+; CHECK-37: asan<>,asan<kernel;use-after-scope>
More information about the llvm-commits
mailing list