base.hh (9523:b8c8437f71d9) base.hh (9608:e2b6b86fda03)
1/*
1/*
2 * Copyright (c) 2011-2012 ARM Limited
2 * Copyright (c) 2011-2013 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) 2002-2005 The Regents of The University of Michigan
15 * Copyright (c) 2011 Regents of the University of California
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Steve Reinhardt
42 * Nathan Binkert
43 * Rick Strong
44 */
45
46#ifndef __CPU_BASE_HH__
47#define __CPU_BASE_HH__
48
49#include <vector>
50
51#include "arch/interrupts.hh"
52#include "arch/isa_traits.hh"
53#include "arch/microcode_rom.hh"
54#include "base/statistics.hh"
55#include "config/the_isa.hh"
56#include "mem/mem_object.hh"
57#include "sim/eventq.hh"
58#include "sim/full_system.hh"
59#include "sim/insttracer.hh"
60
61struct BaseCPUParams;
62class BranchPred;
63class CheckerCPU;
64class ThreadContext;
65class System;
66
67class CPUProgressEvent : public Event
68{
69 protected:
70 Tick _interval;
71 Counter lastNumInst;
72 BaseCPU *cpu;
73 bool _repeatEvent;
74
75 public:
76 CPUProgressEvent(BaseCPU *_cpu, Tick ival = 0);
77
78 void process();
79
80 void interval(Tick ival) { _interval = ival; }
81 Tick interval() { return _interval; }
82
83 void repeatEvent(bool repeat) { _repeatEvent = repeat; }
84
85 virtual const char *description() const;
86};
87
88class BaseCPU : public MemObject
89{
90 protected:
91
92 // @todo remove me after debugging with legion done
93 Tick instCnt;
94 // every cpu has an id, put it in the base cpu
95 // Set at initialization, only time a cpuId might change is during a
96 // takeover (which should be done from within the BaseCPU anyway,
97 // therefore no setCpuId() method is provided
98 int _cpuId;
99
100 /** instruction side request id that must be placed in all requests */
101 MasterID _instMasterId;
102
103 /** data side request id that must be placed in all requests */
104 MasterID _dataMasterId;
105
106 /** An intrenal representation of a task identifier within gem5. This is
107 * used so the CPU can add which taskId (which is an internal representation
108 * of the OS process ID) to each request so components in the memory system
109 * can track which process IDs are ultimately interacting with them
110 */
111 uint32_t _taskId;
112
113 /** The current OS process ID that is executing on this processor. This is
114 * used to generate a taskId */
115 uint32_t _pid;
116
117 /** Is the CPU switched out or active? */
118 bool _switchedOut;
119
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) 2002-2005 The Regents of The University of Michigan
15 * Copyright (c) 2011 Regents of the University of California
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Steve Reinhardt
42 * Nathan Binkert
43 * Rick Strong
44 */
45
46#ifndef __CPU_BASE_HH__
47#define __CPU_BASE_HH__
48
49#include <vector>
50
51#include "arch/interrupts.hh"
52#include "arch/isa_traits.hh"
53#include "arch/microcode_rom.hh"
54#include "base/statistics.hh"
55#include "config/the_isa.hh"
56#include "mem/mem_object.hh"
57#include "sim/eventq.hh"
58#include "sim/full_system.hh"
59#include "sim/insttracer.hh"
60
61struct BaseCPUParams;
62class BranchPred;
63class CheckerCPU;
64class ThreadContext;
65class System;
66
67class CPUProgressEvent : public Event
68{
69 protected:
70 Tick _interval;
71 Counter lastNumInst;
72 BaseCPU *cpu;
73 bool _repeatEvent;
74
75 public:
76 CPUProgressEvent(BaseCPU *_cpu, Tick ival = 0);
77
78 void process();
79
80 void interval(Tick ival) { _interval = ival; }
81 Tick interval() { return _interval; }
82
83 void repeatEvent(bool repeat) { _repeatEvent = repeat; }
84
85 virtual const char *description() const;
86};
87
88class BaseCPU : public MemObject
89{
90 protected:
91
92 // @todo remove me after debugging with legion done
93 Tick instCnt;
94 // every cpu has an id, put it in the base cpu
95 // Set at initialization, only time a cpuId might change is during a
96 // takeover (which should be done from within the BaseCPU anyway,
97 // therefore no setCpuId() method is provided
98 int _cpuId;
99
100 /** instruction side request id that must be placed in all requests */
101 MasterID _instMasterId;
102
103 /** data side request id that must be placed in all requests */
104 MasterID _dataMasterId;
105
106 /** An intrenal representation of a task identifier within gem5. This is
107 * used so the CPU can add which taskId (which is an internal representation
108 * of the OS process ID) to each request so components in the memory system
109 * can track which process IDs are ultimately interacting with them
110 */
111 uint32_t _taskId;
112
113 /** The current OS process ID that is executing on this processor. This is
114 * used to generate a taskId */
115 uint32_t _pid;
116
117 /** Is the CPU switched out or active? */
118 bool _switchedOut;
119
120 /**
121 * Define a base class for the CPU ports (instruction and data)
122 * that is refined in the subclasses. This class handles the
123 * common cases, i.e. the functional accesses and the status
124 * changes and address range queries. The default behaviour for
125 * both atomic and timing access is to panic and the corresponding
126 * subclasses have to override these methods.
127 */
128 class CpuPort : public MasterPort
129 {
130 public:
131
132 /**
133 * Create a CPU port with a name and a structural owner.
134 *
135 * @param _name port name including the owner
136 * @param _name structural owner of this port
137 */
138 CpuPort(const std::string& _name, MemObject* _owner) :
139 MasterPort(_name, _owner)
140 { }
141
142 protected:
143
144 virtual bool recvTimingResp(PacketPtr pkt);
145
146 virtual void recvRetry();
147
148 virtual void recvFunctionalSnoop(PacketPtr pkt);
149
150 };
151
152 public:
153
154 /**
155 * Purely virtual method that returns a reference to the data
156 * port. All subclasses must implement this method.
157 *
158 * @return a reference to the data port
159 */
120 public:
121
122 /**
123 * Purely virtual method that returns a reference to the data
124 * port. All subclasses must implement this method.
125 *
126 * @return a reference to the data port
127 */
160 virtual CpuPort &getDataPort() = 0;
128 virtual MasterPort &getDataPort() = 0;
161
162 /**
163 * Purely virtual method that returns a reference to the instruction
164 * port. All subclasses must implement this method.
165 *
166 * @return a reference to the instruction port
167 */
129
130 /**
131 * Purely virtual method that returns a reference to the instruction
132 * port. All subclasses must implement this method.
133 *
134 * @return a reference to the instruction port
135 */
168 virtual CpuPort &getInstPort() = 0;
136 virtual MasterPort &getInstPort() = 0;
169
170 /** Reads this CPU's ID. */
171 int cpuId() { return _cpuId; }
172
173 /** Reads this CPU's unique data requestor ID */
174 MasterID dataMasterId() { return _dataMasterId; }
175 /** Reads this CPU's unique instruction requestor ID */
176 MasterID instMasterId() { return _instMasterId; }
177
178 /**
179 * Get a master port on this CPU. All CPUs have a data and
180 * instruction port, and this method uses getDataPort and
181 * getInstPort of the subclasses to resolve the two ports.
182 *
183 * @param if_name the port name
184 * @param idx ignored index
185 *
186 * @return a reference to the port with the given name
187 */
188 BaseMasterPort &getMasterPort(const std::string &if_name,
189 PortID idx = InvalidPortID);
190
191 /** Get cpu task id */
192 uint32_t taskId() const { return _taskId; }
193 /** Set cpu task id */
194 void taskId(uint32_t id) { _taskId = id; }
195
196 uint32_t getPid() const { return _pid; }
197 void setPid(uint32_t pid) { _pid = pid; }
198
199 inline void workItemBegin() { numWorkItemsStarted++; }
200 inline void workItemEnd() { numWorkItemsCompleted++; }
201 // @todo remove me after debugging with legion done
202 Tick instCount() { return instCnt; }
203
204 TheISA::MicrocodeRom microcodeRom;
205
206 protected:
207 TheISA::Interrupts *interrupts;
208
209 public:
210 TheISA::Interrupts *
211 getInterruptController()
212 {
213 return interrupts;
214 }
215
216 virtual void wakeup() = 0;
217
218 void
219 postInterrupt(int int_num, int index)
220 {
221 interrupts->post(int_num, index);
222 if (FullSystem)
223 wakeup();
224 }
225
226 void
227 clearInterrupt(int int_num, int index)
228 {
229 interrupts->clear(int_num, index);
230 }
231
232 void
233 clearInterrupts()
234 {
235 interrupts->clearAll();
236 }
237
238 bool
239 checkInterrupts(ThreadContext *tc) const
240 {
241 return FullSystem && interrupts->checkInterrupts(tc);
242 }
243
244 class ProfileEvent : public Event
245 {
246 private:
247 BaseCPU *cpu;
248 Tick interval;
249
250 public:
251 ProfileEvent(BaseCPU *cpu, Tick interval);
252 void process();
253 };
254 ProfileEvent *profileEvent;
255
256 protected:
257 std::vector<ThreadContext *> threadContexts;
258
259 Trace::InstTracer * tracer;
260
261 public:
262
263 // Mask to align PCs to MachInst sized boundaries
264 static const Addr PCMask = ~((Addr)sizeof(TheISA::MachInst) - 1);
265
266 /// Provide access to the tracer pointer
267 Trace::InstTracer * getTracer() { return tracer; }
268
269 /// Notify the CPU that the indicated context is now active. The
270 /// delay parameter indicates the number of ticks to wait before
271 /// executing (typically 0 or 1).
272 virtual void activateContext(ThreadID thread_num, Cycles delay) {}
273
274 /// Notify the CPU that the indicated context is now suspended.
275 virtual void suspendContext(ThreadID thread_num) {}
276
277 /// Notify the CPU that the indicated context is now deallocated.
278 virtual void deallocateContext(ThreadID thread_num) {}
279
280 /// Notify the CPU that the indicated context is now halted.
281 virtual void haltContext(ThreadID thread_num) {}
282
283 /// Given a Thread Context pointer return the thread num
284 int findContext(ThreadContext *tc);
285
286 /// Given a thread num get tho thread context for it
287 ThreadContext *getContext(int tn) { return threadContexts[tn]; }
288
289 public:
290 typedef BaseCPUParams Params;
291 const Params *params() const
292 { return reinterpret_cast<const Params *>(_params); }
293 BaseCPU(Params *params, bool is_checker = false);
294 virtual ~BaseCPU();
295
296 virtual void init();
297 virtual void startup();
298 virtual void regStats();
299
300 virtual void activateWhenReady(ThreadID tid) {};
301
302 void registerThreadContexts();
303
304 /**
305 * Prepare for another CPU to take over execution.
306 *
307 * When this method exits, all internal state should have been
308 * flushed. After the method returns, the simulator calls
309 * takeOverFrom() on the new CPU with this CPU as its parameter.
310 */
311 virtual void switchOut();
312
313 /**
314 * Load the state of a CPU from the previous CPU object, invoked
315 * on all new CPUs that are about to be switched in.
316 *
317 * A CPU model implementing this method is expected to initialize
318 * its state from the old CPU and connect its memory (unless they
319 * are already connected) to the memories connected to the old
320 * CPU.
321 *
322 * @param cpu CPU to initialize read state from.
323 */
324 virtual void takeOverFrom(BaseCPU *cpu);
325
326 /**
327 * Flush all TLBs in the CPU.
328 *
329 * This method is mainly used to flush stale translations when
330 * switching CPUs. It is also exported to the Python world to
331 * allow it to request a TLB flush after draining the CPU to make
332 * it easier to compare traces when debugging
333 * handover/checkpointing.
334 */
335 void flushTLBs();
336
337 /**
338 * Determine if the CPU is switched out.
339 *
340 * @return True if the CPU is switched out, false otherwise.
341 */
342 bool switchedOut() const { return _switchedOut; }
343
344 /**
345 * Verify that the system is in a memory mode supported by the
346 * CPU.
347 *
348 * Implementations are expected to query the system for the
349 * current memory mode and ensure that it is what the CPU model
350 * expects. If the check fails, the implementation should
351 * terminate the simulation using fatal().
352 */
353 virtual void verifyMemoryMode() const { };
354
355 /**
356 * Number of threads we're actually simulating (<= SMT_MAX_THREADS).
357 * This is a constant for the duration of the simulation.
358 */
359 ThreadID numThreads;
360
361 /**
362 * Vector of per-thread instruction-based event queues. Used for
363 * scheduling events based on number of instructions committed by
364 * a particular thread.
365 */
366 EventQueue **comInstEventQueue;
367
368 /**
369 * Vector of per-thread load-based event queues. Used for
370 * scheduling events based on number of loads committed by
371 *a particular thread.
372 */
373 EventQueue **comLoadEventQueue;
374
375 System *system;
376
377 /**
378 * Serialize this object to the given output stream.
379 *
380 * @note CPU models should normally overload the serializeThread()
381 * method instead of the serialize() method as this provides a
382 * uniform data format for all CPU models and promotes better code
383 * reuse.
384 *
385 * @param os The stream to serialize to.
386 */
387 virtual void serialize(std::ostream &os);
388
389 /**
390 * Reconstruct the state of this object from a checkpoint.
391 *
392 * @note CPU models should normally overload the
393 * unserializeThread() method instead of the unserialize() method
394 * as this provides a uniform data format for all CPU models and
395 * promotes better code reuse.
396
397 * @param cp The checkpoint use.
398 * @param section The section name of this object.
399 */
400 virtual void unserialize(Checkpoint *cp, const std::string &section);
401
402 /**
403 * Serialize a single thread.
404 *
405 * @param os The stream to serialize to.
406 * @param tid ID of the current thread.
407 */
408 virtual void serializeThread(std::ostream &os, ThreadID tid) {};
409
410 /**
411 * Unserialize one thread.
412 *
413 * @param cp The checkpoint use.
414 * @param section The section name of this thread.
415 * @param tid ID of the current thread.
416 */
417 virtual void unserializeThread(Checkpoint *cp, const std::string &section,
418 ThreadID tid) {};
419
420 /**
421 * Return pointer to CPU's branch predictor (NULL if none).
422 * @return Branch predictor pointer.
423 */
424 virtual BranchPred *getBranchPred() { return NULL; };
425
426 virtual Counter totalInsts() const = 0;
427
428 virtual Counter totalOps() const = 0;
429
430 // Function tracing
431 private:
432 bool functionTracingEnabled;
433 std::ostream *functionTraceStream;
434 Addr currentFunctionStart;
435 Addr currentFunctionEnd;
436 Tick functionEntryTick;
437 void enableFunctionTrace();
438 void traceFunctionsInternal(Addr pc);
439
440 private:
441 static std::vector<BaseCPU *> cpuList; //!< Static global cpu list
442
443 public:
444 void traceFunctions(Addr pc)
445 {
446 if (functionTracingEnabled)
447 traceFunctionsInternal(pc);
448 }
449
450 static int numSimulatedCPUs() { return cpuList.size(); }
451 static Counter numSimulatedInsts()
452 {
453 Counter total = 0;
454
455 int size = cpuList.size();
456 for (int i = 0; i < size; ++i)
457 total += cpuList[i]->totalInsts();
458
459 return total;
460 }
461
462 static Counter numSimulatedOps()
463 {
464 Counter total = 0;
465
466 int size = cpuList.size();
467 for (int i = 0; i < size; ++i)
468 total += cpuList[i]->totalOps();
469
470 return total;
471 }
472
473 public:
474 // Number of CPU cycles simulated
475 Stats::Scalar numCycles;
476 Stats::Scalar numWorkItemsStarted;
477 Stats::Scalar numWorkItemsCompleted;
478};
479
480#endif // __CPU_BASE_HH__
137
138 /** Reads this CPU's ID. */
139 int cpuId() { return _cpuId; }
140
141 /** Reads this CPU's unique data requestor ID */
142 MasterID dataMasterId() { return _dataMasterId; }
143 /** Reads this CPU's unique instruction requestor ID */
144 MasterID instMasterId() { return _instMasterId; }
145
146 /**
147 * Get a master port on this CPU. All CPUs have a data and
148 * instruction port, and this method uses getDataPort and
149 * getInstPort of the subclasses to resolve the two ports.
150 *
151 * @param if_name the port name
152 * @param idx ignored index
153 *
154 * @return a reference to the port with the given name
155 */
156 BaseMasterPort &getMasterPort(const std::string &if_name,
157 PortID idx = InvalidPortID);
158
159 /** Get cpu task id */
160 uint32_t taskId() const { return _taskId; }
161 /** Set cpu task id */
162 void taskId(uint32_t id) { _taskId = id; }
163
164 uint32_t getPid() const { return _pid; }
165 void setPid(uint32_t pid) { _pid = pid; }
166
167 inline void workItemBegin() { numWorkItemsStarted++; }
168 inline void workItemEnd() { numWorkItemsCompleted++; }
169 // @todo remove me after debugging with legion done
170 Tick instCount() { return instCnt; }
171
172 TheISA::MicrocodeRom microcodeRom;
173
174 protected:
175 TheISA::Interrupts *interrupts;
176
177 public:
178 TheISA::Interrupts *
179 getInterruptController()
180 {
181 return interrupts;
182 }
183
184 virtual void wakeup() = 0;
185
186 void
187 postInterrupt(int int_num, int index)
188 {
189 interrupts->post(int_num, index);
190 if (FullSystem)
191 wakeup();
192 }
193
194 void
195 clearInterrupt(int int_num, int index)
196 {
197 interrupts->clear(int_num, index);
198 }
199
200 void
201 clearInterrupts()
202 {
203 interrupts->clearAll();
204 }
205
206 bool
207 checkInterrupts(ThreadContext *tc) const
208 {
209 return FullSystem && interrupts->checkInterrupts(tc);
210 }
211
212 class ProfileEvent : public Event
213 {
214 private:
215 BaseCPU *cpu;
216 Tick interval;
217
218 public:
219 ProfileEvent(BaseCPU *cpu, Tick interval);
220 void process();
221 };
222 ProfileEvent *profileEvent;
223
224 protected:
225 std::vector<ThreadContext *> threadContexts;
226
227 Trace::InstTracer * tracer;
228
229 public:
230
231 // Mask to align PCs to MachInst sized boundaries
232 static const Addr PCMask = ~((Addr)sizeof(TheISA::MachInst) - 1);
233
234 /// Provide access to the tracer pointer
235 Trace::InstTracer * getTracer() { return tracer; }
236
237 /// Notify the CPU that the indicated context is now active. The
238 /// delay parameter indicates the number of ticks to wait before
239 /// executing (typically 0 or 1).
240 virtual void activateContext(ThreadID thread_num, Cycles delay) {}
241
242 /// Notify the CPU that the indicated context is now suspended.
243 virtual void suspendContext(ThreadID thread_num) {}
244
245 /// Notify the CPU that the indicated context is now deallocated.
246 virtual void deallocateContext(ThreadID thread_num) {}
247
248 /// Notify the CPU that the indicated context is now halted.
249 virtual void haltContext(ThreadID thread_num) {}
250
251 /// Given a Thread Context pointer return the thread num
252 int findContext(ThreadContext *tc);
253
254 /// Given a thread num get tho thread context for it
255 ThreadContext *getContext(int tn) { return threadContexts[tn]; }
256
257 public:
258 typedef BaseCPUParams Params;
259 const Params *params() const
260 { return reinterpret_cast<const Params *>(_params); }
261 BaseCPU(Params *params, bool is_checker = false);
262 virtual ~BaseCPU();
263
264 virtual void init();
265 virtual void startup();
266 virtual void regStats();
267
268 virtual void activateWhenReady(ThreadID tid) {};
269
270 void registerThreadContexts();
271
272 /**
273 * Prepare for another CPU to take over execution.
274 *
275 * When this method exits, all internal state should have been
276 * flushed. After the method returns, the simulator calls
277 * takeOverFrom() on the new CPU with this CPU as its parameter.
278 */
279 virtual void switchOut();
280
281 /**
282 * Load the state of a CPU from the previous CPU object, invoked
283 * on all new CPUs that are about to be switched in.
284 *
285 * A CPU model implementing this method is expected to initialize
286 * its state from the old CPU and connect its memory (unless they
287 * are already connected) to the memories connected to the old
288 * CPU.
289 *
290 * @param cpu CPU to initialize read state from.
291 */
292 virtual void takeOverFrom(BaseCPU *cpu);
293
294 /**
295 * Flush all TLBs in the CPU.
296 *
297 * This method is mainly used to flush stale translations when
298 * switching CPUs. It is also exported to the Python world to
299 * allow it to request a TLB flush after draining the CPU to make
300 * it easier to compare traces when debugging
301 * handover/checkpointing.
302 */
303 void flushTLBs();
304
305 /**
306 * Determine if the CPU is switched out.
307 *
308 * @return True if the CPU is switched out, false otherwise.
309 */
310 bool switchedOut() const { return _switchedOut; }
311
312 /**
313 * Verify that the system is in a memory mode supported by the
314 * CPU.
315 *
316 * Implementations are expected to query the system for the
317 * current memory mode and ensure that it is what the CPU model
318 * expects. If the check fails, the implementation should
319 * terminate the simulation using fatal().
320 */
321 virtual void verifyMemoryMode() const { };
322
323 /**
324 * Number of threads we're actually simulating (<= SMT_MAX_THREADS).
325 * This is a constant for the duration of the simulation.
326 */
327 ThreadID numThreads;
328
329 /**
330 * Vector of per-thread instruction-based event queues. Used for
331 * scheduling events based on number of instructions committed by
332 * a particular thread.
333 */
334 EventQueue **comInstEventQueue;
335
336 /**
337 * Vector of per-thread load-based event queues. Used for
338 * scheduling events based on number of loads committed by
339 *a particular thread.
340 */
341 EventQueue **comLoadEventQueue;
342
343 System *system;
344
345 /**
346 * Serialize this object to the given output stream.
347 *
348 * @note CPU models should normally overload the serializeThread()
349 * method instead of the serialize() method as this provides a
350 * uniform data format for all CPU models and promotes better code
351 * reuse.
352 *
353 * @param os The stream to serialize to.
354 */
355 virtual void serialize(std::ostream &os);
356
357 /**
358 * Reconstruct the state of this object from a checkpoint.
359 *
360 * @note CPU models should normally overload the
361 * unserializeThread() method instead of the unserialize() method
362 * as this provides a uniform data format for all CPU models and
363 * promotes better code reuse.
364
365 * @param cp The checkpoint use.
366 * @param section The section name of this object.
367 */
368 virtual void unserialize(Checkpoint *cp, const std::string &section);
369
370 /**
371 * Serialize a single thread.
372 *
373 * @param os The stream to serialize to.
374 * @param tid ID of the current thread.
375 */
376 virtual void serializeThread(std::ostream &os, ThreadID tid) {};
377
378 /**
379 * Unserialize one thread.
380 *
381 * @param cp The checkpoint use.
382 * @param section The section name of this thread.
383 * @param tid ID of the current thread.
384 */
385 virtual void unserializeThread(Checkpoint *cp, const std::string &section,
386 ThreadID tid) {};
387
388 /**
389 * Return pointer to CPU's branch predictor (NULL if none).
390 * @return Branch predictor pointer.
391 */
392 virtual BranchPred *getBranchPred() { return NULL; };
393
394 virtual Counter totalInsts() const = 0;
395
396 virtual Counter totalOps() const = 0;
397
398 // Function tracing
399 private:
400 bool functionTracingEnabled;
401 std::ostream *functionTraceStream;
402 Addr currentFunctionStart;
403 Addr currentFunctionEnd;
404 Tick functionEntryTick;
405 void enableFunctionTrace();
406 void traceFunctionsInternal(Addr pc);
407
408 private:
409 static std::vector<BaseCPU *> cpuList; //!< Static global cpu list
410
411 public:
412 void traceFunctions(Addr pc)
413 {
414 if (functionTracingEnabled)
415 traceFunctionsInternal(pc);
416 }
417
418 static int numSimulatedCPUs() { return cpuList.size(); }
419 static Counter numSimulatedInsts()
420 {
421 Counter total = 0;
422
423 int size = cpuList.size();
424 for (int i = 0; i < size; ++i)
425 total += cpuList[i]->totalInsts();
426
427 return total;
428 }
429
430 static Counter numSimulatedOps()
431 {
432 Counter total = 0;
433
434 int size = cpuList.size();
435 for (int i = 0; i < size; ++i)
436 total += cpuList[i]->totalOps();
437
438 return total;
439 }
440
441 public:
442 // Number of CPU cycles simulated
443 Stats::Scalar numCycles;
444 Stats::Scalar numWorkItemsStarted;
445 Stats::Scalar numWorkItemsCompleted;
446};
447
448#endif // __CPU_BASE_HH__