thread_context_impl.hh revision 7467
12817Sksewell@umich.edu/*
22817Sksewell@umich.edu * Copyright (c) 2004-2006 The Regents of The University of Michigan
32817Sksewell@umich.edu * All rights reserved.
42817Sksewell@umich.edu *
52817Sksewell@umich.edu * Redistribution and use in source and binary forms, with or without
62817Sksewell@umich.edu * modification, are permitted provided that the following conditions are
72817Sksewell@umich.edu * met: redistributions of source code must retain the above copyright
82817Sksewell@umich.edu * notice, this list of conditions and the following disclaimer;
92817Sksewell@umich.edu * redistributions in binary form must reproduce the above copyright
102817Sksewell@umich.edu * notice, this list of conditions and the following disclaimer in the
112817Sksewell@umich.edu * documentation and/or other materials provided with the distribution;
122817Sksewell@umich.edu * neither the name of the copyright holders nor the names of its
132817Sksewell@umich.edu * contributors may be used to endorse or promote products derived from
142817Sksewell@umich.edu * this software without specific prior written permission.
152817Sksewell@umich.edu *
162817Sksewell@umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172817Sksewell@umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182817Sksewell@umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192817Sksewell@umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202817Sksewell@umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212817Sksewell@umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222817Sksewell@umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232817Sksewell@umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242817Sksewell@umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252817Sksewell@umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262817Sksewell@umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272817Sksewell@umich.edu *
282817Sksewell@umich.edu * Authors: Kevin Lim
292817Sksewell@umich.edu *          Korey Sewell
302817Sksewell@umich.edu */
312817Sksewell@umich.edu
326329Sgblack@eecs.umich.edu#include "arch/registers.hh"
336658Snate@binkert.org#include "config/the_isa.hh"
342817Sksewell@umich.edu#include "cpu/o3/thread_context.hh"
352834Sksewell@umich.edu#include "cpu/quiesce_event.hh"
362817Sksewell@umich.edu
372817Sksewell@umich.edu#if FULL_SYSTEM
382817Sksewell@umich.edutemplate <class Impl>
392817Sksewell@umich.eduVirtualPort *
405499Ssaidi@eecs.umich.eduO3ThreadContext<Impl>::getVirtPort()
412817Sksewell@umich.edu{
425499Ssaidi@eecs.umich.edu    return thread->getVirtPort();
432817Sksewell@umich.edu}
442817Sksewell@umich.edu
452817Sksewell@umich.edutemplate <class Impl>
462817Sksewell@umich.eduvoid
472817Sksewell@umich.eduO3ThreadContext<Impl>::dumpFuncProfile()
482817Sksewell@umich.edu{
493126Sktlim@umich.edu    thread->dumpFuncProfile();
502817Sksewell@umich.edu}
512817Sksewell@umich.edu#endif
522817Sksewell@umich.edu
532817Sksewell@umich.edutemplate <class Impl>
542817Sksewell@umich.eduvoid
552817Sksewell@umich.eduO3ThreadContext<Impl>::takeOverFrom(ThreadContext *old_context)
562817Sksewell@umich.edu{
572817Sksewell@umich.edu    // some things should already be set up
587467Stjones1@inf.ed.ac.uk#if FULL_SYSTEM
592817Sksewell@umich.edu    assert(getSystemPtr() == old_context->getSystemPtr());
607467Stjones1@inf.ed.ac.uk#else
612817Sksewell@umich.edu    assert(getProcessPtr() == old_context->getProcessPtr());
622817Sksewell@umich.edu#endif
632817Sksewell@umich.edu
642817Sksewell@umich.edu    // copy over functional state
652817Sksewell@umich.edu    setStatus(old_context->status());
662817Sksewell@umich.edu    copyArchRegs(old_context);
675714Shsul@eecs.umich.edu    setContextId(old_context->contextId());
685715Shsul@eecs.umich.edu    setThreadId(old_context->threadId());
692817Sksewell@umich.edu
702817Sksewell@umich.edu#if !FULL_SYSTEM
712817Sksewell@umich.edu    thread->funcExeInst = old_context->readFuncExeInst();
722817Sksewell@umich.edu#else
732817Sksewell@umich.edu    EndQuiesceEvent *other_quiesce = old_context->getQuiesceEvent();
742817Sksewell@umich.edu    if (other_quiesce) {
752817Sksewell@umich.edu        // Point the quiesce event's TC at this TC so that it wakes up
762817Sksewell@umich.edu        // the proper CPU.
772817Sksewell@umich.edu        other_quiesce->tc = this;
782817Sksewell@umich.edu    }
792817Sksewell@umich.edu    if (thread->quiesceEvent) {
802817Sksewell@umich.edu        thread->quiesceEvent->tc = this;
812817Sksewell@umich.edu    }
822817Sksewell@umich.edu
832817Sksewell@umich.edu    // Transfer kernel stats from one CPU to the other.
842817Sksewell@umich.edu    thread->kernelStats = old_context->getKernelStats();
852817Sksewell@umich.edu//    storeCondFailures = 0;
862817Sksewell@umich.edu    cpu->lockFlag = false;
872817Sksewell@umich.edu#endif
882817Sksewell@umich.edu
896029Ssteve.reinhardt@amd.com    old_context->setStatus(ThreadContext::Halted);
902817Sksewell@umich.edu
912817Sksewell@umich.edu    thread->inSyscall = false;
922817Sksewell@umich.edu    thread->trapPending = false;
932817Sksewell@umich.edu}
942817Sksewell@umich.edu
952817Sksewell@umich.edutemplate <class Impl>
962817Sksewell@umich.eduvoid
972817Sksewell@umich.eduO3ThreadContext<Impl>::activate(int delay)
982817Sksewell@umich.edu{
992875Sksewell@umich.edu    DPRINTF(O3CPU, "Calling activate on Thread Context %d\n",
1005715Shsul@eecs.umich.edu            threadId());
1012817Sksewell@umich.edu
1022817Sksewell@umich.edu    if (thread->status() == ThreadContext::Active)
1032817Sksewell@umich.edu        return;
1042817Sksewell@umich.edu
1052817Sksewell@umich.edu#if FULL_SYSTEM
1062817Sksewell@umich.edu    thread->lastActivate = curTick;
1072817Sksewell@umich.edu#endif
1082817Sksewell@umich.edu
1092817Sksewell@umich.edu    thread->setStatus(ThreadContext::Active);
1102817Sksewell@umich.edu
1112817Sksewell@umich.edu    // status() == Suspended
1125715Shsul@eecs.umich.edu    cpu->activateContext(thread->threadId(), delay);
1132817Sksewell@umich.edu}
1142817Sksewell@umich.edu
1152817Sksewell@umich.edutemplate <class Impl>
1162817Sksewell@umich.eduvoid
1175250Sksewell@umich.eduO3ThreadContext<Impl>::suspend(int delay)
1182817Sksewell@umich.edu{
1192875Sksewell@umich.edu    DPRINTF(O3CPU, "Calling suspend on Thread Context %d\n",
1205715Shsul@eecs.umich.edu            threadId());
1212817Sksewell@umich.edu
1222817Sksewell@umich.edu    if (thread->status() == ThreadContext::Suspended)
1232817Sksewell@umich.edu        return;
1242817Sksewell@umich.edu
1252817Sksewell@umich.edu#if FULL_SYSTEM
1262817Sksewell@umich.edu    thread->lastActivate = curTick;
1272817Sksewell@umich.edu    thread->lastSuspend = curTick;
1282817Sksewell@umich.edu#endif
1292817Sksewell@umich.edu/*
1302817Sksewell@umich.edu#if FULL_SYSTEM
1312817Sksewell@umich.edu    // Don't change the status from active if there are pending interrupts
1325704Snate@binkert.org    if (cpu->checkInterrupts()) {
1332817Sksewell@umich.edu        assert(status() == ThreadContext::Active);
1342817Sksewell@umich.edu        return;
1352817Sksewell@umich.edu    }
1362817Sksewell@umich.edu#endif
1372817Sksewell@umich.edu*/
1382817Sksewell@umich.edu    thread->setStatus(ThreadContext::Suspended);
1395715Shsul@eecs.umich.edu    cpu->suspendContext(thread->threadId());
1402817Sksewell@umich.edu}
1412817Sksewell@umich.edu
1422817Sksewell@umich.edutemplate <class Impl>
1432817Sksewell@umich.eduvoid
1445250Sksewell@umich.eduO3ThreadContext<Impl>::halt(int delay)
1452817Sksewell@umich.edu{
1462875Sksewell@umich.edu    DPRINTF(O3CPU, "Calling halt on Thread Context %d\n",
1475715Shsul@eecs.umich.edu            threadId());
1482817Sksewell@umich.edu
1492817Sksewell@umich.edu    if (thread->status() == ThreadContext::Halted)
1502817Sksewell@umich.edu        return;
1512817Sksewell@umich.edu
1522817Sksewell@umich.edu    thread->setStatus(ThreadContext::Halted);
1535715Shsul@eecs.umich.edu    cpu->haltContext(thread->threadId());
1542817Sksewell@umich.edu}
1552817Sksewell@umich.edu
1562817Sksewell@umich.edutemplate <class Impl>
1572817Sksewell@umich.eduvoid
1582817Sksewell@umich.eduO3ThreadContext<Impl>::regStats(const std::string &name)
1592817Sksewell@umich.edu{
1602817Sksewell@umich.edu#if FULL_SYSTEM
1613548Sgblack@eecs.umich.edu    thread->kernelStats = new TheISA::Kernel::Statistics(cpu->system);
1622817Sksewell@umich.edu    thread->kernelStats->regStats(name + ".kern");
1632817Sksewell@umich.edu#endif
1642817Sksewell@umich.edu}
1652817Sksewell@umich.edu
1662817Sksewell@umich.edutemplate <class Impl>
1672817Sksewell@umich.eduvoid
1682817Sksewell@umich.eduO3ThreadContext<Impl>::serialize(std::ostream &os)
1692817Sksewell@umich.edu{
1702817Sksewell@umich.edu#if FULL_SYSTEM
1712817Sksewell@umich.edu    if (thread->kernelStats)
1722817Sksewell@umich.edu        thread->kernelStats->serialize(os);
1732817Sksewell@umich.edu#endif
1742817Sksewell@umich.edu
1752817Sksewell@umich.edu}
1762817Sksewell@umich.edu
1772817Sksewell@umich.edutemplate <class Impl>
1782817Sksewell@umich.eduvoid
1792817Sksewell@umich.eduO3ThreadContext<Impl>::unserialize(Checkpoint *cp, const std::string &section)
1802817Sksewell@umich.edu{
1812817Sksewell@umich.edu#if FULL_SYSTEM
1822817Sksewell@umich.edu    if (thread->kernelStats)
1832817Sksewell@umich.edu        thread->kernelStats->unserialize(cp, section);
1842817Sksewell@umich.edu#endif
1852817Sksewell@umich.edu
1862817Sksewell@umich.edu}
1872817Sksewell@umich.edu
1882817Sksewell@umich.edu#if FULL_SYSTEM
1892817Sksewell@umich.edutemplate <class Impl>
1902817Sksewell@umich.eduTick
1912817Sksewell@umich.eduO3ThreadContext<Impl>::readLastActivate()
1922817Sksewell@umich.edu{
1932817Sksewell@umich.edu    return thread->lastActivate;
1942817Sksewell@umich.edu}
1952817Sksewell@umich.edu
1962817Sksewell@umich.edutemplate <class Impl>
1972817Sksewell@umich.eduTick
1982817Sksewell@umich.eduO3ThreadContext<Impl>::readLastSuspend()
1992817Sksewell@umich.edu{
2002817Sksewell@umich.edu    return thread->lastSuspend;
2012817Sksewell@umich.edu}
2022817Sksewell@umich.edu
2032817Sksewell@umich.edutemplate <class Impl>
2042817Sksewell@umich.eduvoid
2052817Sksewell@umich.eduO3ThreadContext<Impl>::profileClear()
2063126Sktlim@umich.edu{
2073126Sktlim@umich.edu    thread->profileClear();
2083126Sktlim@umich.edu}
2092817Sksewell@umich.edu
2102817Sksewell@umich.edutemplate <class Impl>
2112817Sksewell@umich.eduvoid
2122817Sksewell@umich.eduO3ThreadContext<Impl>::profileSample()
2133126Sktlim@umich.edu{
2143126Sktlim@umich.edu    thread->profileSample();
2153126Sktlim@umich.edu}
2162817Sksewell@umich.edu#endif
2172817Sksewell@umich.edu
2182817Sksewell@umich.edutemplate <class Impl>
2192817Sksewell@umich.eduTheISA::MachInst
2202817Sksewell@umich.eduO3ThreadContext<Impl>:: getInst()
2212817Sksewell@umich.edu{
2222817Sksewell@umich.edu    return thread->getInst();
2232817Sksewell@umich.edu}
2242817Sksewell@umich.edu
2252817Sksewell@umich.edutemplate <class Impl>
2262817Sksewell@umich.eduvoid
2272817Sksewell@umich.eduO3ThreadContext<Impl>::copyArchRegs(ThreadContext *tc)
2282817Sksewell@umich.edu{
2292817Sksewell@umich.edu    // This function will mess things up unless the ROB is empty and
2302817Sksewell@umich.edu    // there are no instructions in the pipeline.
2316221Snate@binkert.org    ThreadID tid = thread->threadId();
2322817Sksewell@umich.edu    PhysRegIndex renamed_reg;
2332817Sksewell@umich.edu
2342817Sksewell@umich.edu    // First loop through the integer registers.
2352817Sksewell@umich.edu    for (int i = 0; i < TheISA::NumIntRegs; ++i) {
2362817Sksewell@umich.edu        renamed_reg = cpu->renameMap[tid].lookup(i);
2372817Sksewell@umich.edu
2382817Sksewell@umich.edu        DPRINTF(O3CPU, "Copying over register %i, had data %lli, "
2392817Sksewell@umich.edu                "now has data %lli.\n",
2402817Sksewell@umich.edu                renamed_reg, cpu->readIntReg(renamed_reg),
2412817Sksewell@umich.edu                tc->readIntReg(i));
2422817Sksewell@umich.edu
2432817Sksewell@umich.edu        cpu->setIntReg(renamed_reg, tc->readIntReg(i));
2442817Sksewell@umich.edu    }
2452817Sksewell@umich.edu
2462817Sksewell@umich.edu    // Then loop through the floating point registers.
2472817Sksewell@umich.edu    for (int i = 0; i < TheISA::NumFloatRegs; ++i) {
2482817Sksewell@umich.edu        renamed_reg = cpu->renameMap[tid].lookup(i + TheISA::FP_Base_DepTag);
2492817Sksewell@umich.edu        cpu->setFloatRegBits(renamed_reg,
2502817Sksewell@umich.edu                             tc->readFloatRegBits(i));
2512817Sksewell@umich.edu    }
2522817Sksewell@umich.edu
2532817Sksewell@umich.edu    // Copy the misc regs.
2542986Sgblack@eecs.umich.edu    TheISA::copyMiscRegs(tc, this);
2552817Sksewell@umich.edu
2565258Sksewell@umich.edu    // Then finally set the PC, the next PC, the nextNPC, the micropc, and the
2575258Sksewell@umich.edu    // next micropc.
2582817Sksewell@umich.edu    cpu->setPC(tc->readPC(), tid);
2592817Sksewell@umich.edu    cpu->setNextPC(tc->readNextPC(), tid);
2605258Sksewell@umich.edu    cpu->setNextNPC(tc->readNextNPC(), tid);
2615258Sksewell@umich.edu    cpu->setMicroPC(tc->readMicroPC(), tid);
2625258Sksewell@umich.edu    cpu->setNextMicroPC(tc->readNextMicroPC(), tid);
2632817Sksewell@umich.edu#if !FULL_SYSTEM
2642817Sksewell@umich.edu    this->thread->funcExeInst = tc->readFuncExeInst();
2652817Sksewell@umich.edu#endif
2662817Sksewell@umich.edu}
2672817Sksewell@umich.edu
2682817Sksewell@umich.edutemplate <class Impl>
2692817Sksewell@umich.eduvoid
2702817Sksewell@umich.eduO3ThreadContext<Impl>::clearArchRegs()
2712817Sksewell@umich.edu{}
2722817Sksewell@umich.edu
2732817Sksewell@umich.edutemplate <class Impl>
2742817Sksewell@umich.eduuint64_t
2752817Sksewell@umich.eduO3ThreadContext<Impl>::readIntReg(int reg_idx)
2762817Sksewell@umich.edu{
2776313Sgblack@eecs.umich.edu    reg_idx = cpu->isa[thread->threadId()].flattenIntIndex(reg_idx);
2785715Shsul@eecs.umich.edu    return cpu->readArchIntReg(reg_idx, thread->threadId());
2792817Sksewell@umich.edu}
2802817Sksewell@umich.edu
2812817Sksewell@umich.edutemplate <class Impl>
2822986Sgblack@eecs.umich.eduTheISA::FloatReg
2832817Sksewell@umich.eduO3ThreadContext<Impl>::readFloatReg(int reg_idx)
2842817Sksewell@umich.edu{
2856313Sgblack@eecs.umich.edu    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
2866314Sgblack@eecs.umich.edu    return cpu->readArchFloatReg(reg_idx, thread->threadId());
2872817Sksewell@umich.edu}
2882817Sksewell@umich.edu
2892817Sksewell@umich.edutemplate <class Impl>
2902986Sgblack@eecs.umich.eduTheISA::FloatRegBits
2912817Sksewell@umich.eduO3ThreadContext<Impl>::readFloatRegBits(int reg_idx)
2922817Sksewell@umich.edu{
2936313Sgblack@eecs.umich.edu    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
2945715Shsul@eecs.umich.edu    return cpu->readArchFloatRegInt(reg_idx, thread->threadId());
2952817Sksewell@umich.edu}
2962817Sksewell@umich.edu
2972817Sksewell@umich.edutemplate <class Impl>
2982817Sksewell@umich.eduvoid
2992817Sksewell@umich.eduO3ThreadContext<Impl>::setIntReg(int reg_idx, uint64_t val)
3002817Sksewell@umich.edu{
3016313Sgblack@eecs.umich.edu    reg_idx = cpu->isa[thread->threadId()].flattenIntIndex(reg_idx);
3025715Shsul@eecs.umich.edu    cpu->setArchIntReg(reg_idx, val, thread->threadId());
3032817Sksewell@umich.edu
3042817Sksewell@umich.edu    // Squash if we're not already in a state update mode.
3052817Sksewell@umich.edu    if (!thread->trapPending && !thread->inSyscall) {
3065715Shsul@eecs.umich.edu        cpu->squashFromTC(thread->threadId());
3072817Sksewell@umich.edu    }
3082817Sksewell@umich.edu}
3092817Sksewell@umich.edu
3102817Sksewell@umich.edutemplate <class Impl>
3112817Sksewell@umich.eduvoid
3122817Sksewell@umich.eduO3ThreadContext<Impl>::setFloatReg(int reg_idx, FloatReg val)
3132817Sksewell@umich.edu{
3146313Sgblack@eecs.umich.edu    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
3156314Sgblack@eecs.umich.edu    cpu->setArchFloatReg(reg_idx, val, thread->threadId());
3162817Sksewell@umich.edu
3172817Sksewell@umich.edu    if (!thread->trapPending && !thread->inSyscall) {
3185715Shsul@eecs.umich.edu        cpu->squashFromTC(thread->threadId());
3192817Sksewell@umich.edu    }
3202817Sksewell@umich.edu}
3212817Sksewell@umich.edu
3222817Sksewell@umich.edutemplate <class Impl>
3232817Sksewell@umich.eduvoid
3242817Sksewell@umich.eduO3ThreadContext<Impl>::setFloatRegBits(int reg_idx, FloatRegBits val)
3252817Sksewell@umich.edu{
3266313Sgblack@eecs.umich.edu    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
3275715Shsul@eecs.umich.edu    cpu->setArchFloatRegInt(reg_idx, val, thread->threadId());
3282817Sksewell@umich.edu
3292817Sksewell@umich.edu    // Squash if we're not already in a state update mode.
3302817Sksewell@umich.edu    if (!thread->trapPending && !thread->inSyscall) {
3315715Shsul@eecs.umich.edu        cpu->squashFromTC(thread->threadId());
3322817Sksewell@umich.edu    }
3332817Sksewell@umich.edu}
3342817Sksewell@umich.edu
3352817Sksewell@umich.edutemplate <class Impl>
3362817Sksewell@umich.eduvoid
3372817Sksewell@umich.eduO3ThreadContext<Impl>::setPC(uint64_t val)
3382817Sksewell@umich.edu{
3395715Shsul@eecs.umich.edu    cpu->setPC(val, thread->threadId());
3402817Sksewell@umich.edu
3412817Sksewell@umich.edu    // Squash if we're not already in a state update mode.
3422817Sksewell@umich.edu    if (!thread->trapPending && !thread->inSyscall) {
3435715Shsul@eecs.umich.edu        cpu->squashFromTC(thread->threadId());
3442817Sksewell@umich.edu    }
3452817Sksewell@umich.edu}
3462817Sksewell@umich.edu
3472817Sksewell@umich.edutemplate <class Impl>
3482817Sksewell@umich.eduvoid
3492817Sksewell@umich.eduO3ThreadContext<Impl>::setNextPC(uint64_t val)
3502817Sksewell@umich.edu{
3515715Shsul@eecs.umich.edu    cpu->setNextPC(val, thread->threadId());
3522817Sksewell@umich.edu
3532817Sksewell@umich.edu    // Squash if we're not already in a state update mode.
3542817Sksewell@umich.edu    if (!thread->trapPending && !thread->inSyscall) {
3555715Shsul@eecs.umich.edu        cpu->squashFromTC(thread->threadId());
3562817Sksewell@umich.edu    }
3572817Sksewell@umich.edu}
3582817Sksewell@umich.edu
3592817Sksewell@umich.edutemplate <class Impl>
3603468Sgblack@eecs.umich.eduvoid
3615258Sksewell@umich.eduO3ThreadContext<Impl>::setMicroPC(uint64_t val)
3625258Sksewell@umich.edu{
3635715Shsul@eecs.umich.edu    cpu->setMicroPC(val, thread->threadId());
3645258Sksewell@umich.edu
3655258Sksewell@umich.edu    // Squash if we're not already in a state update mode.
3665258Sksewell@umich.edu    if (!thread->trapPending && !thread->inSyscall) {
3675715Shsul@eecs.umich.edu        cpu->squashFromTC(thread->threadId());
3685258Sksewell@umich.edu    }
3695258Sksewell@umich.edu}
3705258Sksewell@umich.edu
3715258Sksewell@umich.edutemplate <class Impl>
3725258Sksewell@umich.eduvoid
3735258Sksewell@umich.eduO3ThreadContext<Impl>::setNextMicroPC(uint64_t val)
3745258Sksewell@umich.edu{
3755715Shsul@eecs.umich.edu    cpu->setNextMicroPC(val, thread->threadId());
3765258Sksewell@umich.edu
3775258Sksewell@umich.edu    // Squash if we're not already in a state update mode.
3785258Sksewell@umich.edu    if (!thread->trapPending && !thread->inSyscall) {
3795715Shsul@eecs.umich.edu        cpu->squashFromTC(thread->threadId());
3805258Sksewell@umich.edu    }
3815258Sksewell@umich.edu}
3825258Sksewell@umich.edu
3835258Sksewell@umich.edutemplate <class Impl>
3846313Sgblack@eecs.umich.eduint
3856313Sgblack@eecs.umich.eduO3ThreadContext<Impl>::flattenIntIndex(int reg)
3866313Sgblack@eecs.umich.edu{
3876313Sgblack@eecs.umich.edu    return cpu->isa[thread->threadId()].flattenIntIndex(reg);
3886313Sgblack@eecs.umich.edu}
3896313Sgblack@eecs.umich.edu
3906313Sgblack@eecs.umich.edutemplate <class Impl>
3916313Sgblack@eecs.umich.eduint
3926313Sgblack@eecs.umich.eduO3ThreadContext<Impl>::flattenFloatIndex(int reg)
3936313Sgblack@eecs.umich.edu{
3946313Sgblack@eecs.umich.edu    return cpu->isa[thread->threadId()].flattenFloatIndex(reg);
3956313Sgblack@eecs.umich.edu}
3966313Sgblack@eecs.umich.edu
3976313Sgblack@eecs.umich.edutemplate <class Impl>
3985258Sksewell@umich.eduvoid
3994172Ssaidi@eecs.umich.eduO3ThreadContext<Impl>::setMiscRegNoEffect(int misc_reg, const MiscReg &val)
4002817Sksewell@umich.edu{
4015715Shsul@eecs.umich.edu    cpu->setMiscRegNoEffect(misc_reg, val, thread->threadId());
4022817Sksewell@umich.edu
4032817Sksewell@umich.edu    // Squash if we're not already in a state update mode.
4042817Sksewell@umich.edu    if (!thread->trapPending && !thread->inSyscall) {
4055715Shsul@eecs.umich.edu        cpu->squashFromTC(thread->threadId());
4062817Sksewell@umich.edu    }
4072817Sksewell@umich.edu}
4082817Sksewell@umich.edu
4092817Sksewell@umich.edutemplate <class Impl>
4103468Sgblack@eecs.umich.eduvoid
4114172Ssaidi@eecs.umich.eduO3ThreadContext<Impl>::setMiscReg(int misc_reg,
4122817Sksewell@umich.edu                                                const MiscReg &val)
4132817Sksewell@umich.edu{
4145715Shsul@eecs.umich.edu    cpu->setMiscReg(misc_reg, val, thread->threadId());
4152817Sksewell@umich.edu
4162817Sksewell@umich.edu    // Squash if we're not already in a state update mode.
4172817Sksewell@umich.edu    if (!thread->trapPending && !thread->inSyscall) {
4185715Shsul@eecs.umich.edu        cpu->squashFromTC(thread->threadId());
4192817Sksewell@umich.edu    }
4202817Sksewell@umich.edu}
4212817Sksewell@umich.edu
422