gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
thread_state.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 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  */
30 
31 #include "cpu/thread_state.hh"
32 
33 #include "arch/kernel_stats.hh"
34 #include "base/output.hh"
35 #include "cpu/base.hh"
36 #include "cpu/profile.hh"
37 #include "cpu/quiesce_event.hh"
39 #include "mem/port.hh"
40 #include "mem/port_proxy.hh"
42 #include "sim/full_system.hh"
43 #include "sim/serialize.hh"
44 #include "sim/system.hh"
45 
47  : numInst(0), numOp(0), numLoad(0), startNumLoad(0),
48  _status(ThreadContext::Halted), baseCpu(cpu),
49  _contextId(0), _threadId(_tid), lastActivate(0), lastSuspend(0),
50  profile(NULL), profileNode(NULL), profilePC(0), quiesceEvent(NULL),
51  kernelStats(NULL), process(_process), physProxy(NULL), virtProxy(NULL),
52  proxy(NULL), funcExeInst(0), storeCondFailures(0)
53 {
54 }
55 
57 {
58  if (physProxy != NULL)
59  delete physProxy;
60  if (virtProxy != NULL)
61  delete virtProxy;
62  if (proxy != NULL)
63  delete proxy;
64 }
65 
66 void
68 {
70  // thread_num and cpu_id are deterministic from the config
72 
73  if (!FullSystem)
74  return;
75 
76  Tick quiesceEndTick = 0;
77  if (quiesceEvent->scheduled())
78  quiesceEndTick = quiesceEvent->when();
79  SERIALIZE_SCALAR(quiesceEndTick);
80  if (kernelStats)
81  kernelStats->serialize(cp);
82 }
83 
84 void
86 {
87 
89  // thread_num and cpu_id are deterministic from the config
91 
92  if (!FullSystem)
93  return;
94 
95  Tick quiesceEndTick;
96  UNSERIALIZE_SCALAR(quiesceEndTick);
97  if (quiesceEndTick)
98  baseCpu->schedule(quiesceEvent, quiesceEndTick);
99  if (kernelStats)
100  kernelStats->unserialize(cp);
101 }
102 
103 void
105 {
106  // The port proxies only refer to the data port on the CPU side
107  // and can safely be done at init() time even if the CPU is not
108  // connected, i.e. when restoring from a checkpoint and later
109  // switching the CPU in.
110  if (FullSystem) {
111  assert(physProxy == NULL);
112  // This cannot be done in the constructor as the thread state
113  // itself is created in the base cpu constructor and the
114  // getDataPort is a virtual function
115  physProxy = new PortProxy(baseCpu->getDataPort(),
116  baseCpu->cacheLineSize());
117 
118  assert(virtProxy == NULL);
120  } else {
121  assert(proxy == NULL);
122  proxy = new SETranslatingPortProxy(baseCpu->getDataPort(),
123  process,
125  }
126 }
127 
128 PortProxy &
130 {
131  assert(FullSystem);
132  assert(physProxy != NULL);
133  return *physProxy;
134 }
135 
138 {
139  assert(FullSystem);
140  assert(virtProxy != NULL);
141  return *virtProxy;
142 }
143 
146 {
147  assert(!FullSystem);
148  assert(proxy != NULL);
149  return *proxy;
150 }
151 
152 void
154 {
155  if (profile)
156  profile->clear();
157 }
158 
159 void
161 {
162  if (profile)
164 }
A TranslatingPortProxy in FS mode translates a virtual address to a physical address and then calls t...
ProfileNode * profileNode
FunctionProfile * profile
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: thread_state.cc:85
void sample(ProfileNode *node, Addr pc)
Definition: profile.cc:146
PortProxy & getPhysProxy()
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:381
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:146
Counter funcExeInst
Port Object Declaration.
void profileClear()
ThreadState(BaseCPU *cpu, ThreadID _tid, Process *_process)
Definition: thread_state.cc:46
ThreadContext is the external interface to all thread state for anything outside of the CPU...
FSTranslatingPortProxy & getVirtProxy()
EndQuiesceEvent * quiesceEvent
Process * process
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:145
PortProxy Object Declaration.
void clear()
Definition: profile.cc:117
virtual ~ThreadState()
Definition: thread_state.cc:56
Tick when() const
Get the time that the event is scheduled.
Definition: eventq.hh:397
uint64_t Tick
Tick count type.
Definition: types.hh:63
PortProxy * physProxy
A port proxy outgoing only for functional accesses to physical addresses.
FSTranslatingPortProxy * virtProxy
A translating port proxy, outgoing only, for functional accesse to virtual addresses.
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: thread_state.cc:67
SETranslatingPortProxy * proxy
ThreadContext::Status _status
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:143
#define UNSERIALIZE_ENUM(scalar)
Definition: serialize.hh:151
void initMemProxies(ThreadContext *tc)
Initialise the physical and virtual port proxies and tie them to the data port of the CPU...
This object is a proxy for a structural port, to be used for debug accesses.
Definition: port_proxy.hh:84
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:171
TheISA::Kernel::Statistics * kernelStats
std::ostream CheckpointOut
Definition: serialize.hh:67
SETranslatingPortProxy & getMemProxy()
BaseCPU * baseCpu
TranslatingPortProxy Object Declaration for FS.
TranslatingPortProxy Object Declaration for SE.
void profileSample()
#define SERIALIZE_ENUM(scalar)
Definition: serialize.hh:149

Generated on Fri Jun 9 2017 13:03:44 for gem5 by doxygen 1.8.6