thread_context.hh revision 9020:14321ce30881
1/*
2 * Copyright (c) 2011 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder.  You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2004-2006 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Kevin Lim
41 */
42
43#ifndef __CPU_O3_THREAD_CONTEXT_HH__
44#define __CPU_O3_THREAD_CONTEXT_HH__
45
46#include "config/the_isa.hh"
47#include "cpu/o3/isa_specific.hh"
48#include "cpu/thread_context.hh"
49
50class EndQuiesceEvent;
51namespace Kernel {
52    class Statistics;
53}
54
55/**
56 * Derived ThreadContext class for use with the O3CPU.  It
57 * provides the interface for any external objects to access a
58 * single thread's state and some general CPU state.  Any time
59 * external objects try to update state through this interface,
60 * the CPU will create an event to squash all in-flight
61 * instructions in order to ensure state is maintained correctly.
62 * It must be defined specifically for the O3CPU because
63 * not all architectural state is located within the O3ThreadState
64 * (such as the commit PC, and registers), and specific actions
65 * must be taken when using this interface (such as squashing all
66 * in-flight instructions when doing a write to this interface).
67 */
68template <class Impl>
69class O3ThreadContext : public ThreadContext
70{
71  public:
72    typedef typename Impl::O3CPU O3CPU;
73
74   /** Pointer to the CPU. */
75    O3CPU *cpu;
76
77    /** Pointer to the thread state that this TC corrseponds to. */
78    O3ThreadState<Impl> *thread;
79
80    /** Returns a pointer to the ITB. */
81    TheISA::TLB *getITBPtr() { return cpu->itb; }
82
83    /** Returns a pointer to the DTB. */
84    TheISA::TLB *getDTBPtr() { return cpu->dtb; }
85
86    CheckerCPU *getCheckerCpuPtr() { return NULL; }
87
88    TheISA::Decoder *getDecoderPtr() { return &cpu->fetch.decoder; }
89
90    /** Returns a pointer to this CPU. */
91    virtual BaseCPU *getCpuPtr() { return cpu; }
92
93    /** Reads this CPU's ID. */
94    virtual int cpuId() { return cpu->cpuId(); }
95
96    virtual int contextId() { return thread->contextId(); }
97
98    virtual void setContextId(int id) { thread->setContextId(id); }
99
100    /** Returns this thread's ID number. */
101    virtual int threadId() { return thread->threadId(); }
102    virtual void setThreadId(int id) { return thread->setThreadId(id); }
103
104    /** Returns a pointer to the system. */
105    virtual System *getSystemPtr() { return cpu->system; }
106
107    /** Returns a pointer to this thread's kernel statistics. */
108    virtual TheISA::Kernel::Statistics *getKernelStats()
109    { return thread->kernelStats; }
110
111    /** Returns a pointer to this thread's process. */
112    virtual Process *getProcessPtr() { return thread->getProcessPtr(); }
113
114    virtual PortProxy &getPhysProxy() { return thread->getPhysProxy(); }
115
116    virtual FSTranslatingPortProxy &getVirtProxy();
117
118    virtual void initMemProxies(ThreadContext *tc)
119    { thread->initMemProxies(tc); }
120
121    virtual SETranslatingPortProxy &getMemProxy()
122    { return thread->getMemProxy(); }
123
124    /** Returns this thread's status. */
125    virtual Status status() const { return thread->status(); }
126
127    /** Sets this thread's status. */
128    virtual void setStatus(Status new_status)
129    { thread->setStatus(new_status); }
130
131    /** Set the status to Active.  Optional delay indicates number of
132     * cycles to wait before beginning execution. */
133    virtual void activate(int delay = 1);
134
135    /** Set the status to Suspended. */
136    virtual void suspend(int delay = 0);
137
138    /** Set the status to Halted. */
139    virtual void halt(int delay = 0);
140
141    /** Dumps the function profiling information.
142     * @todo: Implement.
143     */
144    virtual void dumpFuncProfile();
145
146    /** Takes over execution of a thread from another CPU. */
147    virtual void takeOverFrom(ThreadContext *old_context);
148
149    /** Registers statistics associated with this TC. */
150    virtual void regStats(const std::string &name);
151
152    /** Serializes state. */
153    virtual void serialize(std::ostream &os);
154    /** Unserializes state. */
155    virtual void unserialize(Checkpoint *cp, const std::string &section);
156
157    /** Reads the last tick that this thread was activated on. */
158    virtual Tick readLastActivate();
159    /** Reads the last tick that this thread was suspended on. */
160    virtual Tick readLastSuspend();
161
162    /** Clears the function profiling information. */
163    virtual void profileClear();
164    /** Samples the function profiling information. */
165    virtual void profileSample();
166
167    /** Copies the architectural registers from another TC into this TC. */
168    virtual void copyArchRegs(ThreadContext *tc);
169
170    /** Resets all architectural registers to 0. */
171    virtual void clearArchRegs();
172
173    /** Reads an integer register. */
174    virtual uint64_t readIntReg(int reg_idx);
175
176    virtual FloatReg readFloatReg(int reg_idx);
177
178    virtual FloatRegBits readFloatRegBits(int reg_idx);
179
180    /** Sets an integer register to a value. */
181    virtual void setIntReg(int reg_idx, uint64_t val);
182
183    virtual void setFloatReg(int reg_idx, FloatReg val);
184
185    virtual void setFloatRegBits(int reg_idx, FloatRegBits val);
186
187    /** Reads this thread's PC state. */
188    virtual TheISA::PCState pcState()
189    { return cpu->pcState(thread->threadId()); }
190
191    /** Sets this thread's PC state. */
192    virtual void pcState(const TheISA::PCState &val);
193
194    virtual void pcStateNoRecord(const TheISA::PCState &val);
195
196    /** Reads this thread's PC. */
197    virtual Addr instAddr()
198    { return cpu->instAddr(thread->threadId()); }
199
200    /** Reads this thread's next PC. */
201    virtual Addr nextInstAddr()
202    { return cpu->nextInstAddr(thread->threadId()); }
203
204    /** Reads this thread's next PC. */
205    virtual MicroPC microPC()
206    { return cpu->microPC(thread->threadId()); }
207
208    /** Reads a miscellaneous register. */
209    virtual MiscReg readMiscRegNoEffect(int misc_reg)
210    { return cpu->readMiscRegNoEffect(misc_reg, thread->threadId()); }
211
212    /** Reads a misc. register, including any side-effects the
213     * read might have as defined by the architecture. */
214    virtual MiscReg readMiscReg(int misc_reg)
215    { return cpu->readMiscReg(misc_reg, thread->threadId()); }
216
217    /** Sets a misc. register. */
218    virtual void setMiscRegNoEffect(int misc_reg, const MiscReg &val);
219
220    /** Sets a misc. register, including any side-effects the
221     * write might have as defined by the architecture. */
222    virtual void setMiscReg(int misc_reg, const MiscReg &val);
223
224    virtual int flattenIntIndex(int reg);
225    virtual int flattenFloatIndex(int reg);
226
227    /** Returns the number of consecutive store conditional failures. */
228    // @todo: Figure out where these store cond failures should go.
229    virtual unsigned readStCondFailures()
230    { return thread->storeCondFailures; }
231
232    /** Sets the number of consecutive store conditional failures. */
233    virtual void setStCondFailures(unsigned sc_failures)
234    { thread->storeCondFailures = sc_failures; }
235
236    // Only really makes sense for old CPU model.  Lots of code
237    // outside the CPU still checks this function, so it will
238    // always return false to keep everything working.
239    /** Checks if the thread is misspeculating.  Because it is
240     * very difficult to determine if the thread is
241     * misspeculating, this is set as false. */
242    virtual bool misspeculating() { return false; }
243
244    /** Executes a syscall in SE mode. */
245    virtual void syscall(int64_t callnum)
246    { return cpu->syscall(callnum, thread->threadId()); }
247
248    /** Reads the funcExeInst counter. */
249    virtual Counter readFuncExeInst() { return thread->funcExeInst; }
250
251    /** Returns pointer to the quiesce event. */
252    virtual EndQuiesceEvent *getQuiesceEvent()
253    {
254        return this->thread->quiesceEvent;
255    }
256
257};
258
259#endif
260