backdoor.cc (8739:925f15f96322) backdoor.cc (8741:491297d019f3)
1/*
2 * Copyright (c) 2001-2005 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: Nathan Binkert
29 * Ali Saidi
30 * Steve Reinhardt
31 * Erik Hallnor
32 */
33
34/** @file
35 * Alpha Console Backdoor Definition
36 */
37
38#include <cstddef>
39#include <string>
40
41#include "config/full_system.hh"
42
43#if FULL_SYSTEM //XXX No AlphaSystem in SE mode.
44#include "arch/alpha/system.hh"
45#endif
46#include "base/inifile.hh"
47#include "base/str.hh"
48#include "base/trace.hh"
49#include "cpu/base.hh"
50#include "cpu/thread_context.hh"
51#include "debug/AlphaBackdoor.hh"
52#include "dev/alpha/backdoor.hh"
1/*
2 * Copyright (c) 2001-2005 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: Nathan Binkert
29 * Ali Saidi
30 * Steve Reinhardt
31 * Erik Hallnor
32 */
33
34/** @file
35 * Alpha Console Backdoor Definition
36 */
37
38#include <cstddef>
39#include <string>
40
41#include "config/full_system.hh"
42
43#if FULL_SYSTEM //XXX No AlphaSystem in SE mode.
44#include "arch/alpha/system.hh"
45#endif
46#include "base/inifile.hh"
47#include "base/str.hh"
48#include "base/trace.hh"
49#include "cpu/base.hh"
50#include "cpu/thread_context.hh"
51#include "debug/AlphaBackdoor.hh"
52#include "dev/alpha/backdoor.hh"
53#include "dev/alpha/tsunami.hh"
54#include "dev/alpha/tsunami_cchip.hh"
55#include "dev/alpha/tsunami_io.hh"
53#include "dev/platform.hh"
54#include "dev/simple_disk.hh"
55#include "dev/terminal.hh"
56#include "mem/packet.hh"
57#include "mem/packet_access.hh"
58#include "mem/physical.hh"
59#include "params/AlphaBackdoor.hh"
60#include "sim/sim_object.hh"
61
62using namespace std;
63using namespace AlphaISA;
64
65AlphaBackdoor::AlphaBackdoor(const Params *p)
66 : BasicPioDevice(p), disk(p->disk), terminal(p->terminal),
67#if FULL_SYSTEM //XXX No system pointer in SE mode.
68 system(p->system),
69#endif
70 cpu(p->cpu)
71{
72
73 pioSize = sizeof(struct AlphaAccess);
74
75 alphaAccess = new Access();
76 alphaAccess->last_offset = pioSize - 1;
77
78 alphaAccess->version = ALPHA_ACCESS_VERSION;
79 alphaAccess->diskUnit = 1;
80
81 alphaAccess->diskCount = 0;
82 alphaAccess->diskPAddr = 0;
83 alphaAccess->diskBlock = 0;
84 alphaAccess->diskOperation = 0;
85 alphaAccess->outputChar = 0;
86 alphaAccess->inputChar = 0;
87 std::memset(alphaAccess->cpuStack, 0, sizeof(alphaAccess->cpuStack));
88
89}
90
91void
92AlphaBackdoor::startup()
93{
94#if FULL_SYSTEM //XXX No system pointer in SE mode.
95 system->setAlphaAccess(pioAddr);
96 alphaAccess->numCPUs = system->numContexts();
97 alphaAccess->kernStart = system->getKernelStart();
98 alphaAccess->kernEnd = system->getKernelEnd();
99 alphaAccess->entryPoint = system->getKernelEntry();
100 alphaAccess->mem_size = system->physmem->size();
101 alphaAccess->cpuClock = cpu->frequency() / 1000000; // In MHz
56#include "dev/platform.hh"
57#include "dev/simple_disk.hh"
58#include "dev/terminal.hh"
59#include "mem/packet.hh"
60#include "mem/packet_access.hh"
61#include "mem/physical.hh"
62#include "params/AlphaBackdoor.hh"
63#include "sim/sim_object.hh"
64
65using namespace std;
66using namespace AlphaISA;
67
68AlphaBackdoor::AlphaBackdoor(const Params *p)
69 : BasicPioDevice(p), disk(p->disk), terminal(p->terminal),
70#if FULL_SYSTEM //XXX No system pointer in SE mode.
71 system(p->system),
72#endif
73 cpu(p->cpu)
74{
75
76 pioSize = sizeof(struct AlphaAccess);
77
78 alphaAccess = new Access();
79 alphaAccess->last_offset = pioSize - 1;
80
81 alphaAccess->version = ALPHA_ACCESS_VERSION;
82 alphaAccess->diskUnit = 1;
83
84 alphaAccess->diskCount = 0;
85 alphaAccess->diskPAddr = 0;
86 alphaAccess->diskBlock = 0;
87 alphaAccess->diskOperation = 0;
88 alphaAccess->outputChar = 0;
89 alphaAccess->inputChar = 0;
90 std::memset(alphaAccess->cpuStack, 0, sizeof(alphaAccess->cpuStack));
91
92}
93
94void
95AlphaBackdoor::startup()
96{
97#if FULL_SYSTEM //XXX No system pointer in SE mode.
98 system->setAlphaAccess(pioAddr);
99 alphaAccess->numCPUs = system->numContexts();
100 alphaAccess->kernStart = system->getKernelStart();
101 alphaAccess->kernEnd = system->getKernelEnd();
102 alphaAccess->entryPoint = system->getKernelEntry();
103 alphaAccess->mem_size = system->physmem->size();
104 alphaAccess->cpuClock = cpu->frequency() / 1000000; // In MHz
102 alphaAccess->intrClockFrequency = params()->platform->intrFrequency();
105 Tsunami *tsunami = dynamic_cast<Tsunami *>(params()->platform);
106 assert(tsunami);
107 alphaAccess->intrClockFrequency = tsunami->io->frequency();
103#endif
104}
105
106Tick
107AlphaBackdoor::read(PacketPtr pkt)
108{
109
110 /** XXX Do we want to push the addr munging to a bus brige or something? So
111 * the device has it's physical address and then the bridge adds on whatever
112 * machine dependent address swizzle is required?
113 */
114
115 assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
116
117 Addr daddr = pkt->getAddr() - pioAddr;
118
119 pkt->allocate();
120 pkt->makeAtomicResponse();
121
122 switch (pkt->getSize())
123 {
124 case sizeof(uint32_t):
125 switch (daddr)
126 {
127 case offsetof(AlphaAccess, last_offset):
128 pkt->set(alphaAccess->last_offset);
129 break;
130 case offsetof(AlphaAccess, version):
131 pkt->set(alphaAccess->version);
132 break;
133 case offsetof(AlphaAccess, numCPUs):
134 pkt->set(alphaAccess->numCPUs);
135 break;
136 case offsetof(AlphaAccess, intrClockFrequency):
137 pkt->set(alphaAccess->intrClockFrequency);
138 break;
139 default:
140 /* Old console code read in everyting as a 32bit int
141 * we now break that for better error checking.
142 */
143 pkt->setBadAddress();
144 }
145 DPRINTF(AlphaBackdoor, "read: offset=%#x val=%#x\n", daddr,
146 pkt->get<uint32_t>());
147 break;
148 case sizeof(uint64_t):
149 switch (daddr)
150 {
151 case offsetof(AlphaAccess, inputChar):
152 pkt->set(terminal->console_in());
153 break;
154 case offsetof(AlphaAccess, cpuClock):
155 pkt->set(alphaAccess->cpuClock);
156 break;
157 case offsetof(AlphaAccess, mem_size):
158 pkt->set(alphaAccess->mem_size);
159 break;
160 case offsetof(AlphaAccess, kernStart):
161 pkt->set(alphaAccess->kernStart);
162 break;
163 case offsetof(AlphaAccess, kernEnd):
164 pkt->set(alphaAccess->kernEnd);
165 break;
166 case offsetof(AlphaAccess, entryPoint):
167 pkt->set(alphaAccess->entryPoint);
168 break;
169 case offsetof(AlphaAccess, diskUnit):
170 pkt->set(alphaAccess->diskUnit);
171 break;
172 case offsetof(AlphaAccess, diskCount):
173 pkt->set(alphaAccess->diskCount);
174 break;
175 case offsetof(AlphaAccess, diskPAddr):
176 pkt->set(alphaAccess->diskPAddr);
177 break;
178 case offsetof(AlphaAccess, diskBlock):
179 pkt->set(alphaAccess->diskBlock);
180 break;
181 case offsetof(AlphaAccess, diskOperation):
182 pkt->set(alphaAccess->diskOperation);
183 break;
184 case offsetof(AlphaAccess, outputChar):
185 pkt->set(alphaAccess->outputChar);
186 break;
187 default:
188 int cpunum = (daddr - offsetof(AlphaAccess, cpuStack)) /
189 sizeof(alphaAccess->cpuStack[0]);
190
191 if (cpunum >= 0 && cpunum < 64)
192 pkt->set(alphaAccess->cpuStack[cpunum]);
193 else
194 panic("Unknown 64bit access, %#x\n", daddr);
195 }
196 DPRINTF(AlphaBackdoor, "read: offset=%#x val=%#x\n", daddr,
197 pkt->get<uint64_t>());
198 break;
199 default:
200 pkt->setBadAddress();
201 }
202 return pioDelay;
203}
204
205Tick
206AlphaBackdoor::write(PacketPtr pkt)
207{
208 assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
209 Addr daddr = pkt->getAddr() - pioAddr;
210
211 uint64_t val = pkt->get<uint64_t>();
212 assert(pkt->getSize() == sizeof(uint64_t));
213
214 switch (daddr) {
215 case offsetof(AlphaAccess, diskUnit):
216 alphaAccess->diskUnit = val;
217 break;
218
219 case offsetof(AlphaAccess, diskCount):
220 alphaAccess->diskCount = val;
221 break;
222
223 case offsetof(AlphaAccess, diskPAddr):
224 alphaAccess->diskPAddr = val;
225 break;
226
227 case offsetof(AlphaAccess, diskBlock):
228 alphaAccess->diskBlock = val;
229 break;
230
231 case offsetof(AlphaAccess, diskOperation):
232 if (val == 0x13)
233 disk->read(alphaAccess->diskPAddr, alphaAccess->diskBlock,
234 alphaAccess->diskCount);
235 else
236 panic("Invalid disk operation!");
237
238 break;
239
240 case offsetof(AlphaAccess, outputChar):
241 terminal->out((char)(val & 0xff));
242 break;
243
244 default:
245 int cpunum = (daddr - offsetof(AlphaAccess, cpuStack)) /
246 sizeof(alphaAccess->cpuStack[0]);
247 inform("Launching CPU %d @ %d", cpunum, curTick());
248 assert(val > 0 && "Must not access primary cpu");
249 if (cpunum >= 0 && cpunum < 64)
250 alphaAccess->cpuStack[cpunum] = val;
251 else
252 panic("Unknown 64bit access, %#x\n", daddr);
253 }
254
255 pkt->makeAtomicResponse();
256
257 return pioDelay;
258}
259
260void
261AlphaBackdoor::Access::serialize(ostream &os)
262{
263 SERIALIZE_SCALAR(last_offset);
264 SERIALIZE_SCALAR(version);
265 SERIALIZE_SCALAR(numCPUs);
266 SERIALIZE_SCALAR(mem_size);
267 SERIALIZE_SCALAR(cpuClock);
268 SERIALIZE_SCALAR(intrClockFrequency);
269 SERIALIZE_SCALAR(kernStart);
270 SERIALIZE_SCALAR(kernEnd);
271 SERIALIZE_SCALAR(entryPoint);
272 SERIALIZE_SCALAR(diskUnit);
273 SERIALIZE_SCALAR(diskCount);
274 SERIALIZE_SCALAR(diskPAddr);
275 SERIALIZE_SCALAR(diskBlock);
276 SERIALIZE_SCALAR(diskOperation);
277 SERIALIZE_SCALAR(outputChar);
278 SERIALIZE_SCALAR(inputChar);
279 SERIALIZE_ARRAY(cpuStack,64);
280}
281
282void
283AlphaBackdoor::Access::unserialize(Checkpoint *cp, const std::string &section)
284{
285 UNSERIALIZE_SCALAR(last_offset);
286 UNSERIALIZE_SCALAR(version);
287 UNSERIALIZE_SCALAR(numCPUs);
288 UNSERIALIZE_SCALAR(mem_size);
289 UNSERIALIZE_SCALAR(cpuClock);
290 UNSERIALIZE_SCALAR(intrClockFrequency);
291 UNSERIALIZE_SCALAR(kernStart);
292 UNSERIALIZE_SCALAR(kernEnd);
293 UNSERIALIZE_SCALAR(entryPoint);
294 UNSERIALIZE_SCALAR(diskUnit);
295 UNSERIALIZE_SCALAR(diskCount);
296 UNSERIALIZE_SCALAR(diskPAddr);
297 UNSERIALIZE_SCALAR(diskBlock);
298 UNSERIALIZE_SCALAR(diskOperation);
299 UNSERIALIZE_SCALAR(outputChar);
300 UNSERIALIZE_SCALAR(inputChar);
301 UNSERIALIZE_ARRAY(cpuStack, 64);
302}
303
304void
305AlphaBackdoor::serialize(ostream &os)
306{
307 alphaAccess->serialize(os);
308}
309
310void
311AlphaBackdoor::unserialize(Checkpoint *cp, const std::string &section)
312{
313 alphaAccess->unserialize(cp, section);
314}
315
316AlphaBackdoor *
317AlphaBackdoorParams::create()
318{
319 return new AlphaBackdoor(this);
320}
108#endif
109}
110
111Tick
112AlphaBackdoor::read(PacketPtr pkt)
113{
114
115 /** XXX Do we want to push the addr munging to a bus brige or something? So
116 * the device has it's physical address and then the bridge adds on whatever
117 * machine dependent address swizzle is required?
118 */
119
120 assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
121
122 Addr daddr = pkt->getAddr() - pioAddr;
123
124 pkt->allocate();
125 pkt->makeAtomicResponse();
126
127 switch (pkt->getSize())
128 {
129 case sizeof(uint32_t):
130 switch (daddr)
131 {
132 case offsetof(AlphaAccess, last_offset):
133 pkt->set(alphaAccess->last_offset);
134 break;
135 case offsetof(AlphaAccess, version):
136 pkt->set(alphaAccess->version);
137 break;
138 case offsetof(AlphaAccess, numCPUs):
139 pkt->set(alphaAccess->numCPUs);
140 break;
141 case offsetof(AlphaAccess, intrClockFrequency):
142 pkt->set(alphaAccess->intrClockFrequency);
143 break;
144 default:
145 /* Old console code read in everyting as a 32bit int
146 * we now break that for better error checking.
147 */
148 pkt->setBadAddress();
149 }
150 DPRINTF(AlphaBackdoor, "read: offset=%#x val=%#x\n", daddr,
151 pkt->get<uint32_t>());
152 break;
153 case sizeof(uint64_t):
154 switch (daddr)
155 {
156 case offsetof(AlphaAccess, inputChar):
157 pkt->set(terminal->console_in());
158 break;
159 case offsetof(AlphaAccess, cpuClock):
160 pkt->set(alphaAccess->cpuClock);
161 break;
162 case offsetof(AlphaAccess, mem_size):
163 pkt->set(alphaAccess->mem_size);
164 break;
165 case offsetof(AlphaAccess, kernStart):
166 pkt->set(alphaAccess->kernStart);
167 break;
168 case offsetof(AlphaAccess, kernEnd):
169 pkt->set(alphaAccess->kernEnd);
170 break;
171 case offsetof(AlphaAccess, entryPoint):
172 pkt->set(alphaAccess->entryPoint);
173 break;
174 case offsetof(AlphaAccess, diskUnit):
175 pkt->set(alphaAccess->diskUnit);
176 break;
177 case offsetof(AlphaAccess, diskCount):
178 pkt->set(alphaAccess->diskCount);
179 break;
180 case offsetof(AlphaAccess, diskPAddr):
181 pkt->set(alphaAccess->diskPAddr);
182 break;
183 case offsetof(AlphaAccess, diskBlock):
184 pkt->set(alphaAccess->diskBlock);
185 break;
186 case offsetof(AlphaAccess, diskOperation):
187 pkt->set(alphaAccess->diskOperation);
188 break;
189 case offsetof(AlphaAccess, outputChar):
190 pkt->set(alphaAccess->outputChar);
191 break;
192 default:
193 int cpunum = (daddr - offsetof(AlphaAccess, cpuStack)) /
194 sizeof(alphaAccess->cpuStack[0]);
195
196 if (cpunum >= 0 && cpunum < 64)
197 pkt->set(alphaAccess->cpuStack[cpunum]);
198 else
199 panic("Unknown 64bit access, %#x\n", daddr);
200 }
201 DPRINTF(AlphaBackdoor, "read: offset=%#x val=%#x\n", daddr,
202 pkt->get<uint64_t>());
203 break;
204 default:
205 pkt->setBadAddress();
206 }
207 return pioDelay;
208}
209
210Tick
211AlphaBackdoor::write(PacketPtr pkt)
212{
213 assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
214 Addr daddr = pkt->getAddr() - pioAddr;
215
216 uint64_t val = pkt->get<uint64_t>();
217 assert(pkt->getSize() == sizeof(uint64_t));
218
219 switch (daddr) {
220 case offsetof(AlphaAccess, diskUnit):
221 alphaAccess->diskUnit = val;
222 break;
223
224 case offsetof(AlphaAccess, diskCount):
225 alphaAccess->diskCount = val;
226 break;
227
228 case offsetof(AlphaAccess, diskPAddr):
229 alphaAccess->diskPAddr = val;
230 break;
231
232 case offsetof(AlphaAccess, diskBlock):
233 alphaAccess->diskBlock = val;
234 break;
235
236 case offsetof(AlphaAccess, diskOperation):
237 if (val == 0x13)
238 disk->read(alphaAccess->diskPAddr, alphaAccess->diskBlock,
239 alphaAccess->diskCount);
240 else
241 panic("Invalid disk operation!");
242
243 break;
244
245 case offsetof(AlphaAccess, outputChar):
246 terminal->out((char)(val & 0xff));
247 break;
248
249 default:
250 int cpunum = (daddr - offsetof(AlphaAccess, cpuStack)) /
251 sizeof(alphaAccess->cpuStack[0]);
252 inform("Launching CPU %d @ %d", cpunum, curTick());
253 assert(val > 0 && "Must not access primary cpu");
254 if (cpunum >= 0 && cpunum < 64)
255 alphaAccess->cpuStack[cpunum] = val;
256 else
257 panic("Unknown 64bit access, %#x\n", daddr);
258 }
259
260 pkt->makeAtomicResponse();
261
262 return pioDelay;
263}
264
265void
266AlphaBackdoor::Access::serialize(ostream &os)
267{
268 SERIALIZE_SCALAR(last_offset);
269 SERIALIZE_SCALAR(version);
270 SERIALIZE_SCALAR(numCPUs);
271 SERIALIZE_SCALAR(mem_size);
272 SERIALIZE_SCALAR(cpuClock);
273 SERIALIZE_SCALAR(intrClockFrequency);
274 SERIALIZE_SCALAR(kernStart);
275 SERIALIZE_SCALAR(kernEnd);
276 SERIALIZE_SCALAR(entryPoint);
277 SERIALIZE_SCALAR(diskUnit);
278 SERIALIZE_SCALAR(diskCount);
279 SERIALIZE_SCALAR(diskPAddr);
280 SERIALIZE_SCALAR(diskBlock);
281 SERIALIZE_SCALAR(diskOperation);
282 SERIALIZE_SCALAR(outputChar);
283 SERIALIZE_SCALAR(inputChar);
284 SERIALIZE_ARRAY(cpuStack,64);
285}
286
287void
288AlphaBackdoor::Access::unserialize(Checkpoint *cp, const std::string &section)
289{
290 UNSERIALIZE_SCALAR(last_offset);
291 UNSERIALIZE_SCALAR(version);
292 UNSERIALIZE_SCALAR(numCPUs);
293 UNSERIALIZE_SCALAR(mem_size);
294 UNSERIALIZE_SCALAR(cpuClock);
295 UNSERIALIZE_SCALAR(intrClockFrequency);
296 UNSERIALIZE_SCALAR(kernStart);
297 UNSERIALIZE_SCALAR(kernEnd);
298 UNSERIALIZE_SCALAR(entryPoint);
299 UNSERIALIZE_SCALAR(diskUnit);
300 UNSERIALIZE_SCALAR(diskCount);
301 UNSERIALIZE_SCALAR(diskPAddr);
302 UNSERIALIZE_SCALAR(diskBlock);
303 UNSERIALIZE_SCALAR(diskOperation);
304 UNSERIALIZE_SCALAR(outputChar);
305 UNSERIALIZE_SCALAR(inputChar);
306 UNSERIALIZE_ARRAY(cpuStack, 64);
307}
308
309void
310AlphaBackdoor::serialize(ostream &os)
311{
312 alphaAccess->serialize(os);
313}
314
315void
316AlphaBackdoor::unserialize(Checkpoint *cp, const std::string &section)
317{
318 alphaAccess->unserialize(cp, section);
319}
320
321AlphaBackdoor *
322AlphaBackdoorParams::create()
323{
324 return new AlphaBackdoor(this);
325}