[llvm] Update the base and index value for masked gather (PR #130920)
Rohit Aggarwal via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 02:23:35 PDT 2025
================
@@ -5127,6 +5127,13 @@ class TargetLowering : public TargetLoweringBase {
SmallVectorImpl<SDValue> &Ops,
SelectionDAG &DAG) const;
+ // Target may override this function to decided whether it want to update the
+ // base and index value of a non-uniform gep
+ virtual bool updateBaseAndIndex(const Value *Ptr, SDValue &Base,
+ SDValue &Index, const SDLoc &DL,
+ const SDValue &Gep, SelectionDAG &DAG,
+ const BasicBlock *CurBB) const;
+
----------------
rohitaggarwal007 wrote:
I did not understood the comment.
https://github.com/llvm/llvm-project/pull/130920
More information about the llvm-commits
mailing list