[llvm] [TargetLowering] Add a new function `getNullPtrValue` (PR #126665)
Shilei Tian via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 10 21:54:50 PST 2025
================
@@ -1807,8 +1807,7 @@ SDValue SelectionDAGBuilder::getValueImpl(const Value *V) {
if (isa<ConstantPointerNull>(C)) {
unsigned AS = V->getType()->getPointerAddressSpace();
- return DAG.getConstant(0, getCurSDLoc(),
- TLI.getPointerTy(DAG.getDataLayout(), AS));
+ return TLI.getNullPtrValue(AS, getCurSDLoc(), DAG);
----------------
shiltian wrote:
I don't believe that is the case. For example,
```
%6 = icmp eq ptr addrspace(5) %5, null
```
If you check `operand(1)`, it is `ptr addrspace(5) null`, which is recognized as `ConstantPointerNull`. Unless you’re suggesting that `ptr addrspace(5) null` might not be a valid or sentinel pointer, while `addrspacecast (ptr null to ptr addrspace(5))` is, then InstCombine is handling this incorrectly by treating them as equivalent.
https://github.com/llvm/llvm-project/pull/126665
More information about the llvm-commits
mailing list