[llvm] 29f92da - [mte] fix compiler crash with musttail.
Florian Mayer via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 2 16:13:55 PST 2022
Author: Florian Mayer
Date: 2022-02-02T16:13:46-08:00
New Revision: 29f92da522e44eec854ca68e658903aa6d7a6fee
URL: https://github.com/llvm/llvm-project/commit/29f92da522e44eec854ca68e658903aa6d7a6fee
DIFF: https://github.com/llvm/llvm-project/commit/29f92da522e44eec854ca68e658903aa6d7a6fee.diff
LOG: [mte] fix compiler crash with musttail.
see D118852 for matching hwasan fix.
Reviewed By: eugenis
Differential Revision: https://reviews.llvm.org/D118854
Added:
llvm/test/CodeGen/AArch64/stack-tagging-musttail.ll
Modified:
llvm/lib/Target/AArch64/AArch64StackTagging.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/AArch64/AArch64StackTagging.cpp b/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
index 256a28826c66..7a9a6ffd8ce3 100644
--- a/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
+++ b/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
@@ -579,8 +579,9 @@ bool AArch64StackTagging::runOnFunction(Function &Fn) {
Allocas[AI].LifetimeEnd.push_back(II);
}
- if (isa<ReturnInst, ResumeInst, CleanupReturnInst>(&I))
- RetVec.push_back(&I);
+ Instruction *ExitUntag = getUntagLocationIfFunctionExit(I);
+ if (ExitUntag)
+ RetVec.push_back(ExitUntag);
}
}
diff --git a/llvm/test/CodeGen/AArch64/stack-tagging-musttail.ll b/llvm/test/CodeGen/AArch64/stack-tagging-musttail.ll
new file mode 100644
index 000000000000..2fa2d967be0e
--- /dev/null
+++ b/llvm/test/CodeGen/AArch64/stack-tagging-musttail.ll
@@ -0,0 +1,29 @@
+; Regression test for a compiler bug that caused a crash when instrumenting code
+; using musttail.
+
+; RUN: opt -S -aarch64-stack-tagging -stack-tagging-use-stack-safety=0 %s -o - | FileCheck %s
+
+target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
+target triple = "aarch64-arm-unknown-eabi"
+
+define dso_local noundef i32 @_Z3bari(i32 noundef %0) sanitize_memtag {
+ %2 = alloca i32, align 4
+ store i32 %0, i32* %2, align 4
+ %3 = load i32, i32* %2, align 4
+ ret i32 %3
+}
+
+define dso_local noundef i32 @_Z3fooi(i32 noundef %0) sanitize_memtag {
+ %2 = alloca i32, align 4
+ %3 = alloca i32, align 4
+ store i32 %0, i32* %2, align 4
+ store volatile i32 5, i32* %3, align 4
+ %4 = load i32, i32* %2, align 4
+ %5 = load volatile i32, i32* %3, align 4
+ %6 = add nsw i32 %4, %5
+ ; CHECK: call void @llvm.aarch64.settag
+ ; CHECK: musttail call
+ ; CHECK-NOT: call void @llvm.aarch64.settag
+ %7 = musttail call noundef i32 @_Z3bari(i32 noundef %6)
+ ret i32 %7
+}
More information about the llvm-commits
mailing list