thread_context.hh revision 9180:ee8d7a51651d
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 *
89    getDecoderPtr()
90    {
91        return cpu->fetch.decoder[thread->threadId()];
92    }
93
94    /** Returns a pointer to this CPU. */
95    virtual BaseCPU *getCpuPtr() { return cpu; }
96
97    /** Reads this CPU's ID. */
98    virtual int cpuId() { return cpu->cpuId(); }
99
100    virtual int contextId() { return thread->contextId(); }
101
102    virtual void setContextId(int id) { thread->setContextId(id); }
103
104    /** Returns this thread's ID number. */
105    virtual int threadId() { return thread->threadId(); }
106    virtual void setThreadId(int id) { return thread->setThreadId(id); }
107
108    /** Returns a pointer to the system. */
109    virtual System *getSystemPtr() { return cpu->system; }
110
111    /** Returns a pointer to this thread's kernel statistics. */
112    virtual TheISA::Kernel::Statistics *getKernelStats()
113    { return thread->kernelStats; }
114
115    /** Returns a pointer to this thread's process. */
116    virtual Process *getProcessPtr() { return thread->getProcessPtr(); }
117
118    virtual PortProxy &getPhysProxy() { return thread->getPhysProxy(); }
119
120    virtual FSTranslatingPortProxy &getVirtProxy();
121
122    virtual void initMemProxies(ThreadContext *tc)
123    { thread->initMemProxies(tc); }
124
125    virtual SETranslatingPortProxy &getMemProxy()
126    { return thread->getMemProxy(); }
127
128    /** Returns this thread's status. */
129    virtual Status status() const { return thread->status(); }
130
131    /** Sets this thread's status. */
132    virtual void setStatus(Status new_status)
133    { thread->setStatus(new_status); }
134
135    /** Set the status to Active.  Optional delay indicates number of
136     * cycles to wait before beginning execution. */
137    virtual void activate(Cycles delay = Cycles(1));
138
139    /** Set the status to Suspended. */
140    virtual void suspend(Cycles delay = Cycles(0));
141
142    /** Set the status to Halted. */
143    virtual void halt(Cycles delay = Cycles(0));
144
145    /** Dumps the function profiling information.
146     * @todo: Implement.
147     */
148    virtual void dumpFuncProfile();
149
150    /** Takes over execution of a thread from another CPU. */
151    virtual void takeOverFrom(ThreadContext *old_context);
152
153    /** Registers statistics associated with this TC. */
154    virtual void regStats(const std::string &name);
155
156    /** Serializes state. */
157    virtual void serialize(std::ostream &os);
158    /** Unserializes state. */
159    virtual void unserialize(Checkpoint *cp, const std::string &section);
160
161    /** Reads the last tick that this thread was activated on. */
162    virtual Tick readLastActivate();
163    /** Reads the last tick that this thread was suspended on. */
164    virtual Tick readLastSuspend();
165
166    /** Clears the function profiling information. */
167    virtual void profileClear();
168    /** Samples the function profiling information. */
169    virtual void profileSample();
170
171    /** Copies the architectural registers from another TC into this TC. */
172    virtual void copyArchRegs(ThreadContext *tc);
173
174    /** Resets all architectural registers to 0. */
175    virtual void clearArchRegs();
176
177    /** Reads an integer register. */
178    virtual uint64_t readIntReg(int reg_idx);
179
180    virtual FloatReg readFloatReg(int reg_idx);
181
182    virtual FloatRegBits readFloatRegBits(int reg_idx);
183
184    /** Sets an integer register to a value. */
185    virtual void setIntReg(int reg_idx, uint64_t val);
186
187    virtual void setFloatReg(int reg_idx, FloatReg val);
188
189    virtual void setFloatRegBits(int reg_idx, FloatRegBits val);
190
191    /** Reads this thread's PC state. */
192    virtual TheISA::PCState pcState()
193    { return cpu->pcState(thread->threadId()); }
194
195    /** Sets this thread's PC state. */
196    virtual void pcState(const TheISA::PCState &val);
197
198    virtual void pcStateNoRecord(const TheISA::PCState &val);
199
200    /** Reads this thread's PC. */
201    virtual Addr instAddr()
202    { return cpu->instAddr(thread->threadId()); }
203
204    /** Reads this thread's next PC. */
205    virtual Addr nextInstAddr()
206    { return cpu->nextInstAddr(thread->threadId()); }
207
208    /** Reads this thread's next PC. */
209    virtual MicroPC microPC()
210    { return cpu->microPC(thread->threadId()); }
211
212    /** Reads a miscellaneous register. */
213    virtual MiscReg readMiscRegNoEffect(int misc_reg)
214    { return cpu->readMiscRegNoEffect(misc_reg, thread->threadId()); }
215
216    /** Reads a misc. register, including any side-effects the
217     * read might have as defined by the architecture. */
218    virtual MiscReg readMiscReg(int misc_reg)
219    { return cpu->readMiscReg(misc_reg, thread->threadId()); }
220
221    /** Sets a misc. register. */
222    virtual void setMiscRegNoEffect(int misc_reg, const MiscReg &val);
223
224    /** Sets a misc. register, including any side-effects the
225     * write might have as defined by the architecture. */
226    virtual void setMiscReg(int misc_reg, const MiscReg &val);
227
228    virtual int flattenIntIndex(int reg);
229    virtual int flattenFloatIndex(int reg);
230
231    /** Returns the number of consecutive store conditional failures. */
232    // @todo: Figure out where these store cond failures should go.
233    virtual unsigned readStCondFailures()
234    { return thread->storeCondFailures; }
235
236    /** Sets the number of consecutive store conditional failures. */
237    virtual void setStCondFailures(unsigned sc_failures)
238    { thread->storeCondFailures = sc_failures; }
239
240    // Only really makes sense for old CPU model.  Lots of code
241    // outside the CPU still checks this function, so it will
242    // always return false to keep everything working.
243    /** Checks if the thread is misspeculating.  Because it is
244     * very difficult to determine if the thread is
245     * misspeculating, this is set as false. */
246    virtual bool misspeculating() { return false; }
247
248    /** Executes a syscall in SE mode. */
249    virtual void syscall(int64_t callnum)
250    { return cpu->syscall(callnum, thread->threadId()); }
251
252    /** Reads the funcExeInst counter. */
253    virtual Counter readFuncExeInst() { return thread->funcExeInst; }
254
255    /** Returns pointer to the quiesce event. */
256    virtual EndQuiesceEvent *getQuiesceEvent()
257    {
258        return this->thread->quiesceEvent;
259    }
260
261};
262
263#endif
264