diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2004-02-26 07:05:36 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2004-02-26 07:05:36 -0800 |
commit | 6f5e104fc5683ace0c17ddb402bf8d40330f60aa (patch) | |
tree | f7cf19d176c6e89566806db4e0c2d4612daf1d3a /cpu/simple_cpu/simple_cpu.hh | |
parent | 6a306d4cafae360c9107a845ee2d08c8667453ae (diff) | |
download | gem5-6f5e104fc5683ace0c17ddb402bf8d40330f60aa.tar.xz |
Make SW prefetch flag a parameter again, and add code to make
it actually do something on FullCPU. Still disabled, as it
causes detailed-boot to hang when you turn it on.
arch/alpha/isa_desc:
Add EAComp and MemAcc pseudo-instructions to prefetch StaticInst.
cpu/simple_cpu/simple_cpu.hh:
Changed prefetch() return type from Fault to void.
--HG--
extra : convert_revision : c7cb42682bfea6af117c87d4dfdb06176b6fe6b7
Diffstat (limited to 'cpu/simple_cpu/simple_cpu.hh')
-rw-r--r-- | cpu/simple_cpu/simple_cpu.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpu/simple_cpu/simple_cpu.hh b/cpu/simple_cpu/simple_cpu.hh index 4a9872e75..2b881509c 100644 --- a/cpu/simple_cpu/simple_cpu.hh +++ b/cpu/simple_cpu/simple_cpu.hh @@ -237,10 +237,9 @@ class SimpleCPU : public BaseCPU Fault write(T data, Addr addr, unsigned flags, uint64_t *res); - Fault prefetch(Addr addr, unsigned flags) + void prefetch(Addr addr, unsigned flags) { // need to do this... - return No_Fault; } void writeHint(Addr addr, int size) |