-
Notifications
You must be signed in to change notification settings - Fork 33
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
cpu-o3: add stats for BPU override bubbles and UFTB pred/update #263
Open
Lawrence-ID
wants to merge
29
commits into
xs-dev
Choose a base branch
from
add-stats-override-bubble
base: xs-dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
eb877ea
cpu-o3: Add stats for BPU override bubbles and UFTB pred/update
Lawrence-ID 1b97cec
cpu-o3: optimize and add more stats about bpu override
Lawrence-ID 39251ec
cpu-o3: chores about code style
Lawrence-ID 2b0a348
cpu-o3: add fine-grained statistics for related counters
Lawrence-ID 918dbcc
cpu-o3: update UFTB ctr when UFTB hit but condTaken diff from s1 pred
Lawrence-ID 73a96ec
cpu-o3: comment updateUftbWhenOverrideByL1
Lawrence-ID 893f614
cpu-o3: set uftb tageBits to 16, as the same to RTL
Lawrence-ID f4f7855
arch-riscv: add sv48 warning message (#262)
jueshiwenli c87985c
cpu-o3: ideal: fix NumBr = 8
jensen-yan d9da996
cpu-o3: ideal: use 14 tage table according to seznec
jensen-yan 9b55b83
util: update README
jensen-yan a02dae9
mem-cache: if slice stall, request will retry
tastynoob 2f157a4
cpu-o3: write request will block dcache one cycle
tastynoob b27fd85
cpu-o3: delete pending wake events if cancel (#266)
happy-lx ff7e932
cpu-o3: Transform the lsqunit
happy-lx 41e31fb
arch-riscv: change fence's opType
happy-lx 3cad995
cpu-o3: Split operations in the ldst pipeline
happy-lx 7028e73
cpu-o3: replay cache missed load from replayQ
happy-lx 0f03607
arch: use strictly order-preserving LRSC
happy-lx f237d7a
mem: let load has certain latency in ruby cahche
happy-lx 843a74e
cpu-o3: tune the behavior of the ldst pipeline
happy-lx 8cdfeb3
cpu-o3: add params to control nuke and miss replay
happy-lx 0b3e0bb
cpu-o3: make store wb stage configurable
happy-lx 13fbc32
cpu-o3: refactor fullforward code
happy-lx 95bdac0
mem: fix write packet latency calculation
happy-lx 104a043
mem: add Load Custom Hint Wakeup
happy-lx 2d232dd
cpu-o3: refactor lsu related code
happy-lx 817c578
cpu-o3: branchPred: add ftq end reason stats (#232)
jensen-yan ae4d7aa
cpu-o3: resolve conflicts
Lawrence-ID File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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.
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.
bool ftb_is_full = (ftb[ftb_idx].size() >= numWays);
if (ftb_is_full) {
ftbStats.predMissWhenFull++;
DPRINTF(FTB, "FTB: Looking up FTB entry index %#lx tag %#lx miss, ftb is full\n", ftb_idx, ftb_tag);
} else {
ftbStats.predMissWhenNotFull++;
DPRINTF(FTB, "FTB: Looking up FTB entry index %#lx tag %#lx miss, ftb is not full\n", ftb_idx, ftb_tag);
}
I prefer this.