[llvm] 0d6ed83 - [NFC] reorder AND to check cheaper condition first
Florian Mayer via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 2 14:06:34 PST 2024
Author: Florian Mayer
Date: 2024-02-02T14:06:13-08:00
New Revision: 0d6ed8399f35cc8b23a8e6d094379e3d0dd71c45
URL: https://github.com/llvm/llvm-project/commit/0d6ed8399f35cc8b23a8e6d094379e3d0dd71c45
DIFF: https://github.com/llvm/llvm-project/commit/0d6ed8399f35cc8b23a8e6d094379e3d0dd71c45.diff
LOG: [NFC] reorder AND to check cheaper condition first
Added:
Modified:
llvm/lib/Target/AArch64/AArch64StackTagging.cpp
llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/AArch64/AArch64StackTagging.cpp b/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
index 73bee2f5bfb1c..961dded132343 100644
--- a/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
+++ b/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
@@ -542,10 +542,10 @@ bool AArch64StackTagging::runOnFunction(Function &Fn) {
// function return. Work around this by always untagging at every return
// statement if return_twice functions are called.
bool StandardLifetime =
+ !SInfo.CallsReturnTwice &&
SInfo.UnrecognizedLifetimes.empty() &&
memtag::isStandardLifetime(Info.LifetimeStart, Info.LifetimeEnd, DT, LI,
- ClMaxLifetimes) &&
- !SInfo.CallsReturnTwice;
+ ClMaxLifetimes);
if (StandardLifetime) {
IntrinsicInst *Start = Info.LifetimeStart[0];
uint64_t Size =
diff --git a/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
index 66c7a2edeb118..c2a46320b14a7 100644
--- a/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
@@ -1455,10 +1455,10 @@ bool HWAddressSanitizer::instrumentStack(memtag::StackInfo &SInfo,
// function return. Work around this by always untagging at every return
// statement if return_twice functions are called.
bool StandardLifetime =
+ !SInfo.CallsReturnTwice &&
SInfo.UnrecognizedLifetimes.empty() &&
memtag::isStandardLifetime(Info.LifetimeStart, Info.LifetimeEnd, &DT,
- &LI, ClMaxLifetimes) &&
- !SInfo.CallsReturnTwice;
+ &LI, ClMaxLifetimes);
if (DetectUseAfterScope && StandardLifetime) {
IntrinsicInst *Start = Info.LifetimeStart[0];
IRB.SetInsertPoint(Start->getNextNode());
More information about the llvm-commits
mailing list