serialization for binning. it is WAAAAAAAY past my bedtime.
[gem5.git] / cpu / exec_context.cc
1 /*
2 * Copyright (c) 2003 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
29 #include <string>
30
31 #include "cpu/base_cpu.hh"
32 #include "cpu/exec_context.hh"
33
34 #ifdef FULL_SYSTEM
35 #include "sim/system.hh"
36 #else
37 #include "sim/process.hh"
38 #endif
39
40 using namespace std;
41
42 // constructor
43 #ifdef FULL_SYSTEM
44 ExecContext::ExecContext(BaseCPU *_cpu, int _thread_num, System *_sys,
45 AlphaItb *_itb, AlphaDtb *_dtb,
46 FunctionalMemory *_mem)
47 : _status(ExecContext::Unallocated),
48 kernelStats(this, _cpu), cpu(_cpu), thread_num(_thread_num),
49 cpu_id(-1), mem(_mem), itb(_itb), dtb(_dtb), system(_sys),
50 memCtrl(_sys->memCtrl), physmem(_sys->physmem),
51 swCtx(NULL), func_exe_inst(0), storeCondFailures(0)
52 {
53 memset(&regs, 0, sizeof(RegFile));
54 }
55 #else
56 ExecContext::ExecContext(BaseCPU *_cpu, int _thread_num,
57 Process *_process, int _asid)
58 : _status(ExecContext::Unallocated),
59 cpu(_cpu), thread_num(_thread_num), cpu_id(-1),
60 process(_process), mem(process->getMemory()), asid(_asid),
61 func_exe_inst(0), storeCondFailures(0)
62 {
63 }
64
65 ExecContext::ExecContext(BaseCPU *_cpu, int _thread_num,
66 FunctionalMemory *_mem, int _asid)
67 : cpu(_cpu), thread_num(_thread_num), process(0), mem(_mem), asid(_asid),
68 func_exe_inst(0), storeCondFailures(0)
69 {
70 }
71 #endif
72
73
74 void
75 ExecContext::takeOverFrom(ExecContext *oldContext)
76 {
77 // some things should already be set up
78 assert(mem == oldContext->mem);
79 #ifdef FULL_SYSTEM
80 assert(system == oldContext->system);
81 #else
82 assert(process == oldContext->process);
83 #endif
84
85 // copy over functional state
86 _status = oldContext->_status;
87 #ifdef FULL_SYSTEM
88 kernelStats = oldContext->kernelStats;
89 #endif
90 regs = oldContext->regs;
91 cpu_id = oldContext->cpu_id;
92 func_exe_inst = oldContext->func_exe_inst;
93
94 storeCondFailures = 0;
95
96 oldContext->_status = ExecContext::Unallocated;
97 }
98
99
100 void
101 ExecContext::serialize(ostream &os)
102 {
103 SERIALIZE_ENUM(_status);
104 regs.serialize(os);
105 // thread_num and cpu_id are deterministic from the config
106 SERIALIZE_SCALAR(func_exe_inst);
107
108 bool ctx = false;
109 if (swCtx) {
110 ctx = true;
111 SERIALIZE_SCALAR(ctx);
112 SERIALIZE_SCALAR(swCtx->calls);
113 std::stack<fnCall *> *stack = &(swCtx->callStack);
114 fnCall *top;
115 int size = stack->size();
116 SERIALIZE_SCALAR(size);
117
118 for (int j=0; j<size; ++j) {
119 top = stack->top();
120 paramOut(os, csprintf("stackpos[%d]",j), top->name);
121 }
122 } else {
123 SERIALIZE_SCALAR(ctx);
124 }
125 if (system->bin) {
126 Statistics::MainBin *cur = Statistics::MainBin::curBin();
127 string bin_name = cur->name();
128 SERIALIZE_SCALAR(bin_name);
129 }
130 }
131
132
133 void
134 ExecContext::unserialize(Checkpoint *cp, const std::string &section)
135 {
136 UNSERIALIZE_ENUM(_status);
137 regs.unserialize(cp, section);
138 // thread_num and cpu_id are deterministic from the config
139 UNSERIALIZE_SCALAR(func_exe_inst);
140
141 bool ctx;
142 UNSERIALIZE_SCALAR(ctx);
143 if (ctx) {
144 swCtx = new SWContext;
145 UNSERIALIZE_SCALAR(swCtx->calls);
146 int size;
147 UNSERIALIZE_SCALAR(size);
148 fnCall *call = new fnCall[size];
149 for (int i=0; i<size; ++i) {
150 paramIn(cp, section, csprintf("stackpos[%d]",i), call[i].name);
151 call[i].myBin = system->getBin(call[i].name);
152 }
153
154 for (int i=size-1; i>=0; --i) {
155 swCtx->callStack.push(&(call[i]));
156 }
157
158 }
159
160 if (system->bin) {
161 string bin_name;
162 UNSERIALIZE_SCALAR(bin_name);
163 system->getBin(bin_name)->activate();
164 }
165 }
166
167
168 void
169 ExecContext::activate(int delay)
170 {
171 if (status() == Active)
172 return;
173
174 _status = Active;
175 cpu->activateContext(thread_num, delay);
176 }
177
178 void
179 ExecContext::suspend()
180 {
181 if (status() == Suspended)
182 return;
183
184 #ifdef FULL_SYSTEM
185 // Don't change the status from active if there are pending interrupts
186 if (cpu->check_interrupts()) {
187 assert(status() == Active);
188 return;
189 }
190 #endif
191
192 _status = Suspended;
193 cpu->suspendContext(thread_num);
194 }
195
196 void
197 ExecContext::deallocate()
198 {
199 if (status() == Unallocated)
200 return;
201
202 _status = Unallocated;
203 cpu->deallocateContext(thread_num);
204 }
205
206 void
207 ExecContext::halt()
208 {
209 if (status() == Halted)
210 return;
211
212 _status = Halted;
213 cpu->haltContext(thread_num);
214 }
215
216
217 void
218 ExecContext::regStats(const string &name)
219 {
220 #ifdef FULL_SYSTEM
221 kernelStats.regStats(name + ".kern");
222 #endif
223 }