-
Notifications
You must be signed in to change notification settings - Fork 15.3k
[RISCV] Update some of the RVV memory ops in SiFive P400 & P600 sched models #129575
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
43a5cbb
fb424f7
ad8229b
8feadc1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,6 +22,8 @@ class SiFiveP400IsWorstCaseMXSEW<string mx, int sew, list<string> MxList, bit is | |
| bit c = !and(!eq(mx, LLMUL), !eq(sew, SSEW)); | ||
| } | ||
|
|
||
| defvar SiFiveP400VLEN = 128; | ||
|
|
||
| // 1 Micro-Op per cycle. | ||
| class SiFiveP400GetLMulCycles<string mx> { | ||
| int c = !cond( | ||
|
|
@@ -35,19 +37,19 @@ class SiFiveP400GetLMulCycles<string mx> { | |
| ); | ||
| } | ||
|
|
||
| // Latency for segmented loads and stores are calculated as vl * nf. | ||
| class SiFiveP400GetCyclesSegmented<string mx, int sew, int nf> { | ||
| defvar VLEN = 128; | ||
| defvar VLUpperBound = !cond( | ||
| !eq(mx, "M1") : !div(VLEN, sew), | ||
| !eq(mx, "M2") : !div(!mul(VLEN, 2), sew), | ||
| !eq(mx, "M4") : !div(!mul(VLEN, 4), sew), | ||
| !eq(mx, "M8") : !div(!mul(VLEN, 8), sew), | ||
| !eq(mx, "MF2") : !div(!div(VLEN, 2), sew), | ||
| !eq(mx, "MF4") : !div(!div(VLEN, 4), sew), | ||
| !eq(mx, "MF8") : !div(!div(VLEN, 8), sew), | ||
| class SiFiveP400GetVLMAX<string mx, int sew> { | ||
| defvar LMUL = SiFiveP400GetLMulCycles<mx>.c; | ||
| int val = !cond( | ||
| !eq(mx, "MF2") : !div(!div(SiFiveP400VLEN, 2), sew), | ||
| !eq(mx, "MF4") : !div(!div(SiFiveP400VLEN, 4), sew), | ||
| !eq(mx, "MF8") : !div(!div(SiFiveP400VLEN, 8), sew), | ||
| true: !div(!mul(SiFiveP400VLEN, LMUL), sew) | ||
| ); | ||
| int c = !mul(VLUpperBound, nf); | ||
| } | ||
|
|
||
| // Latency for segmented loads and stores are calculated as vl * nf. | ||
| class SiFiveP400SegmentedLdStCycles<string mx, int sew, int nf> { | ||
| int c = !mul(SiFiveP400GetVLMAX<mx, sew>.val, nf); | ||
| } | ||
|
|
||
| // Both variants of floating point vector reductions are based on numbers collected | ||
|
|
@@ -368,65 +370,44 @@ def : WriteRes<WriteVSETIVLI, [SiFiveP400SYS]>; | |
| def : WriteRes<WriteVSETVL, [SiFiveP400SYS]>; | ||
|
|
||
| // 7. Vector Loads and Stores | ||
| // FIXME: This unit is still being improved, currently | ||
| // it is based on stage numbers. Estimates are optimistic, | ||
| // latency may be longer. | ||
| foreach mx = SchedMxList in { | ||
| defvar LMulLat = SiFiveP400GetLMulCycles<mx>.c; | ||
| defvar IsWorstCase = SiFiveP400IsWorstCaseMX<mx, SchedMxList>.c; | ||
| let Latency = 8, ReleaseAtCycles = [LMulLat] in { | ||
| defm "" : LMULWriteResMX<"WriteVLDE", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDM", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDFF", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| } | ||
| let Latency = 12, ReleaseAtCycles = [LMulLat] in { | ||
| defm "" : LMULWriteResMX<"WriteVLDS8", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDS16", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDS32", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDS64", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| } | ||
| let Latency = 12, ReleaseAtCycles = [LMulLat] in { | ||
| defm "" : LMULWriteResMX<"WriteVLDUX8", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDUX16", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDUX32", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDUX64", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDOX8", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDOX16", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDOX32", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDOX64", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| } | ||
| } | ||
|
|
||
| // Note that the latency of vector loads are measured by consuming the loaded | ||
| // value with vmv.x.s before subtracting the latency of vmv.x.s from the number. | ||
| foreach mx = SchedMxList in { | ||
| defvar LMulLat = SiFiveP400GetLMulCycles<mx>.c; | ||
| defvar IsWorstCase = SiFiveP400IsWorstCaseMX<mx, SchedMxList>.c; | ||
| let Latency = 8, ReleaseAtCycles = [LMulLat] in { | ||
| defm "" : LMULWriteResMX<"WriteVSTE", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTM", [SiFiveP400VST], mx, IsWorstCase>; | ||
| } | ||
| let Latency = 12, ReleaseAtCycles = [LMulLat] in { | ||
| defm "" : LMULWriteResMX<"WriteVSTS8", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTS16", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTS32", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTS64", [SiFiveP400VST], mx, IsWorstCase>; | ||
| let Latency = 8 in { | ||
| let ReleaseAtCycles = [LMulLat] in { | ||
| defm "" : LMULWriteResMX<"WriteVLDE", [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDFF", [SiFiveP400VLD], mx, IsWorstCase>; | ||
|
|
||
| defm "" : LMULWriteResMX<"WriteVSTE", [SiFiveP400VST], mx, IsWorstCase>; | ||
| } | ||
|
|
||
| // Mask load and store always have EMUL=1. | ||
| let ReleaseAtCycles = [SiFiveP400GetLMulCycles<"M1">.c] in { | ||
| defm "" : LMULWriteResMX<"WriteVLDM", [SiFiveP400VLD], mx, IsWorstCase=!eq(mx, "M1")>; | ||
| defm "" : LMULWriteResMX<"WriteVSTM", [SiFiveP400VST], mx, IsWorstCase=!eq(mx, "M1")>; | ||
| } | ||
| } | ||
| let Latency = 12, ReleaseAtCycles = [LMulLat] in { | ||
| defm "" : LMULWriteResMX<"WriteVSTUX8", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTUX16", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTUX32", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTUX64", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTOX8", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTOX16", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTOX32", [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTOX64", [SiFiveP400VST], mx, IsWorstCase>; | ||
| foreach eew = [8, 16, 32, 64] in { | ||
| let Latency = 13, ReleaseAtCycles = [SiFiveP400GetVLMAX<mx, eew>.val] in { | ||
|
||
| defm "" : LMULWriteResMX<"WriteVLDS" # eew, [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDUX" # eew, [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLDOX" # eew, [SiFiveP400VLD], mx, IsWorstCase>; | ||
|
|
||
| defm "" : LMULWriteResMX<"WriteVSTS" # eew, [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTUX" # eew, [SiFiveP400VST], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVSTOX" # eew, [SiFiveP400VST], mx, IsWorstCase>; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| foreach mx = SchedMxList in { | ||
| foreach nf=2-8 in { | ||
| foreach eew = [8, 16, 32, 64] in { | ||
| defvar IsWorstCase = SiFiveP400IsWorstCaseMX<mx, SchedMxList>.c; | ||
| defvar LMulLat = SiFiveP400GetCyclesSegmented<mx, eew, nf>.c; | ||
| defvar LMulLat = SiFiveP400SegmentedLdStCycles<mx, eew, nf>.c; | ||
| let Latency = !add(12, LMulLat), ReleaseAtCycles = [!add(12, LMulLat)] in { | ||
| defm "" : LMULWriteResMX<"WriteVLSEG" # nf # "e" #eew, [SiFiveP400VLD], mx, IsWorstCase>; | ||
| defm "" : LMULWriteResMX<"WriteVLSEGFF" # nf # "e" #eew, [SiFiveP400VLD], mx, IsWorstCase>; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From the true meaning of EMUL, its technically EMUL=[1/64, 1]. Only a whole register or a fraction as small as 1/64 of a register is used. It's calculated as EMUL=(1/SEW)*LMUL where SEW and LMUL come from VTYPE.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I copied the EMUL=1 description from the spec. Though I understand what you meant about EMUL can go as small as 1/64. I've updated the comment to be EMUL can be "Mask load and store have a maximum EMUL of 1".