-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
[MIPS] Add Scheduling model for MIPS i6400 and i6500 CPUs #132704
base: main
Are you sure you want to change the base?
Conversation
Thanks for working on this! Can you please share a document that shows the instruction latencies? |
|
||
// LSU pipelines | ||
// ============= | ||
def : InstRW<[I6400WriteLSUStore], (instrs SB, SD, SH, SW, SDC1, SDC164, SWC1, SWC2_R6, |
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.
Is it possible avoid using SchedWriteRes
+ InstRW
and using the normal SchedWrite
+ WriteRes
instead?
InstRW
really should be used for "ad-hoc fixing" nowadays (e.g. instruction A & B share the same scheduling class in their instruction definitions, but they should be in two different scheduling classes in your core)
Hi, please find the instruction latency at public document: https://mips.com/wp-content/uploads/2025/03/MIPS_I6500-F_Data_Sheet_Rev1.10_3-17-2025.pdf |
d22c99a
to
e1a086e
Compare
mul $3, $2, $3 | ||
sw $3, 8($sp) | ||
div $2, $1 | ||
sw $2, 0($sp) |
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.
Could you add more tests on simple integer and floating point arithmetics instructions, as well as some vector instructions (they're called MSA?).
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.
yes. I will add. thank you for the review
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 have extended the existing test to cover more instructions.
Add scheduling model for the MIPS i6400 and i6500, an in-order MIPS64R6 processor. i6400 and i6500 share same instruction latencies. CPU has following pipelines - Two ALUs - Multiply and Divide unit (MDU) - Branch Unit (CTU) - Load/Store Unit (LSU) - Short Floating-point Unit and - Long Floating-point Unit
i6400 and i6500 are in-order cores. hence set BufferSize and MicroBufferSize to 0
- remove hasNoSchedulingInfo in Mips32r6InstrInfo.td - define BufferSize to 0 for all resources - remove timeline test in llvm-mca testcase
b9b1cf4
to
6784668
Compare
Extend i64..s to cover more instructions including MSA
Add scheduling model for the MIPS i6400 and i6500, an in-order MIPS64R6 processor.
i6400 and i6500 share same instruction latencies.
CPU has following pipelines
Latency information is available at: https://mips.com/wp-content/uploads/2025/03/MIPS_I6500-F_Data_Sheet_Rev1.10_3-17-2025.pdf