thread_context_impl.hh revision 7679:f26cc2c68b48
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Kevin Lim
29 *          Korey Sewell
30 */
31
32#include "arch/registers.hh"
33#include "config/the_isa.hh"
34#include "cpu/o3/thread_context.hh"
35#include "cpu/quiesce_event.hh"
36
37#if FULL_SYSTEM
38template <class Impl>
39VirtualPort *
40O3ThreadContext<Impl>::getVirtPort()
41{
42    return thread->getVirtPort();
43}
44
45template <class Impl>
46void
47O3ThreadContext<Impl>::dumpFuncProfile()
48{
49    thread->dumpFuncProfile();
50}
51#endif
52
53template <class Impl>
54void
55O3ThreadContext<Impl>::takeOverFrom(ThreadContext *old_context)
56{
57    // some things should already be set up
58#if FULL_SYSTEM
59    assert(getSystemPtr() == old_context->getSystemPtr());
60#else
61    assert(getProcessPtr() == old_context->getProcessPtr());
62#endif
63
64    // copy over functional state
65    setStatus(old_context->status());
66    copyArchRegs(old_context);
67    setContextId(old_context->contextId());
68    setThreadId(old_context->threadId());
69
70#if !FULL_SYSTEM
71    thread->funcExeInst = old_context->readFuncExeInst();
72#else
73    EndQuiesceEvent *other_quiesce = old_context->getQuiesceEvent();
74    if (other_quiesce) {
75        // Point the quiesce event's TC at this TC so that it wakes up
76        // the proper CPU.
77        other_quiesce->tc = this;
78    }
79    if (thread->quiesceEvent) {
80        thread->quiesceEvent->tc = this;
81    }
82
83    // Transfer kernel stats from one CPU to the other.
84    thread->kernelStats = old_context->getKernelStats();
85//    storeCondFailures = 0;
86    cpu->lockFlag = false;
87#endif
88
89    old_context->setStatus(ThreadContext::Halted);
90
91    thread->inSyscall = false;
92    thread->trapPending = false;
93}
94
95template <class Impl>
96void
97O3ThreadContext<Impl>::activate(int delay)
98{
99    DPRINTF(O3CPU, "Calling activate on Thread Context %d\n",
100            threadId());
101
102    if (thread->status() == ThreadContext::Active)
103        return;
104
105#if FULL_SYSTEM
106    thread->lastActivate = curTick;
107#endif
108
109    thread->setStatus(ThreadContext::Active);
110
111    // status() == Suspended
112    cpu->activateContext(thread->threadId(), delay);
113}
114
115template <class Impl>
116void
117O3ThreadContext<Impl>::suspend(int delay)
118{
119    DPRINTF(O3CPU, "Calling suspend on Thread Context %d\n",
120            threadId());
121
122    if (thread->status() == ThreadContext::Suspended)
123        return;
124
125#if FULL_SYSTEM
126    thread->lastActivate = curTick;
127    thread->lastSuspend = curTick;
128#endif
129/*
130#if FULL_SYSTEM
131    // Don't change the status from active if there are pending interrupts
132    if (cpu->checkInterrupts()) {
133        assert(status() == ThreadContext::Active);
134        return;
135    }
136#endif
137*/
138    thread->setStatus(ThreadContext::Suspended);
139    cpu->suspendContext(thread->threadId());
140}
141
142template <class Impl>
143void
144O3ThreadContext<Impl>::halt(int delay)
145{
146    DPRINTF(O3CPU, "Calling halt on Thread Context %d\n",
147            threadId());
148
149    if (thread->status() == ThreadContext::Halted)
150        return;
151
152    thread->setStatus(ThreadContext::Halted);
153    cpu->haltContext(thread->threadId());
154}
155
156template <class Impl>
157void
158O3ThreadContext<Impl>::regStats(const std::string &name)
159{
160#if FULL_SYSTEM
161    thread->kernelStats = new TheISA::Kernel::Statistics(cpu->system);
162    thread->kernelStats->regStats(name + ".kern");
163#endif
164}
165
166template <class Impl>
167void
168O3ThreadContext<Impl>::serialize(std::ostream &os)
169{
170#if FULL_SYSTEM
171    if (thread->kernelStats)
172        thread->kernelStats->serialize(os);
173#endif
174
175}
176
177template <class Impl>
178void
179O3ThreadContext<Impl>::unserialize(Checkpoint *cp, const std::string &section)
180{
181#if FULL_SYSTEM
182    if (thread->kernelStats)
183        thread->kernelStats->unserialize(cp, section);
184#endif
185
186}
187
188#if FULL_SYSTEM
189template <class Impl>
190Tick
191O3ThreadContext<Impl>::readLastActivate()
192{
193    return thread->lastActivate;
194}
195
196template <class Impl>
197Tick
198O3ThreadContext<Impl>::readLastSuspend()
199{
200    return thread->lastSuspend;
201}
202
203template <class Impl>
204void
205O3ThreadContext<Impl>::profileClear()
206{
207    thread->profileClear();
208}
209
210template <class Impl>
211void
212O3ThreadContext<Impl>::profileSample()
213{
214    thread->profileSample();
215}
216#endif
217
218template <class Impl>
219void
220O3ThreadContext<Impl>::copyArchRegs(ThreadContext *tc)
221{
222    // This function will mess things up unless the ROB is empty and
223    // there are no instructions in the pipeline.
224    ThreadID tid = thread->threadId();
225    PhysRegIndex renamed_reg;
226
227    // First loop through the integer registers.
228    for (int i = 0; i < TheISA::NumIntRegs; ++i) {
229        renamed_reg = cpu->renameMap[tid].lookup(i);
230
231        DPRINTF(O3CPU, "Copying over register %i, had data %lli, "
232                "now has data %lli.\n",
233                renamed_reg, cpu->readIntReg(renamed_reg),
234                tc->readIntReg(i));
235
236        cpu->setIntReg(renamed_reg, tc->readIntReg(i));
237    }
238
239    // Then loop through the floating point registers.
240    for (int i = 0; i < TheISA::NumFloatRegs; ++i) {
241        renamed_reg = cpu->renameMap[tid].lookup(i + TheISA::FP_Base_DepTag);
242        cpu->setFloatRegBits(renamed_reg,
243                             tc->readFloatRegBits(i));
244    }
245
246    // Copy the misc regs.
247    TheISA::copyMiscRegs(tc, this);
248
249    // Then finally set the PC, the next PC, the nextNPC, the micropc, and the
250    // next micropc.
251    cpu->setPC(tc->readPC(), tid);
252    cpu->setNextPC(tc->readNextPC(), tid);
253    cpu->setNextNPC(tc->readNextNPC(), tid);
254    cpu->setMicroPC(tc->readMicroPC(), tid);
255    cpu->setNextMicroPC(tc->readNextMicroPC(), tid);
256#if !FULL_SYSTEM
257    this->thread->funcExeInst = tc->readFuncExeInst();
258#endif
259}
260
261template <class Impl>
262void
263O3ThreadContext<Impl>::clearArchRegs()
264{}
265
266template <class Impl>
267uint64_t
268O3ThreadContext<Impl>::readIntReg(int reg_idx)
269{
270    reg_idx = cpu->isa[thread->threadId()].flattenIntIndex(reg_idx);
271    return cpu->readArchIntReg(reg_idx, thread->threadId());
272}
273
274template <class Impl>
275TheISA::FloatReg
276O3ThreadContext<Impl>::readFloatReg(int reg_idx)
277{
278    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
279    return cpu->readArchFloatReg(reg_idx, thread->threadId());
280}
281
282template <class Impl>
283TheISA::FloatRegBits
284O3ThreadContext<Impl>::readFloatRegBits(int reg_idx)
285{
286    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
287    return cpu->readArchFloatRegInt(reg_idx, thread->threadId());
288}
289
290template <class Impl>
291void
292O3ThreadContext<Impl>::setIntReg(int reg_idx, uint64_t val)
293{
294    reg_idx = cpu->isa[thread->threadId()].flattenIntIndex(reg_idx);
295    cpu->setArchIntReg(reg_idx, val, thread->threadId());
296
297    // Squash if we're not already in a state update mode.
298    if (!thread->trapPending && !thread->inSyscall) {
299        cpu->squashFromTC(thread->threadId());
300    }
301}
302
303template <class Impl>
304void
305O3ThreadContext<Impl>::setFloatReg(int reg_idx, FloatReg val)
306{
307    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
308    cpu->setArchFloatReg(reg_idx, val, thread->threadId());
309
310    if (!thread->trapPending && !thread->inSyscall) {
311        cpu->squashFromTC(thread->threadId());
312    }
313}
314
315template <class Impl>
316void
317O3ThreadContext<Impl>::setFloatRegBits(int reg_idx, FloatRegBits val)
318{
319    reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx);
320    cpu->setArchFloatRegInt(reg_idx, val, thread->threadId());
321
322    // Squash if we're not already in a state update mode.
323    if (!thread->trapPending && !thread->inSyscall) {
324        cpu->squashFromTC(thread->threadId());
325    }
326}
327
328template <class Impl>
329void
330O3ThreadContext<Impl>::setPC(uint64_t val)
331{
332    cpu->setPC(val, thread->threadId());
333
334    // Squash if we're not already in a state update mode.
335    if (!thread->trapPending && !thread->inSyscall) {
336        cpu->squashFromTC(thread->threadId());
337    }
338}
339
340template <class Impl>
341void
342O3ThreadContext<Impl>::setNextPC(uint64_t val)
343{
344    cpu->setNextPC(val, thread->threadId());
345
346    // Squash if we're not already in a state update mode.
347    if (!thread->trapPending && !thread->inSyscall) {
348        cpu->squashFromTC(thread->threadId());
349    }
350}
351
352template <class Impl>
353void
354O3ThreadContext<Impl>::setMicroPC(uint64_t val)
355{
356    cpu->setMicroPC(val, thread->threadId());
357
358    // Squash if we're not already in a state update mode.
359    if (!thread->trapPending && !thread->inSyscall) {
360        cpu->squashFromTC(thread->threadId());
361    }
362}
363
364template <class Impl>
365void
366O3ThreadContext<Impl>::setNextMicroPC(uint64_t val)
367{
368    cpu->setNextMicroPC(val, thread->threadId());
369
370    // Squash if we're not already in a state update mode.
371    if (!thread->trapPending && !thread->inSyscall) {
372        cpu->squashFromTC(thread->threadId());
373    }
374}
375
376template <class Impl>
377int
378O3ThreadContext<Impl>::flattenIntIndex(int reg)
379{
380    return cpu->isa[thread->threadId()].flattenIntIndex(reg);
381}
382
383template <class Impl>
384int
385O3ThreadContext<Impl>::flattenFloatIndex(int reg)
386{
387    return cpu->isa[thread->threadId()].flattenFloatIndex(reg);
388}
389
390template <class Impl>
391void
392O3ThreadContext<Impl>::setMiscRegNoEffect(int misc_reg, const MiscReg &val)
393{
394    cpu->setMiscRegNoEffect(misc_reg, val, thread->threadId());
395
396    // Squash if we're not already in a state update mode.
397    if (!thread->trapPending && !thread->inSyscall) {
398        cpu->squashFromTC(thread->threadId());
399    }
400}
401
402template <class Impl>
403void
404O3ThreadContext<Impl>::setMiscReg(int misc_reg,
405                                                const MiscReg &val)
406{
407    cpu->setMiscReg(misc_reg, val, thread->threadId());
408
409    // Squash if we're not already in a state update mode.
410    if (!thread->trapPending && !thread->inSyscall) {
411        cpu->squashFromTC(thread->threadId());
412    }
413}
414
415