43c43
< #include "cpu/static_inst_fwd.hh"
---
> #include "cpu/static_inst.hh"
221,222c221,223
< /// A cache of decoded instruction objects.
< static DecodeCache defaultCache;
---
> /// Caching for decoded instruction objects.
> static DecodeCache::InstMap instMap;
> static DecodeCache::AddrMap<StaticInstPtr> decodePages;
230,234c231
< StaticInstPtr
< decode(ExtMachInst mach_inst, Addr addr)
< {
< return defaultCache.decode(this, mach_inst, addr);
< }
---
> StaticInstPtr decode(ExtMachInst mach_inst, Addr addr);