gem5  v20.0.0.3
insttracer.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014, 2017 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) 2001-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __INSTRECORD_HH__
42 #define __INSTRECORD_HH__
43 
45 #include "arch/generic/vec_reg.hh"
46 #include "base/types.hh"
47 #include "cpu/inst_seq.hh"
48 #include "cpu/static_inst.hh"
49 #include "sim/sim_object.hh"
50 
51 class ThreadContext;
52 
53 namespace Trace {
54 
56 {
57  protected:
59 
60  // The following fields are initialized by the constructor and
61  // thus guaranteed to be valid.
63  // need to make this ref-counted so it doesn't go away before we
64  // dump the record
68 
69  // The remaining fields are only valid for particular instruction
70  // types (e.g, addresses for memory ops) or when particular
71  // options are enabled (e.g., tracing full register contents).
72  // Each data field has an associated valid flag to indicate
73  // whether the data field is valid.
74 
75  /*** @defgroup mem
76  * @{
77  * Memory request information in the instruction accessed memory.
78  * @see mem_valid
79  */
82  unsigned flags;
83 
94  union {
95  uint64_t as_int;
96  double as_double;
100  } data;
101 
107 
113 
117  enum DataStatus {
119  DataInt8 = 1, // set to equal number of bytes
124  DataVec = 5,
126  } data_status;
127 
131  bool mem_valid;
132 
141 
144  bool predicate;
145 
146  public:
147  InstRecord(Tick _when, ThreadContext *_thread,
148  const StaticInstPtr _staticInst,
149  TheISA::PCState _pc,
150  const StaticInstPtr _macroStaticInst = NULL)
151  : when(_when), thread(_thread), staticInst(_staticInst), pc(_pc),
152  macroStaticInst(_macroStaticInst), addr(0), size(0), flags(0),
153  fetch_seq(0), cp_seq(0), data_status(DataInvalid), mem_valid(false),
154  fetch_seq_valid(false), cp_seq_valid(false), predicate(true)
155  { }
156 
157  virtual ~InstRecord()
158  {
159  if (data_status == DataVec) {
160  assert(data.as_vec);
161  delete data.as_vec;
162  } else if (data_status == DataVecPred) {
163  assert(data.as_pred);
164  delete data.as_pred;
165  }
166  }
167 
168  void setWhen(Tick new_when) { when = new_when; }
169  void setMem(Addr a, Addr s, unsigned f)
170  {
171  addr = a; size = s; flags = f; mem_valid = true;
172  }
173 
174  template <typename T, size_t N>
175  void
176  setData(std::array<T, N> d)
177  {
178  data.as_int = d[0];
179  data_status = (DataStatus)sizeof(T);
180  static_assert(sizeof(T) == DataInt8 || sizeof(T) == DataInt16 ||
181  sizeof(T) == DataInt32 || sizeof(T) == DataInt64,
182  "Type T has an unrecognized size.");
183  }
184 
185  void setData(uint64_t d) { data.as_int = d; data_status = DataInt64; }
186  void setData(uint32_t d) { data.as_int = d; data_status = DataInt32; }
187  void setData(uint16_t d) { data.as_int = d; data_status = DataInt16; }
188  void setData(uint8_t d) { data.as_int = d; data_status = DataInt8; }
189 
190  void setData(int64_t d) { setData((uint64_t)d); }
191  void setData(int32_t d) { setData((uint32_t)d); }
192  void setData(int16_t d) { setData((uint16_t)d); }
193  void setData(int8_t d) { setData((uint8_t)d); }
194 
195  void setData(double d) { data.as_double = d; data_status = DataDouble; }
196 
197  void
199  {
200  data.as_vec = new ::VecRegContainer<TheISA::VecRegSizeBytes>(d);
202  }
203 
204  void
207  {
211  }
212 
214  { fetch_seq = seq; fetch_seq_valid = true; }
215 
217  { cp_seq = seq; cp_seq_valid = true; }
218 
219  void setPredicate(bool val) { predicate = val; }
220 
221  virtual void dump() = 0;
222 
223  public:
224  Tick getWhen() const { return when; }
225  ThreadContext *getThread() const { return thread; }
227  TheISA::PCState getPCState() const { return pc; }
229 
230  Addr getAddr() const { return addr; }
231  Addr getSize() const { return size; }
232  unsigned getFlags() const { return flags; }
233  bool getMemValid() const { return mem_valid; }
234 
235  uint64_t getIntData() const { return data.as_int; }
236  double getFloatData() const { return data.as_double; }
237  int getDataStatus() const { return data_status; }
238 
239  InstSeqNum getFetchSeq() const { return fetch_seq; }
240  bool getFetchSeqValid() const { return fetch_seq_valid; }
241 
242  InstSeqNum getCpSeq() const { return cp_seq; }
243  bool getCpSeqValid() const { return cp_seq_valid; }
244 };
245 
246 class InstTracer : public SimObject
247 {
248  public:
250  {}
251 
252  virtual ~InstTracer()
253  {};
254 
255  virtual InstRecord *
256  getInstRecord(Tick when, ThreadContext *tc,
258  const StaticInstPtr macroStaticInst = NULL) = 0;
259 };
260 
261 
262 
263 } // namespace Trace
264 
265 #endif // __INSTRECORD_HH__
virtual void dump()=0
bool getFetchSeqValid() const
Definition: insttracer.hh:240
void setData(uint64_t d)
Definition: insttracer.hh:185
TheISA::PCState pc
Definition: insttracer.hh:66
StaticInstPtr getMacroStaticInst() const
Definition: insttracer.hh:228
void setFetchSeq(InstSeqNum seq)
Definition: insttracer.hh:213
bool predicate
is the predicate for execution this inst true or false (not execed)?
Definition: insttracer.hh:144
uint64_t getIntData() const
Definition: insttracer.hh:235
Addr getSize() const
Definition: insttracer.hh:231
InstRecord(Tick _when, ThreadContext *_thread, const StaticInstPtr _staticInst, TheISA::PCState _pc, const StaticInstPtr _macroStaticInst=NULL)
Definition: insttracer.hh:147
void setData(int32_t d)
Definition: insttracer.hh:191
SimObjectParams Params
Definition: sim_object.hh:114
bool getCpSeqValid() const
Definition: insttracer.hh:243
void setData(int8_t d)
Definition: insttracer.hh:193
enum Trace::InstRecord::DataStatus data_status
union Trace::InstRecord::@115 data
Bitfield< 8 > a
InstTracer(const Params *p)
Definition: insttracer.hh:249
ThreadContext * thread
Definition: insttracer.hh:62
Addr size
The size of the memory request.
Definition: insttracer.hh:81
void setData(uint16_t d)
Definition: insttracer.hh:187
InstSeqNum getFetchSeq() const
Definition: insttracer.hh:239
unsigned getFlags() const
Definition: insttracer.hh:232
void setData(::VecRegContainer< TheISA::VecRegSizeBytes > &d)
Definition: insttracer.hh:198
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Bitfield< 63 > val
Definition: misc.hh:769
InstSeqNum getCpSeq() const
Definition: insttracer.hh:242
Bitfield< 6 > f
void setData(uint32_t d)
Definition: insttracer.hh:186
virtual ~InstRecord()
Definition: insttracer.hh:157
Bitfield< 4 > s
ThreadContext * getThread() const
Definition: insttracer.hh:225
void setData(uint8_t d)
Definition: insttracer.hh:188
virtual ~InstTracer()
Definition: insttracer.hh:252
uint64_t Tick
Tick count type.
Definition: types.hh:61
VecPredReg::Container VecPredRegContainer
Definition: registers.hh:77
TheISA::PCState getPCState() const
Definition: insttracer.hh:227
Bitfield< 9 > d
bool mem_valid
Are the memory fields in the record valid?
Definition: insttracer.hh:131
void setMem(Addr a, Addr s, unsigned f)
Definition: insttracer.hh:169
InstSeqNum fetch_seq
Definition: insttracer.hh:106
constexpr unsigned VecPredRegHasPackedRepr
Definition: types.hh:772
void setPredicate(bool val)
Definition: insttracer.hh:219
bool cp_seq_valid
Are the commit sequence number fields valid?
Definition: insttracer.hh:140
StaticInstPtr macroStaticInst
Definition: insttracer.hh:67
uint64_t InstSeqNum
Definition: inst_seq.hh:37
void setData(::VecPredRegContainer< TheISA::VecPredRegSizeBits, TheISA::VecPredRegHasPackedRepr > &d)
Definition: insttracer.hh:205
void setCPSeq(InstSeqNum seq)
Definition: insttracer.hh:216
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
void setData(double d)
Definition: insttracer.hh:195
::VecRegContainer< TheISA::VecRegSizeBytes > * as_vec
Definition: insttracer.hh:97
void setData(int16_t d)
Definition: insttracer.hh:192
::VecPredRegContainer< TheISA::VecPredRegSizeBits, TheISA::VecPredRegHasPackedRepr > * as_pred
Definition: insttracer.hh:99
DataStatus
What size of data was written?
Definition: insttracer.hh:117
unsigned flags
The flags that were assigned to the request.
Definition: insttracer.hh:82
double getFloatData() const
Definition: insttracer.hh:236
void setData(std::array< T, N > d)
Definition: insttracer.hh:176
Vector Registers layout specification.
int getDataStatus() const
Definition: insttracer.hh:237
constexpr unsigned VecPredRegSizeBits
Definition: types.hh:771
Generic predicate register container.
Definition: vec_pred_reg.hh:47
Addr getAddr() const
Definition: insttracer.hh:230
bool getMemValid() const
Definition: insttracer.hh:233
StaticInstPtr staticInst
Definition: insttracer.hh:65
bool fetch_seq_valid
Are the fetch sequence number fields valid?
Definition: insttracer.hh:136
InstSeqNum cp_seq
Definition: insttracer.hh:112
void setWhen(Tick new_when)
Definition: insttracer.hh:168
Tick getWhen() const
Definition: insttracer.hh:224
void setData(int64_t d)
Definition: insttracer.hh:190
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
Bitfield< 0 > p
Addr addr
The address that was accessed.
Definition: insttracer.hh:80
Abstract superclass for simulation objects.
Definition: sim_object.hh:93
StaticInstPtr getStaticInst() const
Definition: insttracer.hh:226

Generated on Fri Jul 3 2020 15:53:04 for gem5 by doxygen 1.8.13