gem5  v19.0.0.0
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  * Authors: Kevin Lim
29  */
30 
31 #include "cpu/thread_state.hh"
32 
33 #include "base/output.hh"
34 #include "cpu/base.hh"
35 #include "cpu/profile.hh"
36 #include "cpu/quiesce_event.hh"
37 #include "kern/kernel_stats.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  funcExeInst(0), storeCondFailures(0)
53 {
54 }
55 
57 {
58  if (physProxy != NULL)
59  delete physProxy;
60  if (virtProxy != NULL)
61  delete virtProxy;
62 }
63 
64 void
66 {
68  // thread_num and cpu_id are deterministic from the config
70 
71  if (!FullSystem)
72  return;
73 
74  Tick quiesceEndTick = 0;
75  if (quiesceEvent->scheduled())
76  quiesceEndTick = quiesceEvent->when();
77  SERIALIZE_SCALAR(quiesceEndTick);
78  if (kernelStats)
80 }
81 
82 void
84 {
85 
87  // thread_num and cpu_id are deterministic from the config
89 
90  if (!FullSystem)
91  return;
92 
93  Tick quiesceEndTick;
94  UNSERIALIZE_SCALAR(quiesceEndTick);
95  if (quiesceEndTick)
96  baseCpu->schedule(quiesceEvent, quiesceEndTick);
97  if (kernelStats)
99 }
100 
101 void
103 {
104  // The port proxies only refer to the data port on the CPU side
105  // and can safely be done at init() time even if the CPU is not
106  // connected, i.e. when restoring from a checkpoint and later
107  // switching the CPU in.
108  if (FullSystem) {
109  assert(physProxy == NULL);
110  // This cannot be done in the constructor as the thread state
111  // itself is created in the base cpu constructor and the
112  // getSendFunctional is a virtual function
115 
116  assert(virtProxy == NULL);
118  } else {
119  assert(virtProxy == NULL);
121  process,
123  }
124 }
125 
126 PortProxy &
128 {
129  assert(FullSystem);
130  assert(physProxy != NULL);
131  return *physProxy;
132 }
133 
134 PortProxy &
136 {
137  assert(virtProxy != NULL);
138  return *virtProxy;
139 }
140 
141 void
143 {
144  if (profile)
145  profile->clear();
146 }
147 
148 void
150 {
151  if (profile)
153 }
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:83
void sample(ProfileNode *node, Addr pc)
Definition: profile.cc:146
Tick when() const
Get the time that the event is scheduled.
Definition: eventq.hh:401
PortProxy & getPhysProxy()
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:136
Counter funcExeInst
void profileClear()
ThreadState(BaseCPU *cpu, ThreadID _tid, Process *_process)
Definition: thread_state.cc:46
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: kernel_stats.hh:63
Definition: cprintf.cc:42
ThreadContext is the external interface to all thread state for anything outside of the CPU...
EndQuiesceEvent * quiesceEvent
Process * process
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:645
PortProxy Object Declaration.
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:385
void clear()
Definition: profile.cc:117
virtual ~ThreadState()
Definition: thread_state.cc:56
uint64_t Tick
Tick count type.
Definition: types.hh:63
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:167
Kernel::Statistics * kernelStats
Port Object Declaration.
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: thread_state.cc:65
ThreadContext::Status _status
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:643
#define UNSERIALIZE_ENUM(scalar)
Definition: serialize.hh:651
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 port or other object which implements the functional response protocol...
Definition: port_proxy.hh:82
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:227
unsigned int cacheLineSize() const
Get the cache line size of the system.
Definition: base.hh:391
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: kernel_stats.hh:64
std::ostream CheckpointOut
Definition: serialize.hh:68
BaseCPU * baseCpu
TranslatingPortProxy Object Declaration for FS.
TranslatingPortProxy Object Declaration for SE.
void schedule(Event &event, Tick when)
Definition: eventq.hh:744
void profileSample()
PortProxy & getVirtProxy()
PortProxy * virtProxy
A translating port proxy, outgoing only, for functional accesse to virtual addresses.
#define SERIALIZE_ENUM(scalar)
Definition: serialize.hh:649

Generated on Fri Feb 28 2020 16:27:00 for gem5 by doxygen 1.8.13