thread_context.hh revision 13622:ba31c2a23eca
1/*
2 * Copyright (c) 2011-2012, 2016-2018 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating
9 * to a hardware implementation of the functionality of the software
10 * licensed hereunder.  You may use the software subject to the license
11 * terms below provided that you ensure that this notice is replicated
12 * unmodified and in its entirety in all distributions of the software,
13 * modified or unmodified, in source code or in binary form.
14 *
15 * Copyright (c) 2004-2006 The Regents of The University of Michigan
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Kevin Lim
42 */
43
44#ifndef __CPU_O3_THREAD_CONTEXT_HH__
45#define __CPU_O3_THREAD_CONTEXT_HH__
46
47#include "config/the_isa.hh"
48#include "cpu/o3/isa_specific.hh"
49#include "cpu/thread_context.hh"
50
51class EndQuiesceEvent;
52namespace Kernel {
53    class Statistics;
54}
55
56/**
57 * Derived ThreadContext class for use with the O3CPU.  It
58 * provides the interface for any external objects to access a
59 * single thread's state and some general CPU state.  Any time
60 * external objects try to update state through this interface,
61 * the CPU will create an event to squash all in-flight
62 * instructions in order to ensure state is maintained correctly.
63 * It must be defined specifically for the O3CPU because
64 * not all architectural state is located within the O3ThreadState
65 * (such as the commit PC, and registers), and specific actions
66 * must be taken when using this interface (such as squashing all
67 * in-flight instructions when doing a write to this interface).
68 */
69template <class Impl>
70class O3ThreadContext : public ThreadContext
71{
72  public:
73    typedef typename Impl::O3CPU O3CPU;
74
75   /** Pointer to the CPU. */
76    O3CPU *cpu;
77
78    /** Pointer to the thread state that this TC corrseponds to. */
79    O3ThreadState<Impl> *thread;
80
81    /** Returns a pointer to the ITB. */
82    BaseTLB *getITBPtr() { return cpu->itb; }
83
84    /** Returns a pointer to the DTB. */
85    BaseTLB *getDTBPtr() { return cpu->dtb; }
86
87    CheckerCPU *getCheckerCpuPtr() { return NULL; }
88
89    TheISA::Decoder *
90    getDecoderPtr()
91    {
92        return cpu->fetch.decoder[thread->threadId()];
93    }
94
95    /** Returns a pointer to this CPU. */
96    virtual BaseCPU *getCpuPtr() { return cpu; }
97
98    /** Reads this CPU's ID. */
99    virtual int cpuId() const { return cpu->cpuId(); }
100
101    /** Reads this CPU's Socket ID. */
102    virtual uint32_t socketId() const { return cpu->socketId(); }
103
104    virtual ContextID contextId() const { return thread->contextId(); }
105
106    virtual void setContextId(int id) { thread->setContextId(id); }
107
108    /** Returns this thread's ID number. */
109    virtual int threadId() const { return thread->threadId(); }
110    virtual void setThreadId(int id) { return thread->setThreadId(id); }
111
112    /** Returns a pointer to the system. */
113    virtual System *getSystemPtr() { return cpu->system; }
114
115    /** Returns a pointer to this thread's kernel statistics. */
116    virtual TheISA::Kernel::Statistics *getKernelStats()
117    { return thread->kernelStats; }
118
119    /** Returns a pointer to this thread's process. */
120    virtual Process *getProcessPtr() { return thread->getProcessPtr(); }
121
122    virtual void setProcessPtr(Process *p) { thread->setProcessPtr(p); }
123
124    virtual PortProxy &getPhysProxy() { return thread->getPhysProxy(); }
125
126    virtual FSTranslatingPortProxy &getVirtProxy();
127
128    virtual void initMemProxies(ThreadContext *tc)
129    { thread->initMemProxies(tc); }
130
131    virtual SETranslatingPortProxy &getMemProxy()
132    { return thread->getMemProxy(); }
133
134    /** Returns this thread's status. */
135    virtual Status status() const { return thread->status(); }
136
137    /** Sets this thread's status. */
138    virtual void setStatus(Status new_status)
139    { thread->setStatus(new_status); }
140
141    /** Set the status to Active. */
142    virtual void activate();
143
144    /** Set the status to Suspended. */
145    virtual void suspend();
146
147    /** Set the status to Halted. */
148    virtual void halt();
149
150    /** Dumps the function profiling information.
151     * @todo: Implement.
152     */
153    virtual void dumpFuncProfile();
154
155    /** Takes over execution of a thread from another CPU. */
156    virtual void takeOverFrom(ThreadContext *old_context);
157
158    /** Registers statistics associated with this TC. */
159    virtual void regStats(const std::string &name);
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 RegVal
179    readReg(int reg_idx)
180    {
181        return readIntRegFlat(flattenRegId(RegId(IntRegClass,
182                                                 reg_idx)).index());
183    }
184    virtual RegVal
185    readIntReg(int reg_idx)
186    {
187        return readIntRegFlat(flattenRegId(RegId(IntRegClass,
188                                                 reg_idx)).index());
189    }
190
191    virtual RegVal
192    readFloatReg(int reg_idx)
193    {
194        return readFloatRegFlat(flattenRegId(RegId(FloatRegClass,
195                                             reg_idx)).index());
196    }
197
198    virtual const VecRegContainer &
199    readVecReg(const RegId& id) const
200    {
201        return readVecRegFlat(flattenRegId(id).index());
202    }
203
204    /**
205     * Read vector register operand for modification, hierarchical indexing.
206     */
207    virtual VecRegContainer &
208    getWritableVecReg(const RegId& id)
209    {
210        return getWritableVecRegFlat(flattenRegId(id).index());
211    }
212
213    /** Vector Register Lane Interfaces. */
214    /** @{ */
215    /** Reads source vector 8bit operand. */
216    virtual ConstVecLane8
217    readVec8BitLaneReg(const RegId& id) const
218    {
219        return readVecLaneFlat<uint8_t>(flattenRegId(id).index(),
220                    id.elemIndex());
221    }
222
223    /** Reads source vector 16bit operand. */
224    virtual ConstVecLane16
225    readVec16BitLaneReg(const RegId& id) const
226    {
227        return readVecLaneFlat<uint16_t>(flattenRegId(id).index(),
228                    id.elemIndex());
229    }
230
231    /** Reads source vector 32bit operand. */
232    virtual ConstVecLane32
233    readVec32BitLaneReg(const RegId& id) const
234    {
235        return readVecLaneFlat<uint32_t>(flattenRegId(id).index(),
236                    id.elemIndex());
237    }
238
239    /** Reads source vector 64bit operand. */
240    virtual ConstVecLane64
241    readVec64BitLaneReg(const RegId& id) const
242    {
243        return readVecLaneFlat<uint64_t>(flattenRegId(id).index(),
244                    id.elemIndex());
245    }
246
247    /** Write a lane of the destination vector register. */
248    virtual void setVecLane(const RegId& reg,
249            const LaneData<LaneSize::Byte>& val)
250    { return setVecLaneFlat(flattenRegId(reg).index(), reg.elemIndex(), val); }
251    virtual void setVecLane(const RegId& reg,
252            const LaneData<LaneSize::TwoByte>& val)
253    { return setVecLaneFlat(flattenRegId(reg).index(), reg.elemIndex(), val); }
254    virtual void setVecLane(const RegId& reg,
255            const LaneData<LaneSize::FourByte>& val)
256    { return setVecLaneFlat(flattenRegId(reg).index(), reg.elemIndex(), val); }
257    virtual void setVecLane(const RegId& reg,
258            const LaneData<LaneSize::EightByte>& val)
259    { return setVecLaneFlat(flattenRegId(reg).index(), reg.elemIndex(), val); }
260    /** @} */
261
262    virtual const VecElem& readVecElem(const RegId& reg) const {
263        return readVecElemFlat(flattenRegId(reg).index(), reg.elemIndex());
264    }
265
266    virtual const VecPredRegContainer& readVecPredReg(const RegId& id) const {
267        return readVecPredRegFlat(flattenRegId(id).index());
268    }
269
270    virtual VecPredRegContainer& getWritableVecPredReg(const RegId& id) {
271        return getWritableVecPredRegFlat(flattenRegId(id).index());
272    }
273
274    virtual RegVal
275    readCCReg(int reg_idx)
276    {
277        return readCCRegFlat(flattenRegId(RegId(CCRegClass,
278                                                 reg_idx)).index());
279    }
280
281    /** Sets an integer register to a value. */
282    virtual void
283    setIntReg(int reg_idx, RegVal val)
284    {
285        setIntRegFlat(flattenRegId(RegId(IntRegClass, reg_idx)).index(), val);
286    }
287
288    virtual void
289    setFloatReg(int reg_idx, RegVal val)
290    {
291        setFloatRegFlat(flattenRegId(RegId(FloatRegClass,
292                                           reg_idx)).index(), val);
293    }
294
295    virtual void
296    setVecReg(const RegId& reg, const VecRegContainer& val)
297    {
298        setVecRegFlat(flattenRegId(reg).index(), val);
299    }
300
301    virtual void
302    setVecElem(const RegId& reg, const VecElem& val)
303    {
304        setVecElemFlat(flattenRegId(reg).index(), reg.elemIndex(), val);
305    }
306
307    virtual void
308    setVecPredReg(const RegId& reg,
309                  const VecPredRegContainer& val)
310    {
311        setVecPredRegFlat(flattenRegId(reg).index(), val);
312    }
313
314    virtual void
315    setCCReg(int reg_idx, RegVal val)
316    {
317        setCCRegFlat(flattenRegId(RegId(CCRegClass, reg_idx)).index(), val);
318    }
319
320    /** Reads this thread's PC state. */
321    virtual TheISA::PCState pcState()
322    { return cpu->pcState(thread->threadId()); }
323
324    /** Sets this thread's PC state. */
325    virtual void pcState(const TheISA::PCState &val);
326
327    virtual void pcStateNoRecord(const TheISA::PCState &val);
328
329    /** Reads this thread's PC. */
330    virtual Addr instAddr()
331    { return cpu->instAddr(thread->threadId()); }
332
333    /** Reads this thread's next PC. */
334    virtual Addr nextInstAddr()
335    { return cpu->nextInstAddr(thread->threadId()); }
336
337    /** Reads this thread's next PC. */
338    virtual MicroPC microPC()
339    { return cpu->microPC(thread->threadId()); }
340
341    /** Reads a miscellaneous register. */
342    virtual RegVal readMiscRegNoEffect(int misc_reg) const
343    { return cpu->readMiscRegNoEffect(misc_reg, thread->threadId()); }
344
345    /** Reads a misc. register, including any side-effects the
346     * read might have as defined by the architecture. */
347    virtual RegVal readMiscReg(int misc_reg)
348    { return cpu->readMiscReg(misc_reg, thread->threadId()); }
349
350    /** Sets a misc. register. */
351    virtual void setMiscRegNoEffect(int misc_reg, RegVal val);
352
353    /** Sets a misc. register, including any side-effects the
354     * write might have as defined by the architecture. */
355    virtual void setMiscReg(int misc_reg, RegVal val);
356
357    virtual RegId flattenRegId(const RegId& regId) const;
358
359    /** Returns the number of consecutive store conditional failures. */
360    // @todo: Figure out where these store cond failures should go.
361    virtual unsigned readStCondFailures()
362    { return thread->storeCondFailures; }
363
364    /** Sets the number of consecutive store conditional failures. */
365    virtual void setStCondFailures(unsigned sc_failures)
366    { thread->storeCondFailures = sc_failures; }
367
368    /** Executes a syscall in SE mode. */
369    virtual void syscall(int64_t callnum, Fault *fault)
370    { return cpu->syscall(callnum, thread->threadId(), fault); }
371
372    /** Reads the funcExeInst counter. */
373    virtual Counter readFuncExeInst() { return thread->funcExeInst; }
374
375    /** Returns pointer to the quiesce event. */
376    virtual EndQuiesceEvent *
377    getQuiesceEvent()
378    {
379        return this->thread->quiesceEvent;
380    }
381    /** check if the cpu is currently in state update mode and squash if not.
382     * This function will return true if a trap is pending or if a fault or
383     * similar is currently writing to the thread context and doesn't want
384     * reset all the state (see noSquashFromTC).
385     */
386    inline void
387    conditionalSquash()
388    {
389        if (!thread->trapPending && !thread->noSquashFromTC)
390            cpu->squashFromTC(thread->threadId());
391    }
392
393    virtual RegVal readIntRegFlat(int idx);
394    virtual void setIntRegFlat(int idx, RegVal val);
395
396    virtual RegVal readFloatRegFlat(int idx);
397    virtual void setFloatRegFlat(int idx, RegVal val);
398
399    virtual const VecRegContainer& readVecRegFlat(int idx) const;
400    /** Read vector register operand for modification, flat indexing. */
401    virtual VecRegContainer& getWritableVecRegFlat(int idx);
402    virtual void setVecRegFlat(int idx, const VecRegContainer& val);
403
404    template <typename VecElem>
405    VecLaneT<VecElem, true>
406    readVecLaneFlat(int idx, int lId) const
407    {
408        return cpu->template readArchVecLane<VecElem>(idx, lId,
409                thread->threadId());
410    }
411
412    template <typename LD>
413    void setVecLaneFlat(int idx, int lId, const LD& val)
414    {
415        cpu->template setArchVecLane(idx, lId, thread->threadId(), val);
416    }
417
418    virtual const VecElem& readVecElemFlat(const RegIndex& idx,
419                                           const ElemIndex& elemIndex) const;
420    virtual void setVecElemFlat(const RegIndex& idx, const ElemIndex& elemIdx,
421                                const VecElem& val);
422
423    virtual const VecPredRegContainer& readVecPredRegFlat(int idx)
424        const override;
425    virtual VecPredRegContainer& getWritableVecPredRegFlat(int idx) override;
426    virtual void setVecPredRegFlat(int idx,
427                                   const VecPredRegContainer& val) override;
428
429    virtual RegVal readCCRegFlat(int idx);
430    virtual void setCCRegFlat(int idx, RegVal val);
431};
432
433#endif
434