thread_context.hh revision 13610
12SN/A/*
213610Sgiacomo.gabrielli@arm.com * Copyright (c) 2011-2012, 2016-2018 ARM Limited
39920Syasuko.eckert@amd.com * Copyright (c) 2013 Advanced Micro Devices, Inc.
48733Sgeoffrey.blake@arm.com * All rights reserved
58733Sgeoffrey.blake@arm.com *
68733Sgeoffrey.blake@arm.com * The license below extends only to copyright in the software and shall
78733Sgeoffrey.blake@arm.com * not be construed as granting a license to any other intellectual
88733Sgeoffrey.blake@arm.com * property including but not limited to intellectual property relating
98733Sgeoffrey.blake@arm.com * to a hardware implementation of the functionality of the software
108733Sgeoffrey.blake@arm.com * licensed hereunder.  You may use the software subject to the license
118733Sgeoffrey.blake@arm.com * terms below provided that you ensure that this notice is replicated
128733Sgeoffrey.blake@arm.com * unmodified and in its entirety in all distributions of the software,
138733Sgeoffrey.blake@arm.com * modified or unmodified, in source code or in binary form.
148733Sgeoffrey.blake@arm.com *
152190SN/A * Copyright (c) 2006 The Regents of The University of Michigan
162SN/A * All rights reserved.
172SN/A *
182SN/A * Redistribution and use in source and binary forms, with or without
192SN/A * modification, are permitted provided that the following conditions are
202SN/A * met: redistributions of source code must retain the above copyright
212SN/A * notice, this list of conditions and the following disclaimer;
222SN/A * redistributions in binary form must reproduce the above copyright
232SN/A * notice, this list of conditions and the following disclaimer in the
242SN/A * documentation and/or other materials provided with the distribution;
252SN/A * neither the name of the copyright holders nor the names of its
262SN/A * contributors may be used to endorse or promote products derived from
272SN/A * this software without specific prior written permission.
282SN/A *
292SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
302SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
312SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
322SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
332SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
342SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
352SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
362SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
372SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
382SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
392SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
402665SN/A *
412665SN/A * Authors: Kevin Lim
422SN/A */
432SN/A
442680Sktlim@umich.edu#ifndef __CPU_THREAD_CONTEXT_HH__
452680Sktlim@umich.edu#define __CPU_THREAD_CONTEXT_HH__
462SN/A
478229Snate@binkert.org#include <iostream>
487680Sgblack@eecs.umich.edu#include <string>
497680Sgblack@eecs.umich.edu
506329Sgblack@eecs.umich.edu#include "arch/registers.hh"
513453Sgblack@eecs.umich.edu#include "arch/types.hh"
526216Snate@binkert.org#include "base/types.hh"
536658Snate@binkert.org#include "config/the_isa.hh"
5412104Snathanael.premillieu@arm.com#include "cpu/reg_class.hh"
552SN/A
562190SN/A// @todo: Figure out a more architecture independent way to obtain the ITB and
572190SN/A// DTB pointers.
583453Sgblack@eecs.umich.edunamespace TheISA
593453Sgblack@eecs.umich.edu{
609020Sgblack@eecs.umich.edu    class Decoder;
613453Sgblack@eecs.umich.edu}
622190SN/Aclass BaseCPU;
6312406Sgabeblack@google.comclass BaseTLB;
648887Sgeoffrey.blake@arm.comclass CheckerCPU;
657680Sgblack@eecs.umich.educlass Checkpoint;
662313SN/Aclass EndQuiesceEvent;
678706Sandreas.hansson@arm.comclass SETranslatingPortProxy;
688706Sandreas.hansson@arm.comclass FSTranslatingPortProxy;
698706Sandreas.hansson@arm.comclass PortProxy;
702190SN/Aclass Process;
712190SN/Aclass System;
723548Sgblack@eecs.umich.edunamespace TheISA {
733548Sgblack@eecs.umich.edu    namespace Kernel {
743548Sgblack@eecs.umich.edu        class Statistics;
758902Sandreas.hansson@arm.com    }
768902Sandreas.hansson@arm.com}
772SN/A
782680Sktlim@umich.edu/**
792680Sktlim@umich.edu * ThreadContext is the external interface to all thread state for
802680Sktlim@umich.edu * anything outside of the CPU. It provides all accessor methods to
812680Sktlim@umich.edu * state that might be needed by external objects, ranging from
822680Sktlim@umich.edu * register values to things such as kernel stats. It is an abstract
832680Sktlim@umich.edu * base class; the CPU can create its own ThreadContext by either
842680Sktlim@umich.edu * deriving from it, or using the templated ProxyThreadContext.
852680Sktlim@umich.edu *
862680Sktlim@umich.edu * The ThreadContext is slightly different than the ExecContext.  The
872680Sktlim@umich.edu * ThreadContext provides access to an individual thread's state; an
882680Sktlim@umich.edu * ExecContext provides ISA access to the CPU (meaning it is
892682Sktlim@umich.edu * implicitly multithreaded on SMT systems).  Additionally the
902680Sktlim@umich.edu * ThreadState is an abstract class that exactly defines the
912680Sktlim@umich.edu * interface; the ExecContext is a more implicit interface that must
922680Sktlim@umich.edu * be implemented so that the ISA can access whatever state it needs.
932680Sktlim@umich.edu */
942680Sktlim@umich.educlass ThreadContext
952SN/A{
962107SN/A  protected:
972107SN/A    typedef TheISA::MachInst MachInst;
989920Syasuko.eckert@amd.com    typedef TheISA::CCReg CCReg;
9912109SRekai.GonzalezAlberquilla@arm.com    using VecRegContainer = TheISA::VecRegContainer;
10012109SRekai.GonzalezAlberquilla@arm.com    using VecElem = TheISA::VecElem;
10113610Sgiacomo.gabrielli@arm.com    using VecPredRegContainer = TheISA::VecPredRegContainer;
10213610Sgiacomo.gabrielli@arm.com
1032SN/A  public:
1046029Ssteve.reinhardt@amd.com
105246SN/A    enum Status
106246SN/A    {
107246SN/A        /// Running.  Instructions should be executed only when
108246SN/A        /// the context is in this state.
109246SN/A        Active,
110246SN/A
111246SN/A        /// Temporarily inactive.  Entered while waiting for
1122190SN/A        /// synchronization, etc.
113246SN/A        Suspended,
114246SN/A
115246SN/A        /// Permanently shut down.  Entered when target executes
116246SN/A        /// m5exit pseudo-instruction.  When all contexts enter
117246SN/A        /// this state, the simulation will terminate.
118246SN/A        Halted
119246SN/A    };
1202SN/A
1212680Sktlim@umich.edu    virtual ~ThreadContext() { };
1222423SN/A
1232190SN/A    virtual BaseCPU *getCpuPtr() = 0;
124180SN/A
12510110Sandreas.hansson@arm.com    virtual int cpuId() const = 0;
1262190SN/A
12710190Sakash.bagdia@arm.com    virtual uint32_t socketId() const = 0;
12810190Sakash.bagdia@arm.com
12910110Sandreas.hansson@arm.com    virtual int threadId() const = 0;
1305715Shsul@eecs.umich.edu
1315715Shsul@eecs.umich.edu    virtual void setThreadId(int id) = 0;
1325714Shsul@eecs.umich.edu
13310110Sandreas.hansson@arm.com    virtual int contextId() const = 0;
1345714Shsul@eecs.umich.edu
1355714Shsul@eecs.umich.edu    virtual void setContextId(int id) = 0;
1365714Shsul@eecs.umich.edu
13712406Sgabeblack@google.com    virtual BaseTLB *getITBPtr() = 0;
1382190SN/A
13912406Sgabeblack@google.com    virtual BaseTLB *getDTBPtr() = 0;
1402521SN/A
1418887Sgeoffrey.blake@arm.com    virtual CheckerCPU *getCheckerCpuPtr() = 0;
1428733Sgeoffrey.blake@arm.com
1439020Sgblack@eecs.umich.edu    virtual TheISA::Decoder *getDecoderPtr() = 0;
1448541Sgblack@eecs.umich.edu
1454997Sgblack@eecs.umich.edu    virtual System *getSystemPtr() = 0;
1464997Sgblack@eecs.umich.edu
1473548Sgblack@eecs.umich.edu    virtual TheISA::Kernel::Statistics *getKernelStats() = 0;
1482654SN/A
1498852Sandreas.hansson@arm.com    virtual PortProxy &getPhysProxy() = 0;
1502521SN/A
1518852Sandreas.hansson@arm.com    virtual FSTranslatingPortProxy &getVirtProxy() = 0;
1523673Srdreslin@umich.edu
1538706Sandreas.hansson@arm.com    /**
1548706Sandreas.hansson@arm.com     * Initialise the physical and virtual port proxies and tie them to
1558706Sandreas.hansson@arm.com     * the data port of the CPU.
1568706Sandreas.hansson@arm.com     *
1578706Sandreas.hansson@arm.com     * tc ThreadContext for the virtual-to-physical translation
1588706Sandreas.hansson@arm.com     */
1598706Sandreas.hansson@arm.com    virtual void initMemProxies(ThreadContext *tc) = 0;
1608799Sgblack@eecs.umich.edu
1618852Sandreas.hansson@arm.com    virtual SETranslatingPortProxy &getMemProxy() = 0;
1622518SN/A
1632190SN/A    virtual Process *getProcessPtr() = 0;
1642190SN/A
16511886Sbrandon.potter@amd.com    virtual void setProcessPtr(Process *p) = 0;
16611886Sbrandon.potter@amd.com
1672190SN/A    virtual Status status() const = 0;
1682159SN/A
1692235SN/A    virtual void setStatus(Status new_status) = 0;
1702103SN/A
17110407Smitch.hayenga@arm.com    /// Set the status to Active.
17210407Smitch.hayenga@arm.com    virtual void activate() = 0;
173393SN/A
174393SN/A    /// Set the status to Suspended.
17510407Smitch.hayenga@arm.com    virtual void suspend() = 0;
176393SN/A
177393SN/A    /// Set the status to Halted.
17810407Smitch.hayenga@arm.com    virtual void halt() = 0;
1792159SN/A
18011627Smichael.lebeane@amd.com    /// Quiesce thread context
18111627Smichael.lebeane@amd.com    void quiesce();
18211627Smichael.lebeane@amd.com
18311627Smichael.lebeane@amd.com    /// Quiesce, suspend, and schedule activate at resume
18411627Smichael.lebeane@amd.com    void quiesceTick(Tick resume);
18511627Smichael.lebeane@amd.com
1862190SN/A    virtual void dumpFuncProfile() = 0;
1872159SN/A
1882680Sktlim@umich.edu    virtual void takeOverFrom(ThreadContext *old_context) = 0;
1892159SN/A
1902190SN/A    virtual void regStats(const std::string &name) = 0;
1912159SN/A
1922313SN/A    virtual EndQuiesceEvent *getQuiesceEvent() = 0;
1932235SN/A
1942235SN/A    // Not necessarily the best location for these...
1952235SN/A    // Having an extra function just to read these is obnoxious
1962235SN/A    virtual Tick readLastActivate() = 0;
1972235SN/A    virtual Tick readLastSuspend() = 0;
1982254SN/A
1992254SN/A    virtual void profileClear() = 0;
2002254SN/A    virtual void profileSample() = 0;
2012235SN/A
2022680Sktlim@umich.edu    virtual void copyArchRegs(ThreadContext *tc) = 0;
2032159SN/A
2042190SN/A    virtual void clearArchRegs() = 0;
2052159SN/A
2062159SN/A    //
2072159SN/A    // New accessors for new decoder.
2082159SN/A    //
20913557Sgabeblack@google.com    virtual RegVal readIntReg(int reg_idx) = 0;
2102159SN/A
21113557Sgabeblack@google.com    virtual RegVal readFloatRegBits(int reg_idx) = 0;
2122159SN/A
21312109SRekai.GonzalezAlberquilla@arm.com    virtual const VecRegContainer& readVecReg(const RegId& reg) const = 0;
21412109SRekai.GonzalezAlberquilla@arm.com    virtual VecRegContainer& getWritableVecReg(const RegId& reg) = 0;
21512109SRekai.GonzalezAlberquilla@arm.com
21612109SRekai.GonzalezAlberquilla@arm.com    /** Vector Register Lane Interfaces. */
21712109SRekai.GonzalezAlberquilla@arm.com    /** @{ */
21812109SRekai.GonzalezAlberquilla@arm.com    /** Reads source vector 8bit operand. */
21912109SRekai.GonzalezAlberquilla@arm.com    virtual ConstVecLane8
22012109SRekai.GonzalezAlberquilla@arm.com    readVec8BitLaneReg(const RegId& reg) const = 0;
22112109SRekai.GonzalezAlberquilla@arm.com
22212109SRekai.GonzalezAlberquilla@arm.com    /** Reads source vector 16bit operand. */
22312109SRekai.GonzalezAlberquilla@arm.com    virtual ConstVecLane16
22412109SRekai.GonzalezAlberquilla@arm.com    readVec16BitLaneReg(const RegId& reg) const = 0;
22512109SRekai.GonzalezAlberquilla@arm.com
22612109SRekai.GonzalezAlberquilla@arm.com    /** Reads source vector 32bit operand. */
22712109SRekai.GonzalezAlberquilla@arm.com    virtual ConstVecLane32
22812109SRekai.GonzalezAlberquilla@arm.com    readVec32BitLaneReg(const RegId& reg) const = 0;
22912109SRekai.GonzalezAlberquilla@arm.com
23012109SRekai.GonzalezAlberquilla@arm.com    /** Reads source vector 64bit operand. */
23112109SRekai.GonzalezAlberquilla@arm.com    virtual ConstVecLane64
23212109SRekai.GonzalezAlberquilla@arm.com    readVec64BitLaneReg(const RegId& reg) const = 0;
23312109SRekai.GonzalezAlberquilla@arm.com
23412109SRekai.GonzalezAlberquilla@arm.com    /** Write a lane of the destination vector register. */
23512109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecLane(const RegId& reg,
23612109SRekai.GonzalezAlberquilla@arm.com            const LaneData<LaneSize::Byte>& val) = 0;
23712109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecLane(const RegId& reg,
23812109SRekai.GonzalezAlberquilla@arm.com            const LaneData<LaneSize::TwoByte>& val) = 0;
23912109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecLane(const RegId& reg,
24012109SRekai.GonzalezAlberquilla@arm.com            const LaneData<LaneSize::FourByte>& val) = 0;
24112109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecLane(const RegId& reg,
24212109SRekai.GonzalezAlberquilla@arm.com            const LaneData<LaneSize::EightByte>& val) = 0;
24312109SRekai.GonzalezAlberquilla@arm.com    /** @} */
24412109SRekai.GonzalezAlberquilla@arm.com
24512109SRekai.GonzalezAlberquilla@arm.com    virtual const VecElem& readVecElem(const RegId& reg) const = 0;
24612109SRekai.GonzalezAlberquilla@arm.com
24713610Sgiacomo.gabrielli@arm.com    virtual const VecPredRegContainer& readVecPredReg(const RegId& reg)
24813610Sgiacomo.gabrielli@arm.com        const = 0;
24913610Sgiacomo.gabrielli@arm.com    virtual VecPredRegContainer& getWritableVecPredReg(const RegId& reg) = 0;
25013610Sgiacomo.gabrielli@arm.com
2519920Syasuko.eckert@amd.com    virtual CCReg readCCReg(int reg_idx) = 0;
2529920Syasuko.eckert@amd.com
25313557Sgabeblack@google.com    virtual void setIntReg(int reg_idx, RegVal val) = 0;
2542159SN/A
25513557Sgabeblack@google.com    virtual void setFloatRegBits(int reg_idx, RegVal val) = 0;
2562455SN/A
25712109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecReg(const RegId& reg, const VecRegContainer& val) = 0;
25812109SRekai.GonzalezAlberquilla@arm.com
25912109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecElem(const RegId& reg, const VecElem& val) = 0;
26012109SRekai.GonzalezAlberquilla@arm.com
26113610Sgiacomo.gabrielli@arm.com    virtual void setVecPredReg(const RegId& reg,
26213610Sgiacomo.gabrielli@arm.com                               const VecPredRegContainer& val) = 0;
26313610Sgiacomo.gabrielli@arm.com
2649920Syasuko.eckert@amd.com    virtual void setCCReg(int reg_idx, CCReg val) = 0;
2659920Syasuko.eckert@amd.com
2667720Sgblack@eecs.umich.edu    virtual TheISA::PCState pcState() = 0;
2672159SN/A
2687720Sgblack@eecs.umich.edu    virtual void pcState(const TheISA::PCState &val) = 0;
2692159SN/A
27011886Sbrandon.potter@amd.com    void
27111886Sbrandon.potter@amd.com    setNPC(Addr val)
27211886Sbrandon.potter@amd.com    {
27311886Sbrandon.potter@amd.com        TheISA::PCState pc_state = pcState();
27411886Sbrandon.potter@amd.com        pc_state.setNPC(val);
27511886Sbrandon.potter@amd.com        pcState(pc_state);
27611886Sbrandon.potter@amd.com    }
27711886Sbrandon.potter@amd.com
2788733Sgeoffrey.blake@arm.com    virtual void pcStateNoRecord(const TheISA::PCState &val) = 0;
2798733Sgeoffrey.blake@arm.com
2807720Sgblack@eecs.umich.edu    virtual Addr instAddr() = 0;
2812159SN/A
2827720Sgblack@eecs.umich.edu    virtual Addr nextInstAddr() = 0;
2832159SN/A
2847720Sgblack@eecs.umich.edu    virtual MicroPC microPC() = 0;
2855260Sksewell@umich.edu
28613557Sgabeblack@google.com    virtual RegVal readMiscRegNoEffect(int misc_reg) const = 0;
2874172Ssaidi@eecs.umich.edu
28813557Sgabeblack@google.com    virtual RegVal readMiscReg(int misc_reg) = 0;
2892159SN/A
29013582Sgabeblack@google.com    virtual void setMiscRegNoEffect(int misc_reg, RegVal val) = 0;
2912190SN/A
29213582Sgabeblack@google.com    virtual void setMiscReg(int misc_reg, RegVal val) = 0;
2932190SN/A
29412106SRekai.GonzalezAlberquilla@arm.com    virtual RegId flattenRegId(const RegId& regId) const = 0;
2956313Sgblack@eecs.umich.edu
29613557Sgabeblack@google.com    virtual RegVal
29712106SRekai.GonzalezAlberquilla@arm.com    readRegOtherThread(const RegId& misc_reg, ThreadID tid)
2986221Snate@binkert.org    {
2996221Snate@binkert.org        return 0;
3006221Snate@binkert.org    }
3014661Sksewell@umich.edu
3026221Snate@binkert.org    virtual void
30313582Sgabeblack@google.com    setRegOtherThread(const RegId& misc_reg, RegVal val, ThreadID tid)
3046221Snate@binkert.org    {
3056221Snate@binkert.org    }
3064661Sksewell@umich.edu
3072235SN/A    // Also not necessarily the best location for these two.  Hopefully will go
3082235SN/A    // away once we decide upon where st cond failures goes.
3092190SN/A    virtual unsigned readStCondFailures() = 0;
3102190SN/A
3112190SN/A    virtual void setStCondFailures(unsigned sc_failures) = 0;
3122159SN/A
3132235SN/A    // Same with st cond failures.
3142190SN/A    virtual Counter readFuncExeInst() = 0;
3152834Sksewell@umich.edu
31611877Sbrandon.potter@amd.com    virtual void syscall(int64_t callnum, Fault *fault) = 0;
3174111Sgblack@eecs.umich.edu
3182834Sksewell@umich.edu    // This function exits the thread context in the CPU and returns
3192834Sksewell@umich.edu    // 1 if the CPU has no more active threads (meaning it's OK to exit);
3202834Sksewell@umich.edu    // Used in syscall-emulation mode when a  thread calls the exit syscall.
3212834Sksewell@umich.edu    virtual int exit() { return 1; };
3222525SN/A
3235217Ssaidi@eecs.umich.edu    /** function to compare two thread contexts (for debugging) */
3245217Ssaidi@eecs.umich.edu    static void compare(ThreadContext *one, ThreadContext *two);
3259426SAndreas.Sandberg@ARM.com
3269426SAndreas.Sandberg@ARM.com    /** @{ */
3279426SAndreas.Sandberg@ARM.com    /**
3289426SAndreas.Sandberg@ARM.com     * Flat register interfaces
3299426SAndreas.Sandberg@ARM.com     *
3309426SAndreas.Sandberg@ARM.com     * Some architectures have different registers visible in
3319426SAndreas.Sandberg@ARM.com     * different modes. Such architectures "flatten" a register (see
33212106SRekai.GonzalezAlberquilla@arm.com     * flattenRegId()) to map it into the
3339426SAndreas.Sandberg@ARM.com     * gem5 register file. This interface provides a flat interface to
3349426SAndreas.Sandberg@ARM.com     * the underlying register file, which allows for example
3359426SAndreas.Sandberg@ARM.com     * serialization code to access all registers.
3369426SAndreas.Sandberg@ARM.com     */
3379426SAndreas.Sandberg@ARM.com
33813557Sgabeblack@google.com    virtual RegVal readIntRegFlat(int idx) = 0;
33913557Sgabeblack@google.com    virtual void setIntRegFlat(int idx, RegVal val) = 0;
3409426SAndreas.Sandberg@ARM.com
34113557Sgabeblack@google.com    virtual RegVal readFloatRegBitsFlat(int idx) = 0;
34213557Sgabeblack@google.com    virtual void setFloatRegBitsFlat(int idx, RegVal val) = 0;
3439426SAndreas.Sandberg@ARM.com
34412109SRekai.GonzalezAlberquilla@arm.com    virtual const VecRegContainer& readVecRegFlat(int idx) const = 0;
34512109SRekai.GonzalezAlberquilla@arm.com    virtual VecRegContainer& getWritableVecRegFlat(int idx) = 0;
34612109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecRegFlat(int idx, const VecRegContainer& val) = 0;
34712109SRekai.GonzalezAlberquilla@arm.com
34812109SRekai.GonzalezAlberquilla@arm.com    virtual const VecElem& readVecElemFlat(const RegIndex& idx,
34912109SRekai.GonzalezAlberquilla@arm.com                                           const ElemIndex& elemIdx) const = 0;
35012109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecElemFlat(const RegIndex& idx, const ElemIndex& elemIdx,
35112109SRekai.GonzalezAlberquilla@arm.com                                const VecElem& val) = 0;
35212109SRekai.GonzalezAlberquilla@arm.com
35313610Sgiacomo.gabrielli@arm.com    virtual const VecPredRegContainer& readVecPredRegFlat(int idx) const = 0;
35413610Sgiacomo.gabrielli@arm.com    virtual VecPredRegContainer& getWritableVecPredRegFlat(int idx) = 0;
35513610Sgiacomo.gabrielli@arm.com    virtual void setVecPredRegFlat(int idx,
35613610Sgiacomo.gabrielli@arm.com                                   const VecPredRegContainer& val) = 0;
35713610Sgiacomo.gabrielli@arm.com
3589920Syasuko.eckert@amd.com    virtual CCReg readCCRegFlat(int idx) = 0;
3599920Syasuko.eckert@amd.com    virtual void setCCRegFlat(int idx, CCReg val) = 0;
3609426SAndreas.Sandberg@ARM.com    /** @} */
3619426SAndreas.Sandberg@ARM.com
3622159SN/A};
3632159SN/A
3642682Sktlim@umich.edu/**
3652682Sktlim@umich.edu * ProxyThreadContext class that provides a way to implement a
3662682Sktlim@umich.edu * ThreadContext without having to derive from it. ThreadContext is an
3672682Sktlim@umich.edu * abstract class, so anything that derives from it and uses its
3682682Sktlim@umich.edu * interface will pay the overhead of virtual function calls.  This
3692682Sktlim@umich.edu * class is created to enable a user-defined Thread object to be used
3702682Sktlim@umich.edu * wherever ThreadContexts are used, without paying the overhead of
3712682Sktlim@umich.edu * virtual function calls when it is used by itself.  See
3722682Sktlim@umich.edu * simple_thread.hh for an example of this.
3732682Sktlim@umich.edu */
3742680Sktlim@umich.edutemplate <class TC>
3752680Sktlim@umich.educlass ProxyThreadContext : public ThreadContext
3762190SN/A{
3772190SN/A  public:
3782680Sktlim@umich.edu    ProxyThreadContext(TC *actual_tc)
3792680Sktlim@umich.edu    { actualTC = actual_tc; }
3802159SN/A
3812190SN/A  private:
3822680Sktlim@umich.edu    TC *actualTC;
3832SN/A
3842SN/A  public:
3852SN/A
3862680Sktlim@umich.edu    BaseCPU *getCpuPtr() { return actualTC->getCpuPtr(); }
3872SN/A
38810110Sandreas.hansson@arm.com    int cpuId() const { return actualTC->cpuId(); }
3892SN/A
39010190Sakash.bagdia@arm.com    uint32_t socketId() const { return actualTC->socketId(); }
39110190Sakash.bagdia@arm.com
39210110Sandreas.hansson@arm.com    int threadId() const { return actualTC->threadId(); }
3935715Shsul@eecs.umich.edu
39410110Sandreas.hansson@arm.com    void setThreadId(int id) { actualTC->setThreadId(id); }
3955714Shsul@eecs.umich.edu
39610110Sandreas.hansson@arm.com    int contextId() const { return actualTC->contextId(); }
3975714Shsul@eecs.umich.edu
3985714Shsul@eecs.umich.edu    void setContextId(int id) { actualTC->setContextId(id); }
3995714Shsul@eecs.umich.edu
40012406Sgabeblack@google.com    BaseTLB *getITBPtr() { return actualTC->getITBPtr(); }
4011917SN/A
40212406Sgabeblack@google.com    BaseTLB *getDTBPtr() { return actualTC->getDTBPtr(); }
4032521SN/A
4048887Sgeoffrey.blake@arm.com    CheckerCPU *getCheckerCpuPtr() { return actualTC->getCheckerCpuPtr(); }
4058733Sgeoffrey.blake@arm.com
4069020Sgblack@eecs.umich.edu    TheISA::Decoder *getDecoderPtr() { return actualTC->getDecoderPtr(); }
4078541Sgblack@eecs.umich.edu
4084997Sgblack@eecs.umich.edu    System *getSystemPtr() { return actualTC->getSystemPtr(); }
4094997Sgblack@eecs.umich.edu
4103548Sgblack@eecs.umich.edu    TheISA::Kernel::Statistics *getKernelStats()
4113548Sgblack@eecs.umich.edu    { return actualTC->getKernelStats(); }
4122654SN/A
4138852Sandreas.hansson@arm.com    PortProxy &getPhysProxy() { return actualTC->getPhysProxy(); }
4142521SN/A
4158852Sandreas.hansson@arm.com    FSTranslatingPortProxy &getVirtProxy() { return actualTC->getVirtProxy(); }
4163673Srdreslin@umich.edu
4178706Sandreas.hansson@arm.com    void initMemProxies(ThreadContext *tc) { actualTC->initMemProxies(tc); }
4188799Sgblack@eecs.umich.edu
4198852Sandreas.hansson@arm.com    SETranslatingPortProxy &getMemProxy() { return actualTC->getMemProxy(); }
4202518SN/A
4212680Sktlim@umich.edu    Process *getProcessPtr() { return actualTC->getProcessPtr(); }
4222SN/A
42311886Sbrandon.potter@amd.com    void setProcessPtr(Process *p) { actualTC->setProcessPtr(p); }
42411886Sbrandon.potter@amd.com
4252680Sktlim@umich.edu    Status status() const { return actualTC->status(); }
426595SN/A
4272680Sktlim@umich.edu    void setStatus(Status new_status) { actualTC->setStatus(new_status); }
4282SN/A
42910407Smitch.hayenga@arm.com    /// Set the status to Active.
43010407Smitch.hayenga@arm.com    void activate() { actualTC->activate(); }
4312SN/A
4322190SN/A    /// Set the status to Suspended.
43310407Smitch.hayenga@arm.com    void suspend() { actualTC->suspend(); }
4342SN/A
4352190SN/A    /// Set the status to Halted.
43610407Smitch.hayenga@arm.com    void halt() { actualTC->halt(); }
437217SN/A
43811627Smichael.lebeane@amd.com    /// Quiesce thread context
43911627Smichael.lebeane@amd.com    void quiesce() { actualTC->quiesce(); }
44011627Smichael.lebeane@amd.com
44111627Smichael.lebeane@amd.com    /// Quiesce, suspend, and schedule activate at resume
44211627Smichael.lebeane@amd.com    void quiesceTick(Tick resume) { actualTC->quiesceTick(resume); }
44311627Smichael.lebeane@amd.com
4442680Sktlim@umich.edu    void dumpFuncProfile() { actualTC->dumpFuncProfile(); }
4452190SN/A
4462680Sktlim@umich.edu    void takeOverFrom(ThreadContext *oldContext)
4472680Sktlim@umich.edu    { actualTC->takeOverFrom(oldContext); }
4482190SN/A
4492680Sktlim@umich.edu    void regStats(const std::string &name) { actualTC->regStats(name); }
4502190SN/A
4512680Sktlim@umich.edu    EndQuiesceEvent *getQuiesceEvent() { return actualTC->getQuiesceEvent(); }
4522235SN/A
4532680Sktlim@umich.edu    Tick readLastActivate() { return actualTC->readLastActivate(); }
4542680Sktlim@umich.edu    Tick readLastSuspend() { return actualTC->readLastSuspend(); }
4552254SN/A
4562680Sktlim@umich.edu    void profileClear() { return actualTC->profileClear(); }
4572680Sktlim@umich.edu    void profileSample() { return actualTC->profileSample(); }
4582SN/A
4592190SN/A    // @todo: Do I need this?
4602680Sktlim@umich.edu    void copyArchRegs(ThreadContext *tc) { actualTC->copyArchRegs(tc); }
4612SN/A
4622680Sktlim@umich.edu    void clearArchRegs() { actualTC->clearArchRegs(); }
463716SN/A
4642SN/A    //
4652SN/A    // New accessors for new decoder.
4662SN/A    //
46713557Sgabeblack@google.com    RegVal readIntReg(int reg_idx)
4682680Sktlim@umich.edu    { return actualTC->readIntReg(reg_idx); }
4692SN/A
47013557Sgabeblack@google.com    RegVal readFloatRegBits(int reg_idx)
4712680Sktlim@umich.edu    { return actualTC->readFloatRegBits(reg_idx); }
4722SN/A
47312109SRekai.GonzalezAlberquilla@arm.com    const VecRegContainer& readVecReg(const RegId& reg) const
47412109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->readVecReg(reg); }
47512109SRekai.GonzalezAlberquilla@arm.com
47612109SRekai.GonzalezAlberquilla@arm.com    VecRegContainer& getWritableVecReg(const RegId& reg)
47712109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->getWritableVecReg(reg); }
47812109SRekai.GonzalezAlberquilla@arm.com
47912109SRekai.GonzalezAlberquilla@arm.com    /** Vector Register Lane Interfaces. */
48012109SRekai.GonzalezAlberquilla@arm.com    /** @{ */
48112109SRekai.GonzalezAlberquilla@arm.com    /** Reads source vector 8bit operand. */
48212109SRekai.GonzalezAlberquilla@arm.com    ConstVecLane8
48312109SRekai.GonzalezAlberquilla@arm.com    readVec8BitLaneReg(const RegId& reg) const
48412109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->readVec8BitLaneReg(reg); }
48512109SRekai.GonzalezAlberquilla@arm.com
48612109SRekai.GonzalezAlberquilla@arm.com    /** Reads source vector 16bit operand. */
48712109SRekai.GonzalezAlberquilla@arm.com    ConstVecLane16
48812109SRekai.GonzalezAlberquilla@arm.com    readVec16BitLaneReg(const RegId& reg) const
48912109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->readVec16BitLaneReg(reg); }
49012109SRekai.GonzalezAlberquilla@arm.com
49112109SRekai.GonzalezAlberquilla@arm.com    /** Reads source vector 32bit operand. */
49212109SRekai.GonzalezAlberquilla@arm.com    ConstVecLane32
49312109SRekai.GonzalezAlberquilla@arm.com    readVec32BitLaneReg(const RegId& reg) const
49412109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->readVec32BitLaneReg(reg); }
49512109SRekai.GonzalezAlberquilla@arm.com
49612109SRekai.GonzalezAlberquilla@arm.com    /** Reads source vector 64bit operand. */
49712109SRekai.GonzalezAlberquilla@arm.com    ConstVecLane64
49812109SRekai.GonzalezAlberquilla@arm.com    readVec64BitLaneReg(const RegId& reg) const
49912109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->readVec64BitLaneReg(reg); }
50012109SRekai.GonzalezAlberquilla@arm.com
50112109SRekai.GonzalezAlberquilla@arm.com    /** Write a lane of the destination vector register. */
50212109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecLane(const RegId& reg,
50312109SRekai.GonzalezAlberquilla@arm.com            const LaneData<LaneSize::Byte>& val)
50412109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->setVecLane(reg, val); }
50512109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecLane(const RegId& reg,
50612109SRekai.GonzalezAlberquilla@arm.com            const LaneData<LaneSize::TwoByte>& val)
50712109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->setVecLane(reg, val); }
50812109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecLane(const RegId& reg,
50912109SRekai.GonzalezAlberquilla@arm.com            const LaneData<LaneSize::FourByte>& val)
51012109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->setVecLane(reg, val); }
51112109SRekai.GonzalezAlberquilla@arm.com    virtual void setVecLane(const RegId& reg,
51212109SRekai.GonzalezAlberquilla@arm.com            const LaneData<LaneSize::EightByte>& val)
51312109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->setVecLane(reg, val); }
51412109SRekai.GonzalezAlberquilla@arm.com    /** @} */
51512109SRekai.GonzalezAlberquilla@arm.com
51612109SRekai.GonzalezAlberquilla@arm.com    const VecElem& readVecElem(const RegId& reg) const
51712109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->readVecElem(reg); }
51812109SRekai.GonzalezAlberquilla@arm.com
51913610Sgiacomo.gabrielli@arm.com    const VecPredRegContainer& readVecPredReg(const RegId& reg) const
52013610Sgiacomo.gabrielli@arm.com    { return actualTC->readVecPredReg(reg); }
52113610Sgiacomo.gabrielli@arm.com
52213610Sgiacomo.gabrielli@arm.com    VecPredRegContainer& getWritableVecPredReg(const RegId& reg)
52313610Sgiacomo.gabrielli@arm.com    { return actualTC->getWritableVecPredReg(reg); }
52413610Sgiacomo.gabrielli@arm.com
5259920Syasuko.eckert@amd.com    CCReg readCCReg(int reg_idx)
5269920Syasuko.eckert@amd.com    { return actualTC->readCCReg(reg_idx); }
5279920Syasuko.eckert@amd.com
52813557Sgabeblack@google.com    void setIntReg(int reg_idx, RegVal val)
5292680Sktlim@umich.edu    { actualTC->setIntReg(reg_idx, val); }
5302SN/A
53113557Sgabeblack@google.com    void setFloatRegBits(int reg_idx, RegVal val)
5322680Sktlim@umich.edu    { actualTC->setFloatRegBits(reg_idx, val); }
5332SN/A
53412109SRekai.GonzalezAlberquilla@arm.com    void setVecReg(const RegId& reg, const VecRegContainer& val)
53512109SRekai.GonzalezAlberquilla@arm.com    { actualTC->setVecReg(reg, val); }
53612109SRekai.GonzalezAlberquilla@arm.com
53713610Sgiacomo.gabrielli@arm.com    void setVecPredReg(const RegId& reg, const VecPredRegContainer& val)
53813610Sgiacomo.gabrielli@arm.com    { actualTC->setVecPredReg(reg, val); }
53913610Sgiacomo.gabrielli@arm.com
54012109SRekai.GonzalezAlberquilla@arm.com    void setVecElem(const RegId& reg, const VecElem& val)
54112109SRekai.GonzalezAlberquilla@arm.com    { actualTC->setVecElem(reg, val); }
54212109SRekai.GonzalezAlberquilla@arm.com
5439920Syasuko.eckert@amd.com    void setCCReg(int reg_idx, CCReg val)
5449920Syasuko.eckert@amd.com    { actualTC->setCCReg(reg_idx, val); }
5459920Syasuko.eckert@amd.com
5467720Sgblack@eecs.umich.edu    TheISA::PCState pcState() { return actualTC->pcState(); }
5472SN/A
5487720Sgblack@eecs.umich.edu    void pcState(const TheISA::PCState &val) { actualTC->pcState(val); }
5492206SN/A
5508733Sgeoffrey.blake@arm.com    void pcStateNoRecord(const TheISA::PCState &val) { actualTC->pcState(val); }
5518733Sgeoffrey.blake@arm.com
5527720Sgblack@eecs.umich.edu    Addr instAddr() { return actualTC->instAddr(); }
5537720Sgblack@eecs.umich.edu    Addr nextInstAddr() { return actualTC->nextInstAddr(); }
5547720Sgblack@eecs.umich.edu    MicroPC microPC() { return actualTC->microPC(); }
5555260Sksewell@umich.edu
5567597Sminkyu.jeong@arm.com    bool readPredicate() { return actualTC->readPredicate(); }
5577597Sminkyu.jeong@arm.com
5587597Sminkyu.jeong@arm.com    void setPredicate(bool val)
5597597Sminkyu.jeong@arm.com    { actualTC->setPredicate(val); }
5607597Sminkyu.jeong@arm.com
56113557Sgabeblack@google.com    RegVal readMiscRegNoEffect(int misc_reg) const
5624172Ssaidi@eecs.umich.edu    { return actualTC->readMiscRegNoEffect(misc_reg); }
5634172Ssaidi@eecs.umich.edu
56413557Sgabeblack@google.com    RegVal readMiscReg(int misc_reg)
5652680Sktlim@umich.edu    { return actualTC->readMiscReg(misc_reg); }
5662SN/A
56713582Sgabeblack@google.com    void setMiscRegNoEffect(int misc_reg, RegVal val)
5684172Ssaidi@eecs.umich.edu    { return actualTC->setMiscRegNoEffect(misc_reg, val); }
5692SN/A
57013582Sgabeblack@google.com    void setMiscReg(int misc_reg, RegVal val)
5712680Sktlim@umich.edu    { return actualTC->setMiscReg(misc_reg, val); }
5722SN/A
57312106SRekai.GonzalezAlberquilla@arm.com    RegId flattenRegId(const RegId& regId) const
57412106SRekai.GonzalezAlberquilla@arm.com    { return actualTC->flattenRegId(regId); }
57510033SAli.Saidi@ARM.com
5762190SN/A    unsigned readStCondFailures()
5772680Sktlim@umich.edu    { return actualTC->readStCondFailures(); }
5782190SN/A
5792190SN/A    void setStCondFailures(unsigned sc_failures)
5802680Sktlim@umich.edu    { actualTC->setStCondFailures(sc_failures); }
5812SN/A
58211877Sbrandon.potter@amd.com    void syscall(int64_t callnum, Fault *fault)
58311877Sbrandon.potter@amd.com    { actualTC->syscall(callnum, fault); }
5844111Sgblack@eecs.umich.edu
5852680Sktlim@umich.edu    Counter readFuncExeInst() { return actualTC->readFuncExeInst(); }
5869426SAndreas.Sandberg@ARM.com
58713557Sgabeblack@google.com    RegVal readIntRegFlat(int idx)
5889426SAndreas.Sandberg@ARM.com    { return actualTC->readIntRegFlat(idx); }
5899426SAndreas.Sandberg@ARM.com
59013557Sgabeblack@google.com    void setIntRegFlat(int idx, RegVal val)
5919426SAndreas.Sandberg@ARM.com    { actualTC->setIntRegFlat(idx, val); }
5929426SAndreas.Sandberg@ARM.com
59313557Sgabeblack@google.com    RegVal readFloatRegBitsFlat(int idx)
5949426SAndreas.Sandberg@ARM.com    { return actualTC->readFloatRegBitsFlat(idx); }
5959426SAndreas.Sandberg@ARM.com
59613557Sgabeblack@google.com    void setFloatRegBitsFlat(int idx, RegVal val)
5979426SAndreas.Sandberg@ARM.com    { actualTC->setFloatRegBitsFlat(idx, val); }
5989920Syasuko.eckert@amd.com
59912109SRekai.GonzalezAlberquilla@arm.com    const VecRegContainer& readVecRegFlat(int id) const
60012109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->readVecRegFlat(id); }
60112109SRekai.GonzalezAlberquilla@arm.com
60212109SRekai.GonzalezAlberquilla@arm.com    VecRegContainer& getWritableVecRegFlat(int id)
60312109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->getWritableVecRegFlat(id); }
60412109SRekai.GonzalezAlberquilla@arm.com
60512109SRekai.GonzalezAlberquilla@arm.com    void setVecRegFlat(int idx, const VecRegContainer& val)
60612109SRekai.GonzalezAlberquilla@arm.com    { actualTC->setVecRegFlat(idx, val); }
60712109SRekai.GonzalezAlberquilla@arm.com
60812109SRekai.GonzalezAlberquilla@arm.com    const VecElem& readVecElemFlat(const RegIndex& id,
60912109SRekai.GonzalezAlberquilla@arm.com                                   const ElemIndex& elemIndex) const
61012109SRekai.GonzalezAlberquilla@arm.com    { return actualTC->readVecElemFlat(id, elemIndex); }
61112109SRekai.GonzalezAlberquilla@arm.com
61212109SRekai.GonzalezAlberquilla@arm.com    void setVecElemFlat(const RegIndex& id, const ElemIndex& elemIndex,
61312109SRekai.GonzalezAlberquilla@arm.com                        const VecElem& val)
61412109SRekai.GonzalezAlberquilla@arm.com    { actualTC->setVecElemFlat(id, elemIndex, val); }
61512109SRekai.GonzalezAlberquilla@arm.com
61613610Sgiacomo.gabrielli@arm.com    const VecPredRegContainer& readVecPredRegFlat(int id) const
61713610Sgiacomo.gabrielli@arm.com    { return actualTC->readVecPredRegFlat(id); }
61813610Sgiacomo.gabrielli@arm.com
61913610Sgiacomo.gabrielli@arm.com    VecPredRegContainer& getWritableVecPredRegFlat(int id)
62013610Sgiacomo.gabrielli@arm.com    { return actualTC->getWritableVecPredRegFlat(id); }
62113610Sgiacomo.gabrielli@arm.com
62213610Sgiacomo.gabrielli@arm.com    void setVecPredRegFlat(int idx, const VecPredRegContainer& val)
62313610Sgiacomo.gabrielli@arm.com    { actualTC->setVecPredRegFlat(idx, val); }
62413610Sgiacomo.gabrielli@arm.com
6259920Syasuko.eckert@amd.com    CCReg readCCRegFlat(int idx)
6269920Syasuko.eckert@amd.com    { return actualTC->readCCRegFlat(idx); }
6279920Syasuko.eckert@amd.com
6289920Syasuko.eckert@amd.com    void setCCRegFlat(int idx, CCReg val)
6299920Syasuko.eckert@amd.com    { actualTC->setCCRegFlat(idx, val); }
6302SN/A};
6312SN/A
6329428SAndreas.Sandberg@ARM.com/** @{ */
6339428SAndreas.Sandberg@ARM.com/**
6349428SAndreas.Sandberg@ARM.com * Thread context serialization helpers
6359428SAndreas.Sandberg@ARM.com *
6369428SAndreas.Sandberg@ARM.com * These helper functions provide a way to the data in a
6379428SAndreas.Sandberg@ARM.com * ThreadContext. They are provided as separate helper function since
6389428SAndreas.Sandberg@ARM.com * implementing them as members of the ThreadContext interface would
6399428SAndreas.Sandberg@ARM.com * be confusing when the ThreadContext is exported via a proxy.
6409428SAndreas.Sandberg@ARM.com */
6419428SAndreas.Sandberg@ARM.com
64210905Sandreas.sandberg@arm.comvoid serialize(ThreadContext &tc, CheckpointOut &cp);
64310905Sandreas.sandberg@arm.comvoid unserialize(ThreadContext &tc, CheckpointIn &cp);
6449428SAndreas.Sandberg@ARM.com
6459428SAndreas.Sandberg@ARM.com/** @} */
6469428SAndreas.Sandberg@ARM.com
6479441SAndreas.Sandberg@ARM.com
6489441SAndreas.Sandberg@ARM.com/**
6499441SAndreas.Sandberg@ARM.com * Copy state between thread contexts in preparation for CPU handover.
6509441SAndreas.Sandberg@ARM.com *
6519441SAndreas.Sandberg@ARM.com * @note This method modifies the old thread contexts as well as the
6529441SAndreas.Sandberg@ARM.com * new thread context. The old thread context will have its quiesce
6539441SAndreas.Sandberg@ARM.com * event descheduled if it is scheduled and its status set to halted.
6549441SAndreas.Sandberg@ARM.com *
6559441SAndreas.Sandberg@ARM.com * @param new_tc Destination ThreadContext.
6569441SAndreas.Sandberg@ARM.com * @param old_tc Source ThreadContext.
6579441SAndreas.Sandberg@ARM.com */
6589441SAndreas.Sandberg@ARM.comvoid takeOverFrom(ThreadContext &new_tc, ThreadContext &old_tc);
6599441SAndreas.Sandberg@ARM.com
6602190SN/A#endif
661