Skip to content
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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

mgoudar
Copy link
Contributor

@mgoudar mgoudar commented Mar 24, 2025

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

Latency information is available at: https://mips.com/wp-content/uploads/2025/03/MIPS_I6500-F_Data_Sheet_Rev1.10_3-17-2025.pdf

@djtodoro djtodoro self-requested a review March 24, 2025 10:16
@djtodoro
Copy link
Collaborator

Thanks for working on this! Can you please share a document that shows the instruction latencies?

@djtodoro djtodoro requested a review from mshockwave March 24, 2025 10:20

// LSU pipelines
// =============
def : InstRW<[I6400WriteLSUStore], (instrs SB, SD, SH, SW, SDC1, SDC164, SWC1, SWC2_R6,
Copy link
Member

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)

@mgoudar
Copy link
Contributor Author

mgoudar commented Mar 25, 2025

Thanks for working on this! Can you please share a document that shows the instruction latencies?

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

@mgoudar mgoudar requested a review from mshockwave March 26, 2025 07:25
@mgoudar mgoudar force-pushed the pr/add-mips-i6500-sched-model branch from d22c99a to e1a086e Compare March 26, 2025 09:41
@mgoudar mgoudar requested a review from mshockwave March 27, 2025 07:23
mul $3, $2, $3
sw $3, 8($sp)
div $2, $1
sw $2, 0($sp)
Copy link
Member

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?).

Copy link
Contributor Author

@mgoudar mgoudar Mar 28, 2025

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

Copy link
Contributor Author

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.

mgoudar added 3 commits March 31, 2025 14:51
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
@mgoudar mgoudar force-pushed the pr/add-mips-i6500-sched-model branch from b9b1cf4 to 6784668 Compare March 31, 2025 09:22
Extend i64..s to cover more instructions including MSA
@mgoudar mgoudar requested a review from mshockwave April 4, 2025 09:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants