52 os <<
"UnpredictedBranch";
55 os <<
"BranchPrediction";
58 os <<
"CorrectlyPredictedBranch";
61 os <<
"BadlyPredictedBranch";
64 os <<
"BadlyPredictedBranchTarget";
70 os <<
"SuspendThread";
144 <<
";0x" << std::hex <<
target.instAddr() << std::dec
146 inst->reportData(os);
153 os << branch.
reason <<
" target: 0x" 154 << std::hex << branch.
target.instAddr() << std::dec
155 <<
' ' << *branch.
inst 179 line =
new uint8_t[width_];
185 this->packet = packet;
186 lineWidth = packet->
req->getSize();
192 line = packet->
getPtr<uint8_t>();
MinorDynInstPtr inst
Instruction which caused this branch.
std::ostream & operator<<(std::ostream &os, const InstId &id)
Print this id in the usual slash-separated format expected by MinorTrace.
decltype(nullptr) constexpr NoFault
Contains class definitions for data flowing between pipeline stages in the top-level structure portio...
bool isBranch() const
As static isBranch but on this branch data.
void reportData(std::ostream &os) const
ReportIF interface.
const unsigned int MAX_FORWARD_INSTS
Maximum number of instructions that can be carried by the pipeline.
ThreadID threadId
ThreadID associated with branch.
Reason reason
Explanation for this branch.
unsigned int width() const
Number of instructions carried by this object.
InstSeqNum newStreamSeqNum
Sequence number of new stream/prediction to be adopted.
Minor contains all the definitions within the MinorCPU apart from the CPU class itself.
T * getPtr()
get a pointer to the data ptr.
void reportData(std::ostream &os) const
ReportIF interface.
RequestPtr req
A pointer to the original request.
ForwardInstData(unsigned int width=0, ThreadID tid=InvalidThreadID)
void resize(unsigned int width)
Resize a bubble/empty ForwardInstData and fill with bubbles.
bool isBubble() const
BubbleIF interface.
MinorDynInstPtr insts[MAX_FORWARD_INSTS]
Array of carried insts, ref counted.
unsigned int numInsts
The number of insts slots that can be expected to be valid insts.
void bubbleFill()
Fill with bubbles from 0 to width() - 1.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
int16_t ThreadID
Thread index/ID type.
Forward data betwen Execute and Fetch1 carrying change-of-address/stream information.
static MinorDynInstPtr bubble()
There is a single bubble inst.
void reportData(std::ostream &os) const
ReportIF interface.
InstSeqNum newPredictionSeqNum
void allocateLine(unsigned int width_)
In-place initialise a ForwardLineData, freeing and overridding the line.
void setFault(Fault fault_)
Set fault and possible clear the bubble flag.
TheISA::PCState target
Starting PC of that stream.
ForwardInstData & operator=(const ForwardInstData &src)
Copy the inst array only as far as numInsts.
void adoptPacketData(Packet *packet)
Use the data from a packet as line instead of allocating new space.
std::shared_ptr< FaultBase > Fault
void freeLine()
Free this ForwardLineData line.
Forward flowing data between Fetch2,Decode,Execute carrying a packet of instructions of a width appro...
bool isStreamChange() const
As static isStreamChange but on this branch data.