[RISCV] Remove UpperBound from SchedMxList and create WorstCaseBehavior records
authorMichael Maitland <michaeltmaitland@gmail.com>
Sat, 25 Mar 2023 00:16:41 +0000 (17:16 -0700)
committerMichael Maitland <michaeltmaitland@gmail.com>
Mon, 27 Mar 2023 13:46:14 +0000 (06:46 -0700)
commit2e2093aa15a5d2c4ca36e90ee6b1b52c8e49fe6a
tree879730dc97c082e15003a2fff4457193d8aac35c
parentffab44bd960c6392a0ed1f945cc145a2a2643c8c
[RISCV] Remove UpperBound from SchedMxList and create WorstCaseBehavior records

Prior to this patch, UpperBound refered to the largest LMUL
supported. Instructions used UpperBound to assign the worst
case behaviour to records, since Instructions are not LMUL
specific. This forced the largest LMUL to have the worst case
behavior, even if that wasn't true for a subtarget.

Now that SchedWrites, SchedReads, WriteRes, and ReadAdvances
are created for (name, LMUL) pairs and (name, LMUL, SEW)
tuples, it becomes even less clear which pair should correspond
to the worst case behavior. Additionally, it no longer makes sense
for the UpperBound to belong to LMUL list and not to the SEW list.

Instead of creating a special UpperBound LMUL and an UpperBound
SEW, this patch renames UpperBound to WorstCaseBehavior, removes
it from the SchedMxList, and defines a WorstCaseBehavior SchedWrite,
SchedRead, WriteRes, and ReadAdvance for each name.

This gives subtargets the ability to describe the worst case behavior
of a record without forcing it to be the largest LMUL or the smallest
SEW.

Differential Revision: https://reviews.llvm.org/D146855
llvm/lib/Target/RISCV/RISCVInstrInfoV.td
llvm/lib/Target/RISCV/RISCVInstrInfoZvk.td
llvm/lib/Target/RISCV/RISCVScheduleV.td