-
Notifications
You must be signed in to change notification settings - Fork 670
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
feat(Svpbmt): support WMO memory access and outstanding of NC #3900
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Maxpicca-Li
requested review from
weidingliu,
good-circle,
linjuanZ,
cz4e,
happy-lx,
cebarobot,
Lemover and
bosscharlie
as code owners
November 19, 2024 13:37
Maxpicca-Li
changed the title
Svpbmt: support wmo memory access and outstanding of nc
Svpbmt: support WMO memory access and outstanding of nc
Nov 19, 2024
Maxpicca-Li
changed the title
Svpbmt: support WMO memory access and outstanding of nc
Svpbmt: support WMO memory access and outstanding of NC
Nov 19, 2024
Maxpicca-Li
changed the title
Svpbmt: support WMO memory access and outstanding of NC
feat(Svpbmt): support WMO memory access and outstanding of NC
Nov 19, 2024
[Generated by IPC robot]
master branch:
|
linjuanZ
requested changes
Nov 20, 2024
[Generated by IPC robot]
master branch:
|
[Generated by IPC robot]
master branch:
|
linjuanZ
requested changes
Nov 30, 2024
linjuanZ
requested changes
Nov 30, 2024
[Generated by IPC robot]
master branch:
|
Maxpicca-Li
force-pushed
the
dev-svpbmt-2409
branch
from
December 1, 2024 06:50
f64eb61
to
35b5b58
Compare
[Generated by IPC robot]
master branch:
|
cz4e
approved these changes
Dec 2, 2024
linjuanZ
approved these changes
Dec 2, 2024
bosscharlie
approved these changes
Dec 2, 2024
good-circle
approved these changes
Dec 2, 2024
[Generated by IPC robot]
master branch:
|
happy-lx
approved these changes
Dec 3, 2024
* feat(LDU): add support for NC in LoadUnit * feat(LQ,UB): add support for NC in load queue and uncache buffer * chore(pbmt): add xsperf for nc ld statistic
* fix(PBMT): skip nc difftest and handle the conflict of nc and normal store * fix(PBMT): nc st req is changed to a state machine execution * fix(pbmt): fix typo and control error of nc ld * fix(pbmt): nc data assignment error * fix(pbmt): nc should be used to wakeup * fix(pbmt): remove wrong assert * fix(pbmt): lots of bugs of nc st ld forward * fix(pbmt): fix address align error
* fix(uncache): delay flush until receiving uncache resp when state is not idle * style(pbmt): remove some useless code and comments * fix(uncache): not alloc and ready when existing same address entry
* style(pbmt): remove outstanding constant which is just for self-test * fix(uncache): added mask comparison for `addrMatch` * style(mem): code normalization * fix(pbmt): handle cases where the load unit is byte, word, etc * style(uncache): fix an import * fix(uncahce): address match should use non-offset address when forwading In this case, to ensure correct forwarding, stores with the same address but overlapping masks cannot be entered at the same time. * style(RAR): remove redundant design of `nc` reg
Maxpicca-Li
force-pushed
the
dev-svpbmt-2409
branch
from
December 3, 2024 13:14
f4fa6e2
to
2a5929e
Compare
[Generated by IPC robot]
master branch:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Here, "NC" represents accesses with PBMT=1, characterized by properties such as non-cacheable, idempotent, weakly-ordered (RVWMO), and main memory. This PR supports the WMO memory access and outstanding uncache of NC. The detailed architecture diagram is as follows.