diff options
author | Radhika Jagtap <radhika.jagtap@ARM.com> | 2015-12-07 16:42:16 -0600 |
---|---|---|
committer | Radhika Jagtap <radhika.jagtap@ARM.com> | 2015-12-07 16:42:16 -0600 |
commit | 54519fd51f739c3a37c4ad712b86a353eabbbfec (patch) | |
tree | 21002ebffe820d302b839ac625636830b141964b /src/proto | |
parent | 3080bbcc365e6ed663787a4c06cd2b7c4a118d47 (diff) | |
download | gem5-54519fd51f739c3a37c4ad712b86a353eabbbfec.tar.xz |
cpu: Support virtual addr in elastic traces
This patch adds support to optionally capture the virtual address and asid
for load/store instructions in the elastic traces. If they are present in
the traces, Trace CPU will set those fields of the request during replay.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/inst_dep_record.proto | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/proto/inst_dep_record.proto b/src/proto/inst_dep_record.proto index 98c070efc..f89e51d81 100644 --- a/src/proto/inst_dep_record.proto +++ b/src/proto/inst_dep_record.proto @@ -69,7 +69,7 @@ message InstDepRecord { } required uint64 seq_num = 1; required RecordType type = 2 [default = INVALID]; - optional uint64 addr = 3; + optional uint64 p_addr = 3; optional uint32 size = 4; optional uint32 flags = 5; repeated uint64 rob_dep = 6; @@ -77,4 +77,6 @@ message InstDepRecord { repeated uint64 reg_dep = 8; optional uint32 weight = 9; optional uint64 pc = 10; + optional uint64 v_addr = 11; + optional uint32 asid = 12; }
\ No newline at end of file |