[llvm] [RISCV] Update matchSplatAsGather to use the index of extract_elt if in-bounds (PR #118873)

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 6 06:59:44 PST 2024


================
@@ -3509,8 +3509,10 @@ static SDValue matchSplatAsGather(SDValue SplatVal, MVT VT, const SDLoc &DL,
     return SDValue();
 
   // Check that Index lies within VT
-  // TODO: Can we check if the Index is constant and known in-bounds?
-  if (!TypeSize::isKnownLE(Vec.getValueSizeInBits(), VT.getSizeInBits()))
+  if (auto *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
+    if (VT.getVectorElementCount().getKnownMinValue() <= CIdx->getZExtValue())
+      return SDValue();
----------------
lukel97 wrote:

Nit, it would read easier to me as "bail when the index is out of bounds", i.e.:
```suggestion
    if (CIdx->getZExtValue() >= VT.getVectorElementCount().getKnownMinValue())
      return SDValue();
```

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


More information about the llvm-commits mailing list