[llvm] [DFSan] Change placeholders from `undef` to `poison` (PR #131534)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 16 11:48:52 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-compiler-rt-sanitizer
@llvm/pr-subscribers-llvm-transforms
Author: Pedro Lobo (pedroclobo)
<details>
<summary>Changes</summary>
Use `poison` to create dummy phi nodes instead of `undef`.
---
Full diff: https://github.com/llvm/llvm-project/pull/131534.diff
1 Files Affected:
- (modified) llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp (+4-4)
``````````diff
diff --git a/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
index fcabcdfb0ba9b..1ef650723a30b 100644
--- a/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
@@ -3447,9 +3447,9 @@ void DFSanVisitor::visitPHINode(PHINode &PN) {
PN.getIterator());
// Give the shadow phi node valid predecessors to fool SplitEdge into working.
- Value *UndefShadow = UndefValue::get(ShadowTy);
+ Value *PoisonShadow = PoisonValue::get(ShadowTy);
for (BasicBlock *BB : PN.blocks())
- ShadowPN->addIncoming(UndefShadow, BB);
+ ShadowPN->addIncoming(PoisonShadow, BB);
DFSF.setShadow(&PN, ShadowPN);
@@ -3457,9 +3457,9 @@ void DFSanVisitor::visitPHINode(PHINode &PN) {
if (DFSF.DFS.shouldTrackOrigins()) {
OriginPN = PHINode::Create(DFSF.DFS.OriginTy, PN.getNumIncomingValues(), "",
PN.getIterator());
- Value *UndefOrigin = UndefValue::get(DFSF.DFS.OriginTy);
+ Value *PoisonOrigin = PoisonValue::get(DFSF.DFS.OriginTy);
for (BasicBlock *BB : PN.blocks())
- OriginPN->addIncoming(UndefOrigin, BB);
+ OriginPN->addIncoming(PoisonOrigin, BB);
DFSF.setOrigin(&PN, OriginPN);
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/131534
More information about the llvm-commits
mailing list