Go to the documentation of this file.
45 #include "arch/locked_mem.hh"
47 #include "config/the_isa.hh"
52 #include "debug/Activity.hh"
53 #include "debug/HtmCpu.hh"
54 #include "debug/IEW.hh"
55 #include "debug/LSQUnit.hh"
56 #include "debug/O3PipeView.hh"
68 :
Event(Default_Pri, AutoDelete),
69 inst(_inst), pkt(_pkt), lsqPtr(lsq_ptr)
71 assert(_inst->savedReq);
72 _inst->savedReq->writebackScheduled();
78 assert(!lsqPtr->cpu->switchedOut());
80 lsqPtr->writeback(inst, pkt);
82 assert(inst->savedReq);
83 inst->savedReq->writebackDone();
90 return "Store writeback";
98 assert(req !=
nullptr);
101 if (senderState->alive()) {
104 senderState->outstanding--;
133 "store notification (ignored) of HTM transaction failure "
134 "in cache - addr=0x%lx - rc=%s - htmUid=%d\n",
151 panic(
"HTM error - unhandled return code from cache (%s)",
156 std::make_shared<GenericHtmFailureFault>(
157 inst->getHtmTransactionUid(),
161 "load notification of HTM transaction failure "
162 "in cache - pc=%s - addr=0x%lx - "
163 "rc=%u - htmUid=%d\n",
164 inst->pcState(), pkt->
getAddr(),
176 if (!inst->isSquashed()) {
180 assert(inst->isLoad() || inst->isStoreConditional() ||
190 if (inst->isStore() || inst->isAtomic()) {
195 }
else if (inst->isStore()) {
215 LSQ *lsq_ptr,
unsigned id)
266 : statistics::
Group(parent),
267 ADD_STAT(forwLoads, statistics::units::Count::get(),
268 "Number of loads that had data forwarded from stores"),
269 ADD_STAT(squashedLoads, statistics::units::Count::get(),
270 "Number of loads squashed"),
271 ADD_STAT(ignoredResponses, statistics::units::Count::get(),
272 "Number of memory responses ignored because the instruction is "
274 ADD_STAT(memOrderViolation, statistics::units::Count::get(),
275 "Number of memory ordering violations"),
276 ADD_STAT(squashedStores, statistics::units::Count::get(),
277 "Number of stores squashed"),
278 ADD_STAT(rescheduledLoads, statistics::units::Count::get(),
279 "Number of loads that were rescheduled"),
280 ADD_STAT(blockedByCache, statistics::units::Count::get(),
281 "Number of times an access to memory failed due to the cache "
283 ADD_STAT(loadToUse,
"Distribution of cycle latency between the "
284 "first time a load is issued and its completion")
316 assert(inst->isMemRef());
318 assert(inst->isLoad() || inst->isStore() || inst->isAtomic());
320 if (inst->isLoad()) {
346 assert(load_inst->lqIdx > 0);
354 if (load_inst->isHtmStart()) {
356 DPRINTF(HtmCpu,
">> htmStarts++ (%d) : htmStops (%d)\n",
361 auto htm_uid = htm_cpt->getHtmUid();
364 if (!load_inst->inHtmTransactionalState()) {
365 htm_uid = htm_cpt->newHtmUid();
366 DPRINTF(HtmCpu,
"generating new htmUid=%u\n", htm_uid);
367 if (htm_depth != 1) {
369 "unusual HTM transactional depth (%d)"
370 " possibly caused by mispeculation - htmUid=%u\n",
374 load_inst->setHtmTransactionalState(htm_uid, htm_depth);
377 if (load_inst->isHtmStop()) {
379 DPRINTF(HtmCpu,
">> htmStarts (%d) : htmStops++ (%d)\n",
384 "htmStops==1 && htmStarts==0. "
385 "This generally shouldn't happen "
386 "(unless due to misspeculation)\n");
404 assert(store_inst->lqIdx > 0);
453 bool no_squash =
cpu->
thread[
x]->noSquashFromTC;
471 if (ld_inst->effAddrValid() &&
476 bool force_squash =
false;
479 ld_inst = iter->instruction();
482 if (!ld_inst->effAddrValid() || ld_inst->strictlyOrdered())
486 ld_inst->seqNum, invalidate_addr);
496 if (ld_inst->possibleLoadViolation() || force_squash) {
498 pkt->
getAddr(), ld_inst->seqNum);
501 ld_inst->fault = std::make_shared<ReExec>();
505 pkt->
getAddr(), ld_inst->seqNum);
516 ld_inst->hitExternalSnoop(
true);
537 if (!ld_inst->effAddrValid() || ld_inst->strictlyOrdered()) {
546 if (inst_eff_addr2 >= ld_eff_addr1 && inst_eff_addr1 <= ld_eff_addr2) {
547 if (inst->isLoad()) {
551 if (ld_inst->hitExternalSnoop()) {
555 "and [sn:%lli] at address %#x\n",
556 inst->seqNum, ld_inst->seqNum, ld_eff_addr1);
561 return std::make_shared<GenericISA::M5PanicFault>(
562 "Detected fault with inst [sn:%lli] and "
563 "[sn:%lli] at address %#x\n",
564 inst->seqNum, ld_inst->seqNum, ld_eff_addr1);
570 ld_inst->possibleLoadViolation(
true);
572 " between instructions [sn:%lli] and [sn:%lli]\n",
573 inst_eff_addr1, inst->seqNum, ld_inst->seqNum);
582 "[sn:%lli] at address %#x\n",
583 inst->seqNum, ld_inst->seqNum, ld_eff_addr1);
588 return std::make_shared<GenericISA::M5PanicFault>(
589 "Detected fault with "
590 "inst [sn:%lli] and [sn:%lli] at address %#x\n",
591 inst->seqNum, ld_inst->seqNum, ld_eff_addr1);
610 inst->pcState(), inst->seqNum);
612 assert(!inst->isSquashed());
614 load_fault = inst->initiateAcc();
616 if (load_fault ==
NoFault && !inst->readMemAccPredicate()) {
617 assert(inst->readPredicate());
619 inst->completeAcc(
nullptr);
625 if (inst->isTranslationDelayed() && load_fault ==
NoFault)
628 if (load_fault !=
NoFault && inst->translationCompleted() &&
629 inst->savedReq->isPartialFault() && !inst->savedReq->isComplete()) {
630 assert(inst->savedReq->isSplit());
640 if (load_fault !=
NoFault || !inst->readPredicate()) {
645 if (!inst->readPredicate())
646 inst->forwardOldRegs();
649 (load_fault !=
NoFault ?
"fault" :
"predication"));
650 if (!(inst->hasRequest() && inst->strictlyOrdered()) ||
651 inst->isAtCommit()) {
657 if (inst->effAddrValid()) {
658 auto it = inst->lqIt;
675 int store_idx = store_inst->sqIdx;
678 store_inst->pcState(), store_inst->seqNum);
680 assert(!store_inst->isSquashed());
684 typename LoadQueue::iterator loadIt = store_inst->lqIt;
686 Fault store_fault = store_inst->initiateAcc();
688 if (store_inst->isTranslationDelayed() &&
692 if (!store_inst->readPredicate()) {
693 DPRINTF(
LSQUnit,
"Store [sn:%lli] not executed from predication\n",
695 store_inst->forwardOldRegs();
701 store_inst->pcState(), store_inst->seqNum);
706 assert(store_fault ==
NoFault);
708 if (store_inst->isStoreConditional() || store_inst->isAtomic()) {
732 if (!inst->isInstPrefetch() && !inst->isDataPrefetch()
733 && inst->firstIssue != -1
734 && inst->lastWakeDependents != -1) {
736 inst->lastWakeDependents - inst->firstIssue));
767 if (
x.instruction()->seqNum > youngest_inst) {
772 x.instruction()->pcState(),
773 x.instruction()->seqNum);
786 storeWBIt->request()->sendPacketToCache();
823 if (
storeWBIt->instruction()->isDataPrefetch()) {
840 "[sn:%lli] is %s%s and not head of the queue\n",
842 req->
request()->getPaddr(), inst->seqNum,
844 req->
mainRequest()->isRelease() ?
"/Release" :
"");
850 assert(!inst->memData);
851 inst->memData =
new uint8_t[req->
_size];
854 memset(inst->memData, 0, req->
_size);
866 if (inst->isStoreConditional() || inst->isAtomic()) {
874 "to Addr:%#x, data:%#x [sn:%lli]\n",
876 req->
request()->getPaddr(), (
int)*(inst->memData),
880 if (inst->isStoreConditional()) {
884 inst->recordResult(
false);
887 inst->recordResult(
true);
894 "Instantly completing it.\n",
909 if (req->
request()->isLocalAccess()) {
910 assert(!inst->isStoreConditional());
911 assert(!inst->inHtmTransactionalState());
916 req->
request()->localAccessor(thread, main_pkt);
929 DPRINTF(
LSQUnit,
"D-Cache became blocked when writing [sn:%lli], "
930 "will retry later\n",
941 "(Loads:%i Stores:%i)\n", squashed_num,
loads,
stores);
962 DPRINTF(HtmCpu,
">> htmStarts-- (%d) : htmStops (%d)\n",
968 DPRINTF(HtmCpu,
">> htmStarts (%d) : htmStops-- (%d)\n",
984 uint64_t in_flight_uid = 0;
986 if (scan_it->instruction()->isHtmStart() &&
987 !scan_it->instruction()->isSquashed()) {
988 in_flight_uid = scan_it->instruction()->getHtmTransactionUid();
989 DPRINTF(HtmCpu,
"loadQueue[%d]: found valid HtmStart htmUid=%u\n",
990 scan_it._idx, in_flight_uid);
998 const uint64_t old_local_htm_uid = htm_cpt->getHtmUid();
999 uint64_t new_local_htm_uid;
1000 if (in_flight_uid > 0)
1001 new_local_htm_uid = in_flight_uid;
1005 if (old_local_htm_uid != new_local_htm_uid) {
1006 DPRINTF(HtmCpu,
"flush: lastRetiredHtmUid=%u\n",
1008 DPRINTF(HtmCpu,
"flush: resetting localHtmUid=%u\n",
1011 htm_cpt->setHtmUid(new_local_htm_uid);
1027 "idx:%i [sn:%lli]\n",
1035 panic(
"Is stalled should have been cleared by stalling load!\n");
1058 return htm_cpt->getHtmUid();
1074 if (!
storeWBIt->instruction()->isStoreConditional()) {
1078 storeWBIt->instruction()->setCompleted();
1098 if (inst->isSquashed()) {
1099 assert (!inst->isStore() || inst->isStoreConditional());
1104 if (!inst->isExecuted()) {
1105 inst->setExecuted();
1109 inst->completeAcc(pkt);
1119 auto htm_fault = std::dynamic_pointer_cast<
1123 assert(
dynamic_cast<ReExec*
>(inst->fault.
get()) !=
nullptr ||
1124 inst->savedReq->isPartialFault());
1132 "%s writeback with HTM failure fault, "
1133 "however, completing packet is not aware of "
1134 "transaction failure. cause=%s htmUid=%u\n",
1135 inst->staticInst->getName(),
1137 htm_fault->getHtmUid());
1141 "due to pending fault.\n", inst->seqNum);
1157 assert(store_idx->valid());
1158 store_idx->completed() =
true;
1168 DynInstPtr store_inst = store_idx->instruction();
1180 DPRINTF(
LSQUnit,
"Completing store [sn:%lli], idx:%i, store head "
1185 if (debug::O3PipeView) {
1186 store_inst->storeTick =
1187 curTick() - store_inst->fetchTick;
1201 store_inst->setCompleted();
1213 if (
cpu->
checker && !store_inst->isStoreConditional()) {
1222 bool cache_got_blocked =
false;
1230 cache_got_blocked =
true;
1241 state->outstanding++;
1242 state->request()->packetSent();
1244 if (cache_got_blocked) {
1249 assert(state->request() ==
storeWBIt->request());
1252 state->request()->packetNotSent();
1254 DPRINTF(
LSQUnit,
"Memory request (pkt: %s) from inst [sn:%llu] was"
1255 " %ssent (cache is blocked: %d, cache_got_blocked: %d)\n",
1256 data_pkt->
print(), state->inst->seqNum,
1273 cprintf(
"Load store queue: Dumping instructions.\n");
1279 cprintf(
"%s.[sn:%llu] ", inst->pcState(), inst->seqNum);
1288 cprintf(
"%s.[sn:%llu] ", inst->pcState(), inst->seqNum);
1313 assert(!load_inst->isExecuted());
1321 (load_idx !=
loadQueue.
head() || !load_inst->isAtCommit())) {
1325 load_inst->clearIssued();
1326 load_inst->effAddrValid(
false);
1329 load_inst->seqNum, load_inst->pcState());
1336 return std::make_shared<GenericISA::M5PanicFault>(
1337 "Strictly ordered load [sn:%llx] PC %s\n",
1338 load_inst->seqNum, load_inst->pcState());
1342 "storeHead: %i addr: %#x%s\n",
1350 load_inst->recordResult(
false);
1352 load_inst->recordResult(
true);
1356 assert(!load_inst->memData);
1357 assert(!load_inst->inHtmTransactionalState());
1383 if (!load_inst->memData) {
1384 load_inst->memData =
1387 memset(load_inst->memData, 0, req->
mainRequest()->getSize());
1391 if (load_inst->inHtmTransactionalState()) {
1393 load_inst->getHtmTransactionUid());
1404 auto store_it = load_inst->sqIt;
1407 while (store_it !=
storeWBIt && !load_inst->isDataPrefetch()) {
1410 assert(store_it->valid());
1411 assert(store_it->instruction()->seqNum < load_inst->seqNum);
1412 int store_size = store_it->size();
1417 if (store_size != 0 && !store_it->instruction()->strictlyOrdered() &&
1418 !(store_it->request()->mainRequest() &&
1419 store_it->request()->mainRequest()->isCacheMaintenance())) {
1420 assert(store_it->instruction()->effAddrValid());
1425 auto req_e = req_s + req->
mainRequest()->getSize();
1426 auto st_s = store_it->instruction()->effAddr;
1427 auto st_e = st_s + store_size;
1429 bool store_has_lower_limit = req_s >= st_s;
1430 bool store_has_upper_limit = req_e <= st_e;
1431 bool lower_load_has_store_part = req_s < st_e;
1432 bool upper_load_has_store_part = req_e > st_s;
1440 if (!store_it->instruction()->isAtomic() &&
1441 store_has_lower_limit && store_has_upper_limit &&
1444 const auto& store_req = store_it->request()->mainRequest();
1445 coverage = store_req->isMasked() ?
1452 ((store_has_lower_limit && lower_load_has_store_part) ||
1453 (store_has_upper_limit && upper_load_has_store_part) ||
1454 (lower_load_has_store_part && upper_load_has_store_part))) ||
1458 ((store_has_lower_limit || upper_load_has_store_part) &&
1459 (store_has_upper_limit || lower_load_has_store_part))) ||
1462 (store_it->instruction()->isAtomic() &&
1463 ((store_has_lower_limit || upper_load_has_store_part) &&
1464 (store_has_upper_limit || lower_load_has_store_part)))) {
1472 store_it->instruction()->effAddr;
1475 if (!load_inst->memData) {
1476 load_inst->memData =
1479 if (store_it->isAllZeros())
1480 memset(load_inst->memData, 0,
1483 memcpy(load_inst->memData,
1484 store_it->
data() + shift_amt,
1488 "addr %#x\n", store_it._idx,
1503 if (load_inst->inHtmTransactionalState()) {
1504 assert (!
storeQueue[store_it._idx].completed());
1507 inHtmTransactionalState());
1509 load_inst->getHtmTransactionUid() ==
1511 getHtmTransactionUid());
1513 load_inst->getHtmTransactionUid());
1514 DPRINTF(HtmCpu,
"HTM LD (ST2LDF) "
1515 "pc=0x%lx - vaddr=0x%lx - "
1516 "paddr=0x%lx - htmUid=%u\n",
1517 load_inst->instAddr(),
1518 data_pkt->
req->hasVaddr() ?
1519 data_pkt->
req->getVaddr() : 0lu,
1521 load_inst->getHtmTransactionUid());
1549 if (store_it->completed()) {
1550 panic(
"Should not check one of these");
1568 load_inst->clearIssued();
1569 load_inst->effAddrValid(
false);
1575 "Store idx %i to load addr %#x\n",
1587 DPRINTF(
LSQUnit,
"Doing memory access for inst [sn:%lli] PC %s\n",
1588 load_inst->seqNum, load_inst->pcState());
1591 if (!load_inst->memData) {
1592 load_inst->memData =
new uint8_t[req->
mainRequest()->getSize()];
1601 *load_inst->memData = (uint64_t) 0x1ull;
1615 state->
inst = load_inst;
1632 DPRINTF(
LSQUnit,
"Doing write to store idx %i, addr %#x | storeHead:%i "
1635 storeQueue[store_idx].instruction()->seqNum);
1638 unsigned size = req->
_size;
1640 bool store_no_data =
1642 storeQueue[store_idx].isAllZeros() = store_no_data;
1647 !req->
request()->isCacheMaintenance() &&
void storePostSend()
Handles completing the send of a store to memory.
statistics::Scalar squashedLoads
Total number of squashed loads.
DynInstPtr inst
Instruction which initiated the access to memory.
Tick curTick()
The universal simulation clock.
void process()
Processes the writeback event.
ProbePointArg< std::pair< DynInstPtr, PacketPtr > > * ppDataAccessComplete
uint64_t lastRetiredHtmUid
Memory operation metadata.
constexpr decltype(nullptr) NoFault
bool switchedOut() const
Determine if the CPU is switched out.
InstSeqNum stallingStoreIsn
The store that causes the stall due to partial store to load forwarding.
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
virtual void complete()=0
void insertStore(const DynInstPtr &store_inst)
Inserts a store instruction.
bool storeInFlight
Whether or not a store is in flight.
bool cacheBlocked() const
Is D-cache blocked?
const char * description() const
Returns the description of this event.
bool isStalled()
Returns whether or not the LSQ unit is stalled.
bool checkLoads
Should loads be checked for dependency issues.
void cprintf(const char *format, const Args &...args)
void advance_tail()
Increases the tail by one.
statistics::Scalar memOrderViolation
Tota number of memory ordering violations.
bool recvTimingResp(PacketPtr pkt)
Handles writing back and completing the load or store that has returned from memory.
void setRequest(LSQRequest *r)
IEW * iewStage
Pointer to the IEW stage.
DynInstPtr memDepViolator
The oldest load that caused a memory ordering violation.
int stallingLoadIdx
The index of the above store.
unsigned numContexts()
Get the number of thread contexts available.
void replayMemInst(const DynInstPtr &inst)
Re-executes all rescheduled memory instructions.
LSQUnit(uint32_t lqEntries, uint32_t sqEntries)
Constructs an LSQ unit.
Fault read(LSQRequest *req, int load_idx)
Executes the load at the given index.
RequestPtr req
A pointer to the original request.
bool needWB
Whether or not the instruction will need to writeback.
unsigned int cacheLineSize() const
Get the cache line size of the system.
unsigned numFreeStoreEntries()
Returns the number of free SQ entries.
void init(CPU *cpu_ptr, IEW *iew_ptr, const O3CPUParams ¶ms, LSQ *lsq_ptr, unsigned id)
Initializes the LSQ unit with the specified number of entries.
@ CACHE_BLOCK_ZERO
This is a write that is targeted and zeroing an entire cache block.
statistics::Scalar ignoredResponses
Total number of responses from the memory system that are ignored due to the instruction already bein...
virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask)=0
Test if the request accesses a particular cache line.
const FlagsType nozero
Don't print if this is zero.
void checkMisprediction(const DynInstPtr &inst)
Check misprediction
const std::string to_string(sc_enc enc)
virtual void buildPackets()=0
void schedule(Event &ev, Tick when)
Schedule event for the cpu.
bool cachePortAvailable(bool is_load) const
Is any store port available to use?
void setHtmTransactional(uint64_t val)
Stipulates that this packet/request originates in the CPU executing in transactional mode,...
static constexpr auto MaxDataBytes
int storesToWB
The number of store instructions in the SQ waiting to writeback.
Addr cacheBlockMask
Address Mask for a cache block (e.g.
virtual void sendPacketToCache()=0
void setDcachePort(RequestPort *dcache_port)
Sets the pointer to the dcache port.
void schedule(Event &event, Tick when)
std::string csprintf(const char *format, const Args &...args)
virtual PacketPtr mainPacket()
T * get() const
Directly access the pointer itself without taking a reference.
bool full() const
Is the queue full? A queue is full if the head is the 0^{th} element and the tail is the (size-1)^{th...
statistics::Distribution loadToUse
Distribution of cycle latency between the first time a load is issued and its completion.
unsigned depCheckShift
The number of places to shift addresses in the LSQ before checking for dependency violations.
@ PartialAddrRangeCoverage
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
unsigned numFreeLoadEntries()
Returns the number of free LQ entries.
void wakeCPU()
Tells the CPU to wakeup if it has descheduled itself due to no activity.
void rescheduleMemInst(const DynInstPtr &inst)
Tells memory dependence unit that a memory instruction needs to be rescheduled.
gem5::Checker< DynInstPtr > * checker
Pointer to the checker, which can dynamically verify instruction results at run time.
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Cycles is a wrapper class for representing cycle counts, i.e.
uint64_t getLatestHtmUid() const
bool handleLockedWrite(XC *xc, const RequestPtr &req, Addr cacheBlockMask)
void completeStore(typename StoreQueue::iterator store_idx)
Completes the store at the specified index.
bool needsTSO
Flag for memory model.
statistics::Scalar forwLoads
Total number of loads forwaded from LSQ stores.
void dataStatic(T *p)
Set the data pointer to the following value that should not be freed.
statistics::Scalar blockedByCache
Number of times the LSQ is blocked due to the cache.
Writeback event, specifically for when stores forward data to loads.
virtual bool recvTimingResp(PacketPtr pkt)=0
Class that implements the actual LQ and SQ for each specific thread.
O3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time buff...
void packetSent()
Update the status to reflect that a packet was sent.
gem5::o3::LSQUnit::LSQUnitStats stats
void commitLoad()
Commits the head load.
Distribution & init(Counter min, Counter max, Counter bkt)
Set the parameters of this distribution.
ThreadContext is the external interface to all thread state for anything outside of the CPU.
statistics::Scalar rescheduledLoads
Number of loads that were rescheduled.
void discard()
The request is discarded (e.g.
bool trySendPacket(bool isLoad, PacketPtr data_pkt)
Attempts to send a packet to the cache.
std::shared_ptr< FaultBase > Fault
void print(std::ostream &o, int verbosity=0, const std::string &prefix="") const
bool isSplit
Whether or not this access is split in two.
void discardSenderState()
Mark senderState as discarded.
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Particularisation of the LSQSenderState to the LQ.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
int loads
The number of load instructions in the LQ.
bool isStoreBlocked
Whehter or not a store is blocked due to the memory system.
bool htmTransactionFailedInCache() const
Returns whether or not this packet/request has returned from the cache hierarchy in a failed transact...
ProbePointArg< PacketInfo > Packet
Packet probe point.
uint64_t Tick
Tick count type.
WritebackEvent(const DynInstPtr &_inst, PacketPtr pkt, LSQUnit *lsq_ptr)
Constructs a writeback event.
IEW handles both single threaded and SMT IEW (issue/execute/writeback).
CPU * cpu
Pointer to the CPU.
StoreQueue::iterator storeWBIt
The index of the first instruction that may be ready to be written back, and has not yet been written...
ThreadID lsqID
The LSQUnit thread id.
PacketPtr packet(int idx=0)
uint32_t _numOutstandingPackets
gem5::ThreadContext * tcBase(ThreadID tid)
Returns a pointer to a thread context.
Fault write(LSQRequest *req, uint8_t *data, int store_idx)
Executes the store at the given index.
uint64_t getHtmTransactionUid() const
If a packet/request originates in a CPU executing in transactional mode, i.e.
std::vector< ThreadState * > thread
Pointers to all of the threads in the CPU.
void commitLoads(InstSeqNum &youngest_inst)
Commits loads older than a specific sequence number.
void activityThisCycle()
Reports to the CPU that there is activity this cycle.
iterator begin()
Iterators.
void handleLockedSnoopHit(XC *xc)
void completeDataAccess(PacketPtr pkt)
Completes the data access that has been returned from the memory system.
void cachePortBusy(bool is_load)
Another store port is in use.
void wakeCPU()
Wakes the CPU, rescheduling the CPU if it's not already active.
void addStatGroup(const char *name, Group *block)
Add a stat block as a child of this block.
HtmCacheFailure getHtmTransactionFailedInCacheRC() const
If a packet/request has returned from the cache hierarchy in a failed transaction,...
void takeOverFrom()
Takes over from another CPU's thread.
RequestPtr request(int idx=0)
PacketPtr retryPkt
The packet that needs to be retried.
Fault checkViolations(typename LoadQueue::iterator &loadIt, const DynInstPtr &inst)
Check for ordering violations in the LSQ.
virtual BaseHTMCheckpointPtr & getHtmCheckpointPtr()=0
void senderState(LSQSenderState *st)
virtual ThreadContext * getContext(int tn)
Given a thread num get tho thread context for it.
int stores
The number of store instructions in the SQ.
void writeback(const DynInstPtr &inst, PacketPtr pkt)
Writes back the instruction, sending it to IEW.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void squash(const InstSeqNum &squashed_num)
Squashes all instructions younger than a specific sequence number.
SenderState * senderState
This packet's sender state.
statistics::Scalar squashedStores
Total number of squashed stores.
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
const DynInstPtr & instruction() const
Fault executeStore(const DynInstPtr &inst)
Executes a store instruction.
static const FlagsType STORE_NO_DATA
static constexpr int MaxThreads
void writebackBlockedStore()
Try to finish a previously blocked write back attempt.
void activityThisCycle()
Records that there was time buffer activity this cycle.
bool isLoad
Whether or not it is a load.
void pop_front(size_t num_elem=1)
Circularly increase the head pointer.
void instToCommit(const DynInstPtr &inst)
Sends an instruction to commit through the time buffer.
void insert(const DynInstPtr &inst)
Inserts an instruction.
RequestPort * dcachePort
Pointer to the dcache port.
Derived class to hold any sender state the LSQ needs.
void pop_back()
Circularly decrease the tail pointer.
bool empty() const
Is the queue empty?
bool stalled
Whether or not the LSQ is stalled.
std::string htmFailureToStr(HtmFailureFaultCause cause)
Convert enum into string to be used for debug purposes.
@ LLSC
The request is a Load locked/store conditional.
void blockMemInst(const DynInstPtr &inst)
Moves memory instruction onto the list of cache blocked instructions.
virtual RequestPtr mainRequest()
T * data
The stored pointer.
static constexpr size_t DataSize
LSQ * lsq
Pointer to the LSQ.
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
Fault executeLoad(const DynInstPtr &inst)
Executes a load instruction.
void recvRetry()
Handles doing the retry.
bool isAnyOutstandingRequest()
Test if there is any in-flight translation or mem access request.
void handleLockedRead(XC *xc, const RequestPtr &req)
@ NO_ACCESS
The request should not cause a memory access.
bool updateLSQNextCycle
Records if the LSQ needs to be updated on the next cycle, so that IEW knows if there will be activity...
void drainSanityCheck() const
Perform sanity checks after a drain.
void commitStores(InstSeqNum &youngest_inst)
Commits stores older than a specific sequence number.
void resetState()
Reset the LSQ state.
Particularisation of the LSQSenderState to the SQ.
void setHtmTransactionFailedInCache(const HtmCacheFailure ret_code)
Stipulates that this packet/request has returned from the cache hierarchy in a failed transaction.
void handleLockedSnoop(XC *xc, PacketPtr pkt, Addr cacheBlockMask)
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
Cycles ticksToCycles(Tick t) const
iterator getIterator(size_t idx)
Return an iterator to an index in the queue.
bool isHtmTransactional() const
Returns whether or not this packet/request originates in the CPU executing in transactional mode,...
DynInstPtr getMemDepViolator()
Returns the memory ordering violator.
InstSeqNum getStoreHeadSeqNum()
Returns the sequence number of the head store instruction.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
LoadQueue loadQueue
The load queue.
std::string name() const
Returns the name of the LSQ unit.
void dumpInsts() const
Debugging function to dump instructions in the LSQ.
void insertLoad(const DynInstPtr &load_inst)
Inserts a load instruction.
unsigned int cacheLineSize()
CircularQueue< SQEntry > storeQueue
The store queue.
InstSeqNum getLoadHeadSeqNum()
Returns the sequence number of the head load instruction.
void writebackStores()
Writes back stores.
void checkSnoop(PacketPtr pkt)
Check if an incoming invalidate hits in the lsq on a load that might have issued out of order wrt ano...
std::string name() const
Returns the name of the IEW stage.
bool isInvalidate() const
#define panic(...)
This implements a cprintf based panic() function.
LSQUnitStats(statistics::Group *parent)
Generated on Tue Sep 7 2021 14:53:44 for gem5 by doxygen 1.8.17