[llvm] [DAGCombiner] Add some very basic folds for ADDRSPACECAST (PR #127733)

Alex MacLean via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 19 08:53:36 PST 2025


================
@@ -16054,6 +16056,25 @@ SDValue DAGCombiner::visitBITCAST(SDNode *N) {
   return SDValue();
 }
 
+SDValue DAGCombiner::visitADDRSPACECAST(SDNode *N) {
+  auto *ASCN1 = cast<AddrSpaceCastSDNode>(N);
+
+  if (auto *ASCN2 = dyn_cast<AddrSpaceCastSDNode>(ASCN1->getOperand(0))) {
+    assert(ASCN2->getDestAddressSpace() == ASCN1->getSrcAddressSpace());
+
+    // Fold asc[B -> A](asc[A -> B](x)) -> x
+    if (ASCN1->getDestAddressSpace() == ASCN2->getSrcAddressSpace())
+      return ASCN2->getOperand(0);
+
+    // Fold asc[B -> C](asc[A -> B](x)) -> asc[A -> C](x)
----------------
AlexMaclean wrote:

It's treated as such by instcombine (https://godbolt.org/z/dhfTd18xs) so doing the same thing here seems safe. 

https://github.com/llvm/llvm-project/pull/127733


More information about the llvm-commits mailing list