41 #ifndef __INSTRECORD_HH__ 42 #define __INSTRECORD_HH__ 151 : when(_when), thread(_thread), staticInst(_staticInst), pc(_pc),
152 macroStaticInst(_macroStaticInst), addr(0), size(0), flags(0),
154 fetch_seq_valid(false), cp_seq_valid(false), predicate(true)
163 assert(
data.as_pred);
171 addr =
a; size =
s; flags =
f; mem_valid =
true;
174 template <
typename T,
size_t N>
182 "Type T has an unrecognized size.");
200 data.as_vec = new ::VecRegContainer<TheISA::VecRegSizeBytes>(
d);
214 { fetch_seq = seq; fetch_seq_valid =
true; }
217 { cp_seq = seq; cp_seq_valid =
true; }
221 virtual void dump() = 0;
265 #endif // __INSTRECORD_HH__
bool getFetchSeqValid() const
StaticInstPtr getMacroStaticInst() const
void setFetchSeq(InstSeqNum seq)
bool predicate
is the predicate for execution this inst true or false (not execed)?
uint64_t getIntData() const
InstRecord(Tick _when, ThreadContext *_thread, const StaticInstPtr _staticInst, TheISA::PCState _pc, const StaticInstPtr _macroStaticInst=NULL)
bool getCpSeqValid() const
enum Trace::InstRecord::DataStatus data_status
union Trace::InstRecord::@115 data
InstTracer(const Params *p)
Addr size
The size of the memory request.
InstSeqNum getFetchSeq() const
unsigned getFlags() const
void setData(::VecRegContainer< TheISA::VecRegSizeBytes > &d)
ThreadContext is the external interface to all thread state for anything outside of the CPU...
InstSeqNum getCpSeq() const
ThreadContext * getThread() const
uint64_t Tick
Tick count type.
VecPredReg::Container VecPredRegContainer
TheISA::PCState getPCState() const
bool mem_valid
Are the memory fields in the record valid?
void setMem(Addr a, Addr s, unsigned f)
constexpr unsigned VecPredRegHasPackedRepr
void setPredicate(bool val)
bool cp_seq_valid
Are the commit sequence number fields valid?
StaticInstPtr macroStaticInst
void setData(::VecPredRegContainer< TheISA::VecPredRegSizeBits, TheISA::VecPredRegHasPackedRepr > &d)
void setCPSeq(InstSeqNum seq)
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.
::VecRegContainer< TheISA::VecRegSizeBytes > * as_vec
::VecPredRegContainer< TheISA::VecPredRegSizeBits, TheISA::VecPredRegHasPackedRepr > * as_pred
DataStatus
What size of data was written?
unsigned flags
The flags that were assigned to the request.
double getFloatData() const
void setData(std::array< T, N > d)
Vector Registers layout specification.
int getDataStatus() const
constexpr unsigned VecPredRegSizeBits
Generic predicate register container.
bool fetch_seq_valid
Are the fetch sequence number fields valid?
void setWhen(Tick new_when)
GenericISA::DelaySlotPCState< MachInst > PCState
Addr addr
The address that was accessed.
Abstract superclass for simulation objects.
StaticInstPtr getStaticInst() const