diff options
author | Korey Sewell <ksewell@umich.edu> | 2009-05-12 15:01:15 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2009-05-12 15:01:15 -0400 |
commit | 1c7e988272efead94d2cfbe3fd65ba454d3e1fc1 (patch) | |
tree | 55affa4470c6cc8cdadc8da953895a0b3a163a24 /src/cpu/inorder/cpu.hh | |
parent | f41df0ee08467711c613faadf9879052ab7196ed (diff) | |
download | gem5-1c7e988272efead94d2cfbe3fd65ba454d3e1fc1.tar.xz |
inorder-mem: skeleton support for prefetch/writehints
Diffstat (limited to 'src/cpu/inorder/cpu.hh')
-rw-r--r-- | src/cpu/inorder/cpu.hh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cpu/inorder/cpu.hh b/src/cpu/inorder/cpu.hh index fda2e4366..9426171c1 100644 --- a/src/cpu/inorder/cpu.hh +++ b/src/cpu/inorder/cpu.hh @@ -497,6 +497,16 @@ class InOrderCPU : public BaseCPU */ Fault write(DynInstPtr inst); + /** Forwards an instruction prefetch to the appropriate data + * resource (indexes into Resource Pool thru "dataPortIdx") + */ + void prefetch(DynInstPtr inst); + + /** Forwards an instruction writeHint to the appropriate data + * resource (indexes into Resource Pool thru "dataPortIdx") + */ + void writeHint(DynInstPtr inst); + /** Executes a syscall.*/ void syscall(int64_t callnum, int tid); |