Deleted Added
sdiff udiff text old ( 8764:e4660687c49f ) new ( 8766:b0773af78423 )
full compact
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#ifndef __CPU_THREAD_STATE_HH__
32#define __CPU_THREAD_STATE_HH__
33
34#include "arch/types.hh"
35#include "config/the_isa.hh"
36#include "cpu/base.hh"
37#include "cpu/profile.hh"
38#include "cpu/thread_context.hh"
39
40#if !FULL_SYSTEM
41#include "mem/mem_object.hh"
42#include "sim/process.hh"
43#endif
44
45#if FULL_SYSTEM
46class EndQuiesceEvent;
47class FunctionProfile;
48class ProfileNode;
49namespace TheISA {
50 namespace Kernel {
51 class Statistics;
52 };
53};
54#endif
55
56class Checkpoint;
57class Port;
58class TranslatingPort;
59
60/**
61 * Struct for holding general thread state that is needed across CPU
62 * models. This includes things such as pointers to the process,
63 * memory, quiesce events, and certain stats. This can be expanded
64 * to hold more thread-specific stats within it.
65 */
66struct ThreadState {
67 typedef ThreadContext::Status Status;
68
69#if FULL_SYSTEM
70 ThreadState(BaseCPU *cpu, ThreadID _tid);
71#else
72 ThreadState(BaseCPU *cpu, ThreadID _tid, Process *_process);
73#endif
74
75 ~ThreadState();
76
77 void serialize(std::ostream &os);
78
79 void unserialize(Checkpoint *cp, const std::string &section);
80
81 int cpuId() { return baseCpu->cpuId(); }
82
83 int contextId() { return _contextId; }
84
85 void setContextId(int id) { _contextId = id; }
86
87 void setThreadId(ThreadID id) { _threadId = id; }
88
89 ThreadID threadId() { return _threadId; }
90
91 Tick readLastActivate() { return lastActivate; }
92
93 Tick readLastSuspend() { return lastSuspend; }
94
95 void connectPhysPort();
96
97 void connectVirtPort(ThreadContext *tc);
98
99#if FULL_SYSTEM
100 void connectMemPorts(ThreadContext *tc);
101
102 void dumpFuncProfile();
103
104 EndQuiesceEvent *getQuiesceEvent() { return quiesceEvent; }
105
106 void profileClear();
107
108 void profileSample();
109
110 TheISA::Kernel::Statistics *getKernelStats() { return kernelStats; }
111#else
112 Process *getProcessPtr() { return process; }
113#endif
114
115 TranslatingPort *getMemPort();
116
117 void setMemPort(TranslatingPort *_port) { port = _port; }
118
119 VirtualPort *getVirtPort() { return virtPort; }
120
121 FunctionalPort *getPhysPort() { return physPort; }
122
123 void setPhysPort(FunctionalPort *port) { physPort = port; }
124
125 /** Reads the number of instructions functionally executed and
126 * committed.
127 */
128 Counter readFuncExeInst() { return funcExeInst; }
129
130 /** Sets the total number of instructions functionally executed
131 * and committed.
132 */
133 void setFuncExeInst(Counter new_val) { funcExeInst = new_val; }
134
135 /** Returns the status of this thread. */
136 Status status() const { return _status; }
137
138 /** Sets the status of this thread. */
139 void setStatus(Status new_status) { _status = new_status; }
140
141 public:
142 /** Connects port to the functional port of the memory object
143 * below the CPU. */
144 void connectToMemFunc(Port *port);
145
146 /** Number of instructions committed. */
147 Counter numInst;
148 /** Stat for number instructions committed. */
149 Stats::Scalar numInsts;
150 /** Stat for number of memory references. */
151 Stats::Scalar numMemRefs;
152
153 /** Number of simulated loads, used for tracking events based on
154 * the number of loads committed.
155 */
156 Counter numLoad;
157
158 /** The number of simulated loads committed prior to this run. */
159 Counter startNumLoad;
160
161 protected:
162 ThreadContext::Status _status;
163
164 // Pointer to the base CPU.
165 BaseCPU *baseCpu;
166
167 // system wide HW context id
168 int _contextId;
169
170 // Index of hardware thread context on the CPU that this represents.
171 ThreadID _threadId;
172
173 public:
174 /** Last time activate was called on this thread. */
175 Tick lastActivate;
176
177 /** Last time suspend was called on this thread. */
178 Tick lastSuspend;
179
180#if FULL_SYSTEM
181 public:
182 FunctionProfile *profile;
183 ProfileNode *profileNode;
184 Addr profilePC;
185 EndQuiesceEvent *quiesceEvent;
186
187 TheISA::Kernel::Statistics *kernelStats;
188 protected:
189#else
190 Process *process;
191#endif
192
193 TranslatingPort *port;
194
195 /** A functional port, outgoing only, for functional accesse to virtual
196 * addresses. */
197 VirtualPort *virtPort;
198
199 /** A functional port outgoing only for functional accesses to physical
200 * addresses.*/
201 FunctionalPort *physPort;
202
203 public:
204 /*
205 * number of executed instructions, for matching with syscall trace
206 * points in EIO files.
207 */
208 Counter funcExeInst;
209
210 //
211 // Count failed store conditionals so we can warn of apparent
212 // application deadlock situations.
213 unsigned storeCondFailures;
214};
215
216#endif // __CPU_THREAD_STATE_HH__