[llvm] [MIPS] Add Scheduling model for MIPS i6400 and i6500 CPUs (PR #132704)
Mallikarjuna Gouda via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 26 22:38:49 PDT 2025
================
@@ -983,7 +983,10 @@ let AdditionalPredicates = [NotInMicroMips] in {
def SEL_S : R6MMR6Rel, SEL_S_ENC, SEL_S_DESC, ISA_MIPS32R6, HARDFLOAT;
def SDC2_R6 : SDC2_R6_ENC, SDC2_R6_DESC, ISA_MIPS32R6;
def SWC2_R6 : SWC2_R6_ENC, SWC2_R6_DESC, ISA_MIPS32R6;
- def SIGRIE : SIGRIE_ENC, SIGRIE_DESC, ISA_MIPS32R6;
+
+ let hasNoSchedulingInfo = true in {
+ def SIGRIE : SIGRIE_ENC, SIGRIE_DESC, ISA_MIPS32R6;
----------------
mgoudar wrote:
removed hasNoSchedulingInfo = true for unsupported instructions and set CompleteModel to 0 until we know resource and cycles for SIGRIE instruction.
Only generic model has set latency to 1 for this instruction. So no issues there.
https://github.com/llvm/llvm-project/pull/132704
More information about the llvm-commits
mailing list