273,274c273,274
< int
< O3ThreadContext<Impl>::flattenIntIndex(int reg)
---
> RegId
> O3ThreadContext<Impl>::flattenRegId(const RegId& regId) const
276c276
< return cpu->isa[thread->threadId()]->flattenIntIndex(reg);
---
> return cpu->isa[thread->threadId()]->flattenRegId(regId);
280,300d279
< int
< O3ThreadContext<Impl>::flattenFloatIndex(int reg)
< {
< return cpu->isa[thread->threadId()]->flattenFloatIndex(reg);
< }
<
< template <class Impl>
< int
< O3ThreadContext<Impl>::flattenCCIndex(int reg)
< {
< return cpu->isa[thread->threadId()]->flattenCCIndex(reg);
< }
<
< template <class Impl>
< int
< O3ThreadContext<Impl>::flattenMiscIndex(int reg)
< {
< return cpu->isa[thread->threadId()]->flattenMiscIndex(reg);
< }
<
< template <class Impl>