thread_context_impl.hh revision 8887:20ea02da9c53
1/*
2 * Copyright (c) 2010-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 *          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->inSyscall = false;
100    thread->trapPending = false;
101}
102
103template <class Impl>
104void
105O3ThreadContext<Impl>::activate(int 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(int 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(int 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>
162void
163O3ThreadContext<Impl>::serialize(std::ostream &os)
164{
165    if (FullSystem && thread->kernelStats)
166        thread->kernelStats->serialize(os);
167}
168
169template <class Impl>
170void
171O3ThreadContext<Impl>::unserialize(Checkpoint *cp, const std::string &section)
172{
173    if (FullSystem && thread->kernelStats)
174        thread->kernelStats->unserialize(cp, section);
175}
176
177template <class Impl>
178Tick
179O3ThreadContext<Impl>::readLastActivate()
180{
181    return thread->lastActivate;
182}
183
184template <class Impl>
185Tick
186O3ThreadContext<Impl>::readLastSuspend()
187{
188    return thread->lastSuspend;
189}
190
191template <class Impl>
192void
193O3ThreadContext<Impl>::profileClear()
194{
195    thread->profileClear();
196}
197
198template <class Impl>
199void
200O3ThreadContext<Impl>::profileSample()
201{
202    thread->profileSample();
203}
204
205template <class Impl>
206void
207O3ThreadContext<Impl>::copyArchRegs(ThreadContext *tc)
208{
209    // Prevent squashing
210    thread->inSyscall = true;
211    TheISA::copyRegs(tc, this);
212    thread->inSyscall = false;
213
214    if (!FullSystem)
215        this->thread->funcExeInst = tc->readFuncExeInst();
216}
217
218template <class Impl>
219void
220O3ThreadContext<Impl>::clearArchRegs()
221{
222    cpu->isa[thread->threadId()].clear();
223}
224
225template <class Impl>
226uint64_t
227O3ThreadContext<Impl>::readIntReg(int reg_idx)
228{
229    reg_idx = cpu->isa[thread->threadId()].flattenIntIndex(reg_idx);
230    return cpu->readArchIntReg(reg_idx, thread->threadId());
231}
232
233template <class Impl>
234TheISA::FloatReg
235O3ThreadContext<Impl>::readFloatReg(int reg_idx)
236{
237    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
238    return cpu->readArchFloatReg(reg_idx, thread->threadId());
239}
240
241template <class Impl>
242TheISA::FloatRegBits
243O3ThreadContext<Impl>::readFloatRegBits(int reg_idx)
244{
245    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
246    return cpu->readArchFloatRegInt(reg_idx, thread->threadId());
247}
248
249template <class Impl>
250void
251O3ThreadContext<Impl>::setIntReg(int reg_idx, uint64_t val)
252{
253    reg_idx = cpu->isa[thread->threadId()].flattenIntIndex(reg_idx);
254    cpu->setArchIntReg(reg_idx, val, thread->threadId());
255
256    // Squash if we're not already in a state update mode.
257    if (!thread->trapPending && !thread->inSyscall) {
258        cpu->squashFromTC(thread->threadId());
259    }
260}
261
262template <class Impl>
263void
264O3ThreadContext<Impl>::setFloatReg(int reg_idx, FloatReg val)
265{
266    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
267    cpu->setArchFloatReg(reg_idx, val, thread->threadId());
268
269    if (!thread->trapPending && !thread->inSyscall) {
270        cpu->squashFromTC(thread->threadId());
271    }
272}
273
274template <class Impl>
275void
276O3ThreadContext<Impl>::setFloatRegBits(int reg_idx, FloatRegBits val)
277{
278    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
279    cpu->setArchFloatRegInt(reg_idx, val, thread->threadId());
280
281    // Squash if we're not already in a state update mode.
282    if (!thread->trapPending && !thread->inSyscall) {
283        cpu->squashFromTC(thread->threadId());
284    }
285}
286
287template <class Impl>
288void
289O3ThreadContext<Impl>::pcState(const TheISA::PCState &val)
290{
291    cpu->pcState(val, thread->threadId());
292
293    // Squash if we're not already in a state update mode.
294    if (!thread->trapPending && !thread->inSyscall) {
295        cpu->squashFromTC(thread->threadId());
296    }
297}
298
299template <class Impl>
300void
301O3ThreadContext<Impl>::pcStateNoRecord(const TheISA::PCState &val)
302{
303    cpu->pcState(val, thread->threadId());
304
305    // Squash if we're not already in a state update mode.
306    if (!thread->trapPending && !thread->inSyscall) {
307        cpu->squashFromTC(thread->threadId());
308    }
309}
310
311template <class Impl>
312int
313O3ThreadContext<Impl>::flattenIntIndex(int reg)
314{
315    return cpu->isa[thread->threadId()].flattenIntIndex(reg);
316}
317
318template <class Impl>
319int
320O3ThreadContext<Impl>::flattenFloatIndex(int reg)
321{
322    return cpu->isa[thread->threadId()].flattenFloatIndex(reg);
323}
324
325template <class Impl>
326void
327O3ThreadContext<Impl>::setMiscRegNoEffect(int misc_reg, const MiscReg &val)
328{
329    cpu->setMiscRegNoEffect(misc_reg, val, thread->threadId());
330
331    // Squash if we're not already in a state update mode.
332    if (!thread->trapPending && !thread->inSyscall) {
333        cpu->squashFromTC(thread->threadId());
334    }
335}
336
337template <class Impl>
338void
339O3ThreadContext<Impl>::setMiscReg(int misc_reg, const MiscReg &val)
340{
341    cpu->setMiscReg(misc_reg, val, thread->threadId());
342
343    // Squash if we're not already in a state update mode.
344    if (!thread->trapPending && !thread->inSyscall) {
345        cpu->squashFromTC(thread->threadId());
346    }
347}
348
349