-
Notifications
You must be signed in to change notification settings - Fork 23
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
Mmio record #930
Merged
Merged
Mmio record #930
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
Guide to use the latest program instrument and print utilitiesProgram instrument#include <emurt.h>
void test() {
place_counter(1);
// Place some expensive task here
place_counter(2);
} After online driver finish, there should be a {"cycle": 192, "event": "profile", "value": 1}
{"cycle": 1299, "event": "profile", "value": 2} #include <emurt.h>
void test() {
print_s("Hello, World\n");
} After online driver finish, there should be a {"cycle": 330, "event": "uart-write", "value": 72}
{"cycle": 404, "event": "uart-write", "value": 101}
{"cycle": 478, "event": "uart-write", "value": 108}
{"cycle": 552, "event": "uart-write", "value": 108}
{"cycle": 626, "event": "uart-write", "value": 111}
{"cycle": 700, "event": "uart-write", "value": 44}
{"cycle": 774, "event": "uart-write", "value": 32}
{"cycle": 848, "event": "uart-write", "value": 87}
{"cycle": 919, "event": "uart-write", "value": 111}
{"cycle": 990, "event": "uart-write", "value": 114}
{"cycle": 1064, "event": "uart-write", "value": 108}
{"cycle": 1138, "event": "uart-write", "value": 100}
{"cycle": 1209, "event": "uart-write", "value": 10} Those value can be encode to string using following bash script: $ jq -r 'select(.event == "uart-write") | .value' mmio-event.jsonl | awk '{ printf "%c", $1}'
Hello, World |
FanShupei
commented
Jan 9, 2025
Avimitin
force-pushed
the
mmio-record
branch
2 times, most recently
from
January 9, 2025 09:40
ffb0bfa
to
982185e
Compare
Signed-off-by: Avimitin <[email protected]>
Signed-off-by: Avimitin <[email protected]>
Signed-off-by: Avimitin <[email protected]>
Signed-off-by: Avimitin <[email protected]>
Avimitin
approved these changes
Jan 9, 2025
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.
In simcrtl device, we allocate two WO regs, all writes to them are blindly recorded to
mmio-event.jsonl
. In the folling format:Post-process scripts can rebuilt program outputs and profile events from the event records.