-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[MIPS] Add MIPS i6400 and i6500 processors #130587
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 all commits
4f9c5b5
73338e1
97e5e91
e7442a7
9c8ca52
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 |
---|---|---|
|
@@ -43,7 +43,7 @@ class MipsSubtarget : public MipsGenSubtargetInfo { | |
Mips3, Mips4, Mips5, Mips64, Mips64r2, Mips64r3, Mips64r5, Mips64r6 | ||
}; | ||
|
||
enum class CPU { P5600 }; | ||
enum class CPU { P5600, I6400 }; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we need "i6500" here as well? i6500 is just a multi-cluster version of i6400, right? Please also attach/link documentation files for those CPUs. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for quick review! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So, we do not use this in this patch at all, right? If that is the case, please leave this change for the Sched. Model PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi, we need this change in Mips.td as we are defining 2 new cpu (i6400 and i6500) with NoSchedModel. |
||
|
||
// Used to avoid printing dsp warnings multiple times. | ||
static bool DspWarningPrinted; | ||
|
Uh oh!
There was an error while loading. Please reload this page.