[llvm] [RISCV][MCA] Pick the correct VPseudo sched class for indexed memory operation (PR #128978)

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 26 17:57:17 PST 2025


================
@@ -14,12 +14,33 @@
 #include "RISCVCustomBehaviour.h"
 #include "MCTargetDesc/RISCVMCTargetDesc.h"
 #include "RISCV.h"
+#include "RISCVISelDAGToDAG.h"
 #include "TargetInfo/RISCVTargetInfo.h"
 #include "llvm/MC/TargetRegistry.h"
 #include "llvm/Support/Debug.h"
 
 #define DEBUG_TYPE "llvm-mca-riscv-custombehaviour"
 
+namespace llvm::RISCV::mca {
+struct VXMemOpInfo {
+  unsigned Log2IdxEEW : 3;
+  unsigned IsOrdered : 1;
+  unsigned IsStore : 1;
+  unsigned NF : 4;
+  unsigned BaseInstr;
+};
+
+#define GET_RISCVBaseVXMemOpTable_DECL
+#define GET_RISCVBaseVXMemOpTable_IMPL
+// We need to include the implementation code here because RISCVCustomBehavior
+// is not linked against RISCVCodeGen.
+#define GET_RISCVVLXSEGTable_IMPL
----------------
topperc wrote:

I guess the DECLs of the function in RISCVISelDAGToDAG.h are being declared in the other namespace but the implementation is in this namespace and the callers are looking in this namespace. The function declarations in RISCVISelDAGToDAG.h are just useless.

And the struct definition work because the llvm::RISCV is a parent of llvm::RISCV::mca

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


More information about the llvm-commits mailing list