gem5  v20.0.0.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules 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 
29 #include "cpu/thread_state.hh"
30 
31 #include "base/output.hh"
32 #include "cpu/base.hh"
33 #include "cpu/profile.hh"
34 #include "cpu/quiesce_event.hh"
35 #include "kern/kernel_stats.hh"
36 #include "mem/port.hh"
37 #include "mem/port_proxy.hh"
40 #include "sim/full_system.hh"
41 #include "sim/serialize.hh"
42 #include "sim/system.hh"
43 
45  : numInst(0), numOp(0), numLoad(0), startNumLoad(0),
46  _status(ThreadContext::Halted), baseCpu(cpu),
47  _contextId(0), _threadId(_tid), lastActivate(0), lastSuspend(0),
48  profile(NULL), profileNode(NULL), profilePC(0), quiesceEvent(NULL),
49  kernelStats(NULL), process(_process), physProxy(NULL), virtProxy(NULL),
50  funcExeInst(0), storeCondFailures(0)
51 {
52 }
53 
55 {
56  if (physProxy != NULL)
57  delete physProxy;
58  if (virtProxy != NULL)
59  delete virtProxy;
60 }
61 
62 void
64 {
66  // thread_num and cpu_id are deterministic from the config
68 
69  if (!FullSystem)
70  return;
71 
72  Tick quiesceEndTick = 0;
73  if (quiesceEvent->scheduled())
74  quiesceEndTick = quiesceEvent->when();
75  SERIALIZE_SCALAR(quiesceEndTick);
76  if (kernelStats)
78 }
79 
80 void
82 {
83 
85  // thread_num and cpu_id are deterministic from the config
87 
88  if (!FullSystem)
89  return;
90 
91  Tick quiesceEndTick;
92  UNSERIALIZE_SCALAR(quiesceEndTick);
93  if (quiesceEndTick)
94  baseCpu->schedule(quiesceEvent, quiesceEndTick);
95  if (kernelStats)
97 }
98 
99 void
101 {
102  // The port proxies only refer to the data port on the CPU side
103  // and can safely be done at init() time even if the CPU is not
104  // connected, i.e. when restoring from a checkpoint and later
105  // switching the CPU in.
106  if (FullSystem) {
107  assert(physProxy == NULL);
108  // This cannot be done in the constructor as the thread state
109  // itself is created in the base cpu constructor and the
110  // getSendFunctional is a virtual function
113 
114  assert(virtProxy == NULL);
116  } else {
117  assert(virtProxy == NULL);
120  }
121 }
122 
123 PortProxy &
125 {
126  assert(FullSystem);
127  assert(physProxy != NULL);
128  return *physProxy;
129 }
130 
131 PortProxy &
133 {
134  assert(virtProxy != NULL);
135  return *virtProxy;
136 }
137 
138 void
140 {
141  if (profile)
142  profile->clear();
143 }
144 
145 void
147 {
148  if (profile)
150 }
ProfileNode * profileNode
FunctionProfile * profile
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: thread_state.cc:81
void sample(ProfileNode *node, Addr pc)
Definition: profile.cc:149
PortProxy & getPhysProxy()
This proxy attempts to translate virtual addresses using the TLBs.
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:132
Counter funcExeInst
void profileClear()
ThreadState(BaseCPU *cpu, ThreadID _tid, Process *_process)
Definition: thread_state.cc:44
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: kernel_stats.hh:60
Definition: cprintf.cc:40
ThreadContext is the external interface to all thread state for anything outside of the CPU...
EndQuiesceEvent * quiesceEvent
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:770
PortProxy Object Declaration.
#define SERIALIZE_ENUM(scalar)
Definition: serialize.hh:786
void clear()
Definition: profile.cc:118
virtual ~ThreadState()
Definition: thread_state.cc:54
uint64_t Tick
Tick count type.
Definition: types.hh:61
PortProxy * physProxy
A port proxy outgoing only for functional accesses to physical addresses.
virtual PortProxy::SendFunctionalFunc getSendFunctional()
Returns a sendFunctional delegate for use with port proxies.
Definition: base.hh:163
Kernel::Statistics * kernelStats
void schedule(Event &event, Tick when)
Definition: eventq.hh:998
Port Object Declaration.
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: thread_state.cc:63
ThreadContext::Status _status
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:763
void initMemProxies(ThreadContext *tc)
Initialise the physical and virtual port proxies and tie them to the data port of the CPU...
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:460
This object is a proxy for a port or other object which implements the functional response protocol...
Definition: port_proxy.hh:80
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
unsigned int cacheLineSize() const
Get the cache line size of the system.
Definition: base.hh:387
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: kernel_stats.hh:61
std::ostream CheckpointOut
Definition: serialize.hh:63
#define UNSERIALIZE_ENUM(scalar)
Definition: serialize.hh:793
BaseCPU * baseCpu
void profileSample()
Tick when() const
Get the time that the event is scheduled.
Definition: eventq.hh:500
PortProxy & getVirtProxy()
PortProxy * virtProxy
A translating port proxy, outgoing only, for functional accesse to virtual addresses.

Generated on Mon Jun 8 2020 15:45:09 for gem5 by doxygen 1.8.13