simple_thread.hh revision 9426
12SN/A/*
28733Sgeoffrey.blake@arm.com * Copyright (c) 2011 ARM Limited
38733Sgeoffrey.blake@arm.com * All rights reserved
48733Sgeoffrey.blake@arm.com *
58733Sgeoffrey.blake@arm.com * The license below extends only to copyright in the software and shall
68733Sgeoffrey.blake@arm.com * not be construed as granting a license to any other intellectual
78733Sgeoffrey.blake@arm.com * property including but not limited to intellectual property relating
88733Sgeoffrey.blake@arm.com * to a hardware implementation of the functionality of the software
98733Sgeoffrey.blake@arm.com * licensed hereunder.  You may use the software subject to the license
108733Sgeoffrey.blake@arm.com * terms below provided that you ensure that this notice is replicated
118733Sgeoffrey.blake@arm.com * unmodified and in its entirety in all distributions of the software,
128733Sgeoffrey.blake@arm.com * modified or unmodified, in source code or in binary form.
138733Sgeoffrey.blake@arm.com *
142188SN/A * Copyright (c) 2001-2006 The Regents of The University of Michigan
152SN/A * All rights reserved.
162SN/A *
172SN/A * Redistribution and use in source and binary forms, with or without
182SN/A * modification, are permitted provided that the following conditions are
192SN/A * met: redistributions of source code must retain the above copyright
202SN/A * notice, this list of conditions and the following disclaimer;
212SN/A * redistributions in binary form must reproduce the above copyright
222SN/A * notice, this list of conditions and the following disclaimer in the
232SN/A * documentation and/or other materials provided with the distribution;
242SN/A * neither the name of the copyright holders nor the names of its
252SN/A * contributors may be used to endorse or promote products derived from
262SN/A * this software without specific prior written permission.
272SN/A *
282SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
292SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
302SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
312SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
332SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
342SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
352SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
362SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
372SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
382SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392665SN/A *
402665SN/A * Authors: Steve Reinhardt
412665SN/A *          Nathan Binkert
422SN/A */
432SN/A
442683Sktlim@umich.edu#ifndef __CPU_SIMPLE_THREAD_HH__
452683Sktlim@umich.edu#define __CPU_SIMPLE_THREAD_HH__
462SN/A
479020Sgblack@eecs.umich.edu#include "arch/decoder.hh"
486313Sgblack@eecs.umich.edu#include "arch/isa.hh"
492190SN/A#include "arch/isa_traits.hh"
506329Sgblack@eecs.umich.edu#include "arch/registers.hh"
514997Sgblack@eecs.umich.edu#include "arch/tlb.hh"
526316Sgblack@eecs.umich.edu#include "arch/types.hh"
536216Snate@binkert.org#include "base/types.hh"
546658Snate@binkert.org#include "config/the_isa.hh"
552680SN/A#include "cpu/thread_context.hh"
562683Sktlim@umich.edu#include "cpu/thread_state.hh"
578232Snate@binkert.org#include "debug/FloatRegs.hh"
588232Snate@binkert.org#include "debug/IntRegs.hh"
598777Sgblack@eecs.umich.edu#include "mem/page_table.hh"
602395SN/A#include "mem/request.hh"
612190SN/A#include "sim/byteswap.hh"
622188SN/A#include "sim/eventq.hh"
638777Sgblack@eecs.umich.edu#include "sim/process.hh"
64217SN/A#include "sim/serialize.hh"
658777Sgblack@eecs.umich.edu#include "sim/system.hh"
662SN/A
672SN/Aclass BaseCPU;
688887Sgeoffrey.blake@arm.comclass CheckerCPU;
691070SN/A
701917SN/Aclass FunctionProfile;
711917SN/Aclass ProfileNode;
722521SN/A
733548Sgblack@eecs.umich.edunamespace TheISA {
743548Sgblack@eecs.umich.edu    namespace Kernel {
753548Sgblack@eecs.umich.edu        class Statistics;
768902Sandreas.hansson@arm.com    }
778902Sandreas.hansson@arm.com}
782330SN/A
792683Sktlim@umich.edu/**
802683Sktlim@umich.edu * The SimpleThread object provides a combination of the ThreadState
812683Sktlim@umich.edu * object and the ThreadContext interface. It implements the
822683Sktlim@umich.edu * ThreadContext interface so that a ProxyThreadContext class can be
832683Sktlim@umich.edu * made using SimpleThread as the template parameter (see
842683Sktlim@umich.edu * thread_context.hh). It adds to the ThreadState object by adding all
852683Sktlim@umich.edu * the objects needed for simple functional execution, including a
862683Sktlim@umich.edu * simple architectural register file, and pointers to the ITB and DTB
872683Sktlim@umich.edu * in full system mode. For CPU models that do not need more advanced
882683Sktlim@umich.edu * ways to hold state (i.e. a separate physical register file, or
892683Sktlim@umich.edu * separate fetch and commit PC's), this SimpleThread class provides
902683Sktlim@umich.edu * all the necessary state for full architecture-level functional
912683Sktlim@umich.edu * simulation.  See the AtomicSimpleCPU or TimingSimpleCPU for
922683Sktlim@umich.edu * examples.
932683Sktlim@umich.edu */
942SN/A
952683Sktlim@umich.educlass SimpleThread : public ThreadState
962SN/A{
972107SN/A  protected:
982107SN/A    typedef TheISA::MachInst MachInst;
992159SN/A    typedef TheISA::MiscReg MiscReg;
1002455SN/A    typedef TheISA::FloatReg FloatReg;
1012455SN/A    typedef TheISA::FloatRegBits FloatRegBits;
1022SN/A  public:
1032680SN/A    typedef ThreadContext::Status Status;
1042SN/A
1052190SN/A  protected:
1066315Sgblack@eecs.umich.edu    union {
1076315Sgblack@eecs.umich.edu        FloatReg f[TheISA::NumFloatRegs];
1086315Sgblack@eecs.umich.edu        FloatRegBits i[TheISA::NumFloatRegs];
1096315Sgblack@eecs.umich.edu    } floatRegs;
1106316Sgblack@eecs.umich.edu    TheISA::IntReg intRegs[TheISA::NumIntRegs];
1119384SAndreas.Sandberg@arm.com    TheISA::ISA *const isa;    // one "instance" of the current ISA.
1122SN/A
1137720Sgblack@eecs.umich.edu    TheISA::PCState _pcState;
1146324Sgblack@eecs.umich.edu
1157597Sminkyu.jeong@arm.com    /** Did this instruction execute or is it predicated false */
1167597Sminkyu.jeong@arm.com    bool predicate;
1177597Sminkyu.jeong@arm.com
1182190SN/A  public:
1198357Sksewell@umich.edu    std::string name() const
1208357Sksewell@umich.edu    {
1218735Sandreas.hanson@arm.com        return csprintf("%s.[tid:%i]", baseCpu->name(), tc->threadId());
1228357Sksewell@umich.edu    }
1238357Sksewell@umich.edu
1242683Sktlim@umich.edu    ProxyThreadContext<SimpleThread> *tc;
1252188SN/A
1262378SN/A    System *system;
1272400SN/A
1286022Sgblack@eecs.umich.edu    TheISA::TLB *itb;
1296022Sgblack@eecs.umich.edu    TheISA::TLB *dtb;
1302SN/A
1319020Sgblack@eecs.umich.edu    TheISA::Decoder decoder;
1328541Sgblack@eecs.umich.edu
1332683Sktlim@umich.edu    // constructor: initialize SimpleThread from given process structure
1348793Sgblack@eecs.umich.edu    // FS
1352683Sktlim@umich.edu    SimpleThread(BaseCPU *_cpu, int _thread_num, System *_system,
1369384SAndreas.Sandberg@arm.com                 TheISA::TLB *_itb, TheISA::TLB *_dtb, TheISA::ISA *_isa,
1372683Sktlim@umich.edu                 bool use_kernel_stats = true);
1388793Sgblack@eecs.umich.edu    // SE
1398820Sgblack@eecs.umich.edu    SimpleThread(BaseCPU *_cpu, int _thread_num, System *_system,
1409384SAndreas.Sandberg@arm.com                 Process *_process, TheISA::TLB *_itb, TheISA::TLB *_dtb,
1419384SAndreas.Sandberg@arm.com                 TheISA::ISA *_isa);
1422862Sktlim@umich.edu
1432864Sktlim@umich.edu    SimpleThread();
1442862Sktlim@umich.edu
1452683Sktlim@umich.edu    virtual ~SimpleThread();
1462SN/A
1472680SN/A    virtual void takeOverFrom(ThreadContext *oldContext);
148180SN/A
1492SN/A    void regStats(const std::string &name);
1502SN/A
1512864Sktlim@umich.edu    void copyTC(ThreadContext *context);
1522864Sktlim@umich.edu
1532862Sktlim@umich.edu    void copyState(ThreadContext *oldContext);
1542862Sktlim@umich.edu
155217SN/A    void serialize(std::ostream &os);
156237SN/A    void unserialize(Checkpoint *cp, const std::string &section);
157217SN/A
1582683Sktlim@umich.edu    /***************************************************************
1592683Sktlim@umich.edu     *  SimpleThread functions to provide CPU with access to various
1605891Sgblack@eecs.umich.edu     *  state.
1612683Sktlim@umich.edu     **************************************************************/
1622190SN/A
1632683Sktlim@umich.edu    /** Returns the pointer to this SimpleThread's ThreadContext. Used
1642683Sktlim@umich.edu     *  when a ThreadContext must be passed to objects outside of the
1652683Sktlim@umich.edu     *  CPU.
1662683Sktlim@umich.edu     */
1672680SN/A    ThreadContext *getTC() { return tc; }
1682190SN/A
1695358Sgblack@eecs.umich.edu    void demapPage(Addr vaddr, uint64_t asn)
1705358Sgblack@eecs.umich.edu    {
1715358Sgblack@eecs.umich.edu        itb->demapPage(vaddr, asn);
1725358Sgblack@eecs.umich.edu        dtb->demapPage(vaddr, asn);
1735358Sgblack@eecs.umich.edu    }
1745358Sgblack@eecs.umich.edu
1755358Sgblack@eecs.umich.edu    void demapInstPage(Addr vaddr, uint64_t asn)
1765358Sgblack@eecs.umich.edu    {
1775358Sgblack@eecs.umich.edu        itb->demapPage(vaddr, asn);
1785358Sgblack@eecs.umich.edu    }
1795358Sgblack@eecs.umich.edu
1805358Sgblack@eecs.umich.edu    void demapDataPage(Addr vaddr, uint64_t asn)
1815358Sgblack@eecs.umich.edu    {
1825358Sgblack@eecs.umich.edu        dtb->demapPage(vaddr, asn);
1835358Sgblack@eecs.umich.edu    }
1845358Sgblack@eecs.umich.edu
1852683Sktlim@umich.edu    void dumpFuncProfile();
1862521SN/A
1875702Ssaidi@eecs.umich.edu    Fault hwrei();
1885702Ssaidi@eecs.umich.edu
1895702Ssaidi@eecs.umich.edu    bool simPalCheck(int palFunc);
1905702Ssaidi@eecs.umich.edu
1912683Sktlim@umich.edu    /*******************************************
1922683Sktlim@umich.edu     * ThreadContext interface functions.
1932683Sktlim@umich.edu     ******************************************/
1942683Sktlim@umich.edu
1958735Sandreas.hanson@arm.com    BaseCPU *getCpuPtr() { return baseCpu; }
1962683Sktlim@umich.edu
1976022Sgblack@eecs.umich.edu    TheISA::TLB *getITBPtr() { return itb; }
1982683Sktlim@umich.edu
1996022Sgblack@eecs.umich.edu    TheISA::TLB *getDTBPtr() { return dtb; }
2002683Sktlim@umich.edu
2018887Sgeoffrey.blake@arm.com    CheckerCPU *getCheckerCpuPtr() { return NULL; }
2028733Sgeoffrey.blake@arm.com
2039020Sgblack@eecs.umich.edu    TheISA::Decoder *getDecoderPtr() { return &decoder; }
2048541Sgblack@eecs.umich.edu
2054997Sgblack@eecs.umich.edu    System *getSystemPtr() { return system; }
2064997Sgblack@eecs.umich.edu
2072683Sktlim@umich.edu    Status status() const { return _status; }
2082683Sktlim@umich.edu
2092683Sktlim@umich.edu    void setStatus(Status newStatus) { _status = newStatus; }
2102683Sktlim@umich.edu
2112683Sktlim@umich.edu    /// Set the status to Active.  Optional delay indicates number of
2122683Sktlim@umich.edu    /// cycles to wait before beginning execution.
2139180Sandreas.hansson@arm.com    void activate(Cycles delay = Cycles(1));
2142683Sktlim@umich.edu
2152683Sktlim@umich.edu    /// Set the status to Suspended.
2162683Sktlim@umich.edu    void suspend();
2172683Sktlim@umich.edu
2182683Sktlim@umich.edu    /// Set the status to Halted.
2192683Sktlim@umich.edu    void halt();
2202683Sktlim@umich.edu
2212SN/A    virtual bool misspeculating();
2222SN/A
2232683Sktlim@umich.edu    void copyArchRegs(ThreadContext *tc);
2242190SN/A
2256315Sgblack@eecs.umich.edu    void clearArchRegs()
2266315Sgblack@eecs.umich.edu    {
2277720Sgblack@eecs.umich.edu        _pcState = 0;
2286316Sgblack@eecs.umich.edu        memset(intRegs, 0, sizeof(intRegs));
2296315Sgblack@eecs.umich.edu        memset(floatRegs.i, 0, sizeof(floatRegs.i));
2309384SAndreas.Sandberg@arm.com        isa->clear();
2316315Sgblack@eecs.umich.edu    }
2322190SN/A
2332SN/A    //
2342SN/A    // New accessors for new decoder.
2352SN/A    //
2362SN/A    uint64_t readIntReg(int reg_idx)
2372SN/A    {
2389384SAndreas.Sandberg@arm.com        int flatIndex = isa->flattenIntIndex(reg_idx);
2396323Sgblack@eecs.umich.edu        assert(flatIndex < TheISA::NumIntRegs);
2409426SAndreas.Sandberg@ARM.com        uint64_t regVal(readIntRegFlat(flatIndex));
2417601Sminkyu.jeong@arm.com        DPRINTF(IntRegs, "Reading int reg %d (%d) as %#x.\n",
2427601Sminkyu.jeong@arm.com                reg_idx, flatIndex, regVal);
2436418Sgblack@eecs.umich.edu        return regVal;
2442SN/A    }
2452SN/A
2462455SN/A    FloatReg readFloatReg(int reg_idx)
2472SN/A    {
2489384SAndreas.Sandberg@arm.com        int flatIndex = isa->flattenFloatIndex(reg_idx);
2496323Sgblack@eecs.umich.edu        assert(flatIndex < TheISA::NumFloatRegs);
2509426SAndreas.Sandberg@ARM.com        FloatReg regVal(readFloatRegFlat(flatIndex));
2517601Sminkyu.jeong@arm.com        DPRINTF(FloatRegs, "Reading float reg %d (%d) as %f, %#x.\n",
2527601Sminkyu.jeong@arm.com                reg_idx, flatIndex, regVal, floatRegs.i[flatIndex]);
2537341Sgblack@eecs.umich.edu        return regVal;
2542SN/A    }
2552SN/A
2562455SN/A    FloatRegBits readFloatRegBits(int reg_idx)
2572455SN/A    {
2589384SAndreas.Sandberg@arm.com        int flatIndex = isa->flattenFloatIndex(reg_idx);
2596323Sgblack@eecs.umich.edu        assert(flatIndex < TheISA::NumFloatRegs);
2609426SAndreas.Sandberg@ARM.com        FloatRegBits regVal(readFloatRegBitsFlat(flatIndex));
2617601Sminkyu.jeong@arm.com        DPRINTF(FloatRegs, "Reading float reg %d (%d) bits as %#x, %f.\n",
2627601Sminkyu.jeong@arm.com                reg_idx, flatIndex, regVal, floatRegs.f[flatIndex]);
2637341Sgblack@eecs.umich.edu        return regVal;
2642SN/A    }
2652SN/A
2662SN/A    void setIntReg(int reg_idx, uint64_t val)
2672SN/A    {
2689384SAndreas.Sandberg@arm.com        int flatIndex = isa->flattenIntIndex(reg_idx);
2696323Sgblack@eecs.umich.edu        assert(flatIndex < TheISA::NumIntRegs);
2707601Sminkyu.jeong@arm.com        DPRINTF(IntRegs, "Setting int reg %d (%d) to %#x.\n",
2717601Sminkyu.jeong@arm.com                reg_idx, flatIndex, val);
2729426SAndreas.Sandberg@ARM.com        setIntRegFlat(flatIndex, val);
2732SN/A    }
2742SN/A
2752455SN/A    void setFloatReg(int reg_idx, FloatReg val)
2762SN/A    {
2779384SAndreas.Sandberg@arm.com        int flatIndex = isa->flattenFloatIndex(reg_idx);
2786323Sgblack@eecs.umich.edu        assert(flatIndex < TheISA::NumFloatRegs);
2799426SAndreas.Sandberg@ARM.com        setFloatRegFlat(flatIndex, val);
2807601Sminkyu.jeong@arm.com        DPRINTF(FloatRegs, "Setting float reg %d (%d) to %f, %#x.\n",
2817601Sminkyu.jeong@arm.com                reg_idx, flatIndex, val, floatRegs.i[flatIndex]);
2822SN/A    }
2832SN/A
2842455SN/A    void setFloatRegBits(int reg_idx, FloatRegBits val)
2852455SN/A    {
2869384SAndreas.Sandberg@arm.com        int flatIndex = isa->flattenFloatIndex(reg_idx);
2876323Sgblack@eecs.umich.edu        assert(flatIndex < TheISA::NumFloatRegs);
2888733Sgeoffrey.blake@arm.com        // XXX: Fix array out of bounds compiler error for gem5.fast
2898733Sgeoffrey.blake@arm.com        // when checkercpu enabled
2908733Sgeoffrey.blake@arm.com        if (flatIndex < TheISA::NumFloatRegs)
2919426SAndreas.Sandberg@ARM.com            setFloatRegBitsFlat(flatIndex, val);
2927601Sminkyu.jeong@arm.com        DPRINTF(FloatRegs, "Setting float reg %d (%d) bits to %#x, %#f.\n",
2937601Sminkyu.jeong@arm.com                reg_idx, flatIndex, val, floatRegs.f[flatIndex]);
2942SN/A    }
2952SN/A
2967720Sgblack@eecs.umich.edu    TheISA::PCState
2977720Sgblack@eecs.umich.edu    pcState()
2982SN/A    {
2997720Sgblack@eecs.umich.edu        return _pcState;
3002SN/A    }
3012SN/A
3027720Sgblack@eecs.umich.edu    void
3037720Sgblack@eecs.umich.edu    pcState(const TheISA::PCState &val)
3042190SN/A    {
3057720Sgblack@eecs.umich.edu        _pcState = val;
3062190SN/A    }
3072190SN/A
3088733Sgeoffrey.blake@arm.com    void
3098733Sgeoffrey.blake@arm.com    pcStateNoRecord(const TheISA::PCState &val)
3108733Sgeoffrey.blake@arm.com    {
3118733Sgeoffrey.blake@arm.com        _pcState = val;
3128733Sgeoffrey.blake@arm.com    }
3138733Sgeoffrey.blake@arm.com
3147720Sgblack@eecs.umich.edu    Addr
3157720Sgblack@eecs.umich.edu    instAddr()
3163276Sgblack@eecs.umich.edu    {
3177720Sgblack@eecs.umich.edu        return _pcState.instAddr();
3183276Sgblack@eecs.umich.edu    }
3193276Sgblack@eecs.umich.edu
3207720Sgblack@eecs.umich.edu    Addr
3217720Sgblack@eecs.umich.edu    nextInstAddr()
3223276Sgblack@eecs.umich.edu    {
3237720Sgblack@eecs.umich.edu        return _pcState.nextInstAddr();
3243276Sgblack@eecs.umich.edu    }
3253276Sgblack@eecs.umich.edu
3267720Sgblack@eecs.umich.edu    MicroPC
3277720Sgblack@eecs.umich.edu    microPC()
3282190SN/A    {
3297720Sgblack@eecs.umich.edu        return _pcState.microPC();
3302251SN/A    }
3312251SN/A
3327597Sminkyu.jeong@arm.com    bool readPredicate()
3337597Sminkyu.jeong@arm.com    {
3347597Sminkyu.jeong@arm.com        return predicate;
3357597Sminkyu.jeong@arm.com    }
3367597Sminkyu.jeong@arm.com
3377597Sminkyu.jeong@arm.com    void setPredicate(bool val)
3387597Sminkyu.jeong@arm.com    {
3397597Sminkyu.jeong@arm.com        predicate = val;
3407597Sminkyu.jeong@arm.com    }
3417597Sminkyu.jeong@arm.com
3426221Snate@binkert.org    MiscReg
3436221Snate@binkert.org    readMiscRegNoEffect(int misc_reg, ThreadID tid = 0)
3444172Ssaidi@eecs.umich.edu    {
3459384SAndreas.Sandberg@arm.com        return isa->readMiscRegNoEffect(misc_reg);
3464172Ssaidi@eecs.umich.edu    }
3474172Ssaidi@eecs.umich.edu
3486221Snate@binkert.org    MiscReg
3496221Snate@binkert.org    readMiscReg(int misc_reg, ThreadID tid = 0)
3502SN/A    {
3519384SAndreas.Sandberg@arm.com        return isa->readMiscReg(misc_reg, tc);
3522SN/A    }
3532SN/A
3546221Snate@binkert.org    void
3556221Snate@binkert.org    setMiscRegNoEffect(int misc_reg, const MiscReg &val, ThreadID tid = 0)
3562SN/A    {
3579384SAndreas.Sandberg@arm.com        return isa->setMiscRegNoEffect(misc_reg, val);
3582SN/A    }
3592SN/A
3606221Snate@binkert.org    void
3616221Snate@binkert.org    setMiscReg(int misc_reg, const MiscReg &val, ThreadID tid = 0)
3622SN/A    {
3639384SAndreas.Sandberg@arm.com        return isa->setMiscReg(misc_reg, val, tc);
3646313Sgblack@eecs.umich.edu    }
3656313Sgblack@eecs.umich.edu
3666313Sgblack@eecs.umich.edu    int
3676313Sgblack@eecs.umich.edu    flattenIntIndex(int reg)
3686313Sgblack@eecs.umich.edu    {
3699384SAndreas.Sandberg@arm.com        return isa->flattenIntIndex(reg);
3706313Sgblack@eecs.umich.edu    }
3716313Sgblack@eecs.umich.edu
3726313Sgblack@eecs.umich.edu    int
3736313Sgblack@eecs.umich.edu    flattenFloatIndex(int reg)
3746313Sgblack@eecs.umich.edu    {
3759384SAndreas.Sandberg@arm.com        return isa->flattenFloatIndex(reg);
3762SN/A    }
3772SN/A
3782190SN/A    unsigned readStCondFailures() { return storeCondFailures; }
3792190SN/A
3802190SN/A    void setStCondFailures(unsigned sc_failures)
3812190SN/A    { storeCondFailures = sc_failures; }
3822190SN/A
3832561SN/A    void syscall(int64_t callnum)
3842SN/A    {
3852680SN/A        process->syscall(callnum, tc);
3862SN/A    }
3879426SAndreas.Sandberg@ARM.com
3889426SAndreas.Sandberg@ARM.com    uint64_t readIntRegFlat(int idx) { return intRegs[idx]; }
3899426SAndreas.Sandberg@ARM.com    void setIntRegFlat(int idx, uint64_t val) { intRegs[idx] = val; }
3909426SAndreas.Sandberg@ARM.com
3919426SAndreas.Sandberg@ARM.com    FloatReg readFloatRegFlat(int idx) { return floatRegs.f[idx]; }
3929426SAndreas.Sandberg@ARM.com    void setFloatRegFlat(int idx, FloatReg val) { floatRegs.f[idx] = val; }
3939426SAndreas.Sandberg@ARM.com
3949426SAndreas.Sandberg@ARM.com    FloatRegBits readFloatRegBitsFlat(int idx) { return floatRegs.i[idx]; }
3959426SAndreas.Sandberg@ARM.com    void setFloatRegBitsFlat(int idx, FloatRegBits val) {
3969426SAndreas.Sandberg@ARM.com        floatRegs.i[idx] = val;
3979426SAndreas.Sandberg@ARM.com    }
3989426SAndreas.Sandberg@ARM.com
3992SN/A};
4002SN/A
4012SN/A
4022SN/A// for non-speculative execution context, spec_mode is always false
4032SN/Ainline bool
4042683Sktlim@umich.eduSimpleThread::misspeculating()
4052SN/A{
4062SN/A    return false;
4072SN/A}
4082SN/A
4092190SN/A#endif // __CPU_CPU_EXEC_CONTEXT_HH__
410