[llvm] [msan] Add experimental '-msan-or-shadow-for-strict-instructions' flag to pessimize output (PR #128036)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 10:19:53 PST 2025
================
@@ -5596,13 +5606,29 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
if (ClDumpStrictInstructions)
dumpInst(I);
LLVM_DEBUG(dbgs() << "DEFAULT: " << I << "\n");
+
+ bool allSized = true;
for (size_t i = 0, n = I.getNumOperands(); i < n; i++) {
Value *Operand = I.getOperand(i);
if (Operand->getType()->isSized())
insertShadowCheck(Operand, &I);
+ else
+ allSized = false;
+ }
+
+ Type *RetTy = cast<Value>(I).getType();
+ if (ClOrShadowForStrictInstructions && allSized && !RetTy->isVoidTy()) {
+ // - In recover mode: the shadow will be computed instead of reset to
----------------
vitalybuka wrote:
> and any subsequent UUM is unreported
Amount of reports will be huge, and they are irrelevant till step 2 is fixed.
https://github.com/llvm/llvm-project/pull/128036
More information about the llvm-commits
mailing list