thread_context_impl.hh revision 9428:029dfe6324d3
1/*
2 * Copyright (c) 2010-2012 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 *          Korey Sewell
42 */
43
44#include "arch/kernel_stats.hh"
45#include "arch/registers.hh"
46#include "config/the_isa.hh"
47#include "cpu/o3/thread_context.hh"
48#include "cpu/quiesce_event.hh"
49#include "debug/O3CPU.hh"
50
51template <class Impl>
52FSTranslatingPortProxy&
53O3ThreadContext<Impl>::getVirtProxy()
54{
55    return thread->getVirtProxy();
56}
57
58template <class Impl>
59void
60O3ThreadContext<Impl>::dumpFuncProfile()
61{
62    thread->dumpFuncProfile();
63}
64
65template <class Impl>
66void
67O3ThreadContext<Impl>::takeOverFrom(ThreadContext *old_context)
68{
69    // some things should already be set up
70    assert(getSystemPtr() == old_context->getSystemPtr());
71    assert(getProcessPtr() == old_context->getProcessPtr());
72
73    // copy over functional state
74    setStatus(old_context->status());
75    copyArchRegs(old_context);
76    setContextId(old_context->contextId());
77    setThreadId(old_context->threadId());
78
79    if (FullSystem) {
80        EndQuiesceEvent *other_quiesce = old_context->getQuiesceEvent();
81        if (other_quiesce) {
82            // Point the quiesce event's TC at this TC so that it wakes up
83            // the proper CPU.
84            other_quiesce->tc = this;
85        }
86        if (thread->quiesceEvent) {
87            thread->quiesceEvent->tc = this;
88        }
89
90        // Transfer kernel stats from one CPU to the other.
91        thread->kernelStats = old_context->getKernelStats();
92        cpu->lockFlag = false;
93    } else {
94        thread->funcExeInst = old_context->readFuncExeInst();
95    }
96
97    old_context->setStatus(ThreadContext::Halted);
98
99    thread->noSquashFromTC = false;
100    thread->trapPending = false;
101}
102
103template <class Impl>
104void
105O3ThreadContext<Impl>::activate(Cycles delay)
106{
107    DPRINTF(O3CPU, "Calling activate on Thread Context %d\n",
108            threadId());
109
110    if (thread->status() == ThreadContext::Active)
111        return;
112
113    thread->lastActivate = curTick();
114    thread->setStatus(ThreadContext::Active);
115
116    // status() == Suspended
117    cpu->activateContext(thread->threadId(), delay);
118}
119
120template <class Impl>
121void
122O3ThreadContext<Impl>::suspend(Cycles delay)
123{
124    DPRINTF(O3CPU, "Calling suspend on Thread Context %d\n",
125            threadId());
126
127    if (thread->status() == ThreadContext::Suspended)
128        return;
129
130    thread->lastActivate = curTick();
131    thread->lastSuspend = curTick();
132
133    thread->setStatus(ThreadContext::Suspended);
134    cpu->suspendContext(thread->threadId());
135}
136
137template <class Impl>
138void
139O3ThreadContext<Impl>::halt(Cycles delay)
140{
141    DPRINTF(O3CPU, "Calling halt on Thread Context %d\n",
142            threadId());
143
144    if (thread->status() == ThreadContext::Halted)
145        return;
146
147    thread->setStatus(ThreadContext::Halted);
148    cpu->haltContext(thread->threadId());
149}
150
151template <class Impl>
152void
153O3ThreadContext<Impl>::regStats(const std::string &name)
154{
155    if (FullSystem) {
156        thread->kernelStats = new TheISA::Kernel::Statistics(cpu->system);
157        thread->kernelStats->regStats(name + ".kern");
158    }
159}
160
161template <class Impl>
162Tick
163O3ThreadContext<Impl>::readLastActivate()
164{
165    return thread->lastActivate;
166}
167
168template <class Impl>
169Tick
170O3ThreadContext<Impl>::readLastSuspend()
171{
172    return thread->lastSuspend;
173}
174
175template <class Impl>
176void
177O3ThreadContext<Impl>::profileClear()
178{
179    thread->profileClear();
180}
181
182template <class Impl>
183void
184O3ThreadContext<Impl>::profileSample()
185{
186    thread->profileSample();
187}
188
189template <class Impl>
190void
191O3ThreadContext<Impl>::copyArchRegs(ThreadContext *tc)
192{
193    // Prevent squashing
194    thread->noSquashFromTC = true;
195    TheISA::copyRegs(tc, this);
196    thread->noSquashFromTC = false;
197
198    if (!FullSystem)
199        this->thread->funcExeInst = tc->readFuncExeInst();
200}
201
202template <class Impl>
203void
204O3ThreadContext<Impl>::clearArchRegs()
205{
206    cpu->isa[thread->threadId()]->clear();
207}
208
209template <class Impl>
210uint64_t
211O3ThreadContext<Impl>::readIntRegFlat(int reg_idx)
212{
213    return cpu->readArchIntReg(reg_idx, thread->threadId());
214}
215
216template <class Impl>
217TheISA::FloatReg
218O3ThreadContext<Impl>::readFloatRegFlat(int reg_idx)
219{
220    return cpu->readArchFloatReg(reg_idx, thread->threadId());
221}
222
223template <class Impl>
224TheISA::FloatRegBits
225O3ThreadContext<Impl>::readFloatRegBitsFlat(int reg_idx)
226{
227    return cpu->readArchFloatRegInt(reg_idx, thread->threadId());
228}
229
230template <class Impl>
231void
232O3ThreadContext<Impl>::setIntRegFlat(int reg_idx, uint64_t val)
233{
234    cpu->setArchIntReg(reg_idx, val, thread->threadId());
235
236    conditionalSquash();
237}
238
239template <class Impl>
240void
241O3ThreadContext<Impl>::setFloatRegFlat(int reg_idx, FloatReg val)
242{
243    cpu->setArchFloatReg(reg_idx, val, thread->threadId());
244
245    conditionalSquash();
246}
247
248template <class Impl>
249void
250O3ThreadContext<Impl>::setFloatRegBitsFlat(int reg_idx, FloatRegBits val)
251{
252    cpu->setArchFloatRegInt(reg_idx, val, thread->threadId());
253
254    conditionalSquash();
255}
256
257template <class Impl>
258void
259O3ThreadContext<Impl>::pcState(const TheISA::PCState &val)
260{
261    cpu->pcState(val, thread->threadId());
262
263    conditionalSquash();
264}
265
266template <class Impl>
267void
268O3ThreadContext<Impl>::pcStateNoRecord(const TheISA::PCState &val)
269{
270    cpu->pcState(val, thread->threadId());
271
272    conditionalSquash();
273}
274
275template <class Impl>
276int
277O3ThreadContext<Impl>::flattenIntIndex(int reg)
278{
279    return cpu->isa[thread->threadId()]->flattenIntIndex(reg);
280}
281
282template <class Impl>
283int
284O3ThreadContext<Impl>::flattenFloatIndex(int reg)
285{
286    return cpu->isa[thread->threadId()]->flattenFloatIndex(reg);
287}
288
289template <class Impl>
290void
291O3ThreadContext<Impl>::setMiscRegNoEffect(int misc_reg, const MiscReg &val)
292{
293    cpu->setMiscRegNoEffect(misc_reg, val, thread->threadId());
294
295    conditionalSquash();
296}
297
298template <class Impl>
299void
300O3ThreadContext<Impl>::setMiscReg(int misc_reg, const MiscReg &val)
301{
302    cpu->setMiscReg(misc_reg, val, thread->threadId());
303
304    conditionalSquash();
305}
306
307