diff options
author | Steve Reinhardt <stever@gmail.com> | 2008-03-24 01:08:02 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@gmail.com> | 2008-03-24 01:08:02 -0400 |
commit | 93ab43288a75061746701c9d22a355793f330a9c (patch) | |
tree | a5ea6a953da81990b90562739b952ee9d4b0c026 /src/cpu/o3 | |
parent | 627592c2f2a9d2774df50b2b5039efcb71432bc7 (diff) | |
download | gem5-93ab43288a75061746701c9d22a355793f330a9c.tar.xz |
Don't FastAlloc MSHRs since we don't allocate them on the fly.
--HG--
extra : convert_revision : 02775cfb460afe6df0df0938c62cccd93a71e775
Diffstat (limited to 'src/cpu/o3')
-rw-r--r-- | src/cpu/o3/lsq_unit.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/o3/lsq_unit.hh b/src/cpu/o3/lsq_unit.hh index 128a71dbc..3ae69723d 100644 --- a/src/cpu/o3/lsq_unit.hh +++ b/src/cpu/o3/lsq_unit.hh @@ -40,6 +40,7 @@ #include "arch/faults.hh" #include "arch/locked_mem.hh" #include "config/full_system.hh" +#include "base/fast_alloc.hh" #include "base/hashmap.hh" #include "cpu/inst_seq.hh" #include "mem/packet.hh" @@ -245,7 +246,7 @@ class LSQUnit { Port *dcachePort; /** Derived class to hold any sender state the LSQ needs. */ - class LSQSenderState : public Packet::SenderState + class LSQSenderState : public Packet::SenderState, public FastAlloc { public: /** Default constructor. */ |