diff options
author | Lisa Hsu <Lisa.Hsu@amd.com> | 2011-03-31 17:17:47 -0700 |
---|---|---|
committer | Lisa Hsu <Lisa.Hsu@amd.com> | 2011-03-31 17:17:47 -0700 |
commit | 225e67f5310f44cc8390c77dbb2c939c58c6b46e (patch) | |
tree | 34c0d9a93a7a99039e7cb644d3402f461b7c15e5 /src/mem/protocol | |
parent | f6a0b63d7b5d6f5c85eb3af7086b86b753911173 (diff) | |
download | gem5-225e67f5310f44cc8390c77dbb2c939c58c6b46e.tar.xz |
Ruby: pass Packet->Req->contextId() to Ruby.
It is useful for Ruby to understand from whence request packets came.
This has all request packets going into Ruby pass the contextId value, if
it exists. This supplants the old libruby proc_id value passed around in
all the Messages, so I've also removed the unused unsigned proc_id; member
generated by SLICC for all Message types.
Diffstat (limited to 'src/mem/protocol')
-rw-r--r-- | src/mem/protocol/RubySlicc_Types.sm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mem/protocol/RubySlicc_Types.sm b/src/mem/protocol/RubySlicc_Types.sm index 118cbc2f0..add3d979b 100644 --- a/src/mem/protocol/RubySlicc_Types.sm +++ b/src/mem/protocol/RubySlicc_Types.sm @@ -117,6 +117,7 @@ structure(RubyRequest, desc="...", interface="Message", external="yes") { RubyAccessMode AccessMode, desc="user/supervisor access type"; int Size, desc="size in bytes of access"; PrefetchBit Prefetch, desc="Is this a prefetch request"; + int contextId, desc="this goes away but must be replace with Nilay"; } external_type(AbstractEntry, primitive="yes"); |