Go to the documentation of this file.
51 cuPort(
name() +
".port", this),
52 maximumSize(params.size),
54 bankConflictPenalty(params.bankConflictPenalty),
58 "Number of LDS banks should be positive number");
60 "Number of LDS banks should be a power of 2");
62 "cannot allocate an LDS with a size less than 1");
64 "the LDS should be an even number");
74 fatal_if(!x_parent,
"x_parent should not be nullptr");
76 "should not be setting the parent twice");
96 "did not get the right sort of sender state");
106 unsigned *numBankAccesses)
108 int bank_conflicts = 0;
117 for (
int i = 0;
i < groups;
i++) {
120 addr_array.resize(numBanks, 0);
122 bank.resize(
banks, 0);
126 for (
int j = 0;
j < numBanks;
j++) {
127 if (gpuDynInst->exec_mask[(
i*numBanks)+
j]) {
128 addr_array[
j] = gpuDynInst->addr[(
i*numBanks)+
j];
130 addr_array[
j] = std::numeric_limits<Addr>::max();
134 if (gpuDynInst->isLoad() || gpuDynInst->isStore()) {
136 for (
int j = 0;
j < numBanks; ++
j) {
137 for (
int j0 = 0; j0 <
j; j0++) {
138 if (addr_array[
j] != std::numeric_limits<Addr>::max()
139 && addr_array[
j] == addr_array[j0]) {
140 addr_array[
j] = std::numeric_limits<Addr>::max();
146 for (
int j = 0;
j < numBanks; ++
j) {
147 if (addr_array[
j] != std::numeric_limits<Addr>::max()) {
148 int bankId = addr_array[
j] %
banks;
150 max_bank = std::max(max_bank, bank[bankId]);
155 (*numBankAccesses)++;
158 bank_conflicts += max_bank;
161 "Max bank conflicts should match num of work items per instr");
162 return bank_conflicts;
180 return ss->getMemInst();
189 unsigned bankAccesses = 0;
204 Tick processingTime =
238 fatal(
"not implemented");
248 assert(ownerLds->isRetryResp());
249 ownerLds->setRetryResp(
false);
259 fatal(
"not implemented");
280 gpuDynInst->initiateAcc(gpuDynInst);
290 panic(
"have not handled timing responses being NACK'd when sent"
#define fatal(...)
This implements a cprintf based fatal() function.
virtual void process()
wake up at this time and perform specified actions
Tick when() const
Get the time that the event is scheduled.
virtual void recvFunctional(PacketPtr pkt)
receive a packet in functional mode
SenderState is information carried along with the packet, esp.
gem5::ComputeUnit::ComputeUnitStats stats
void setParent(ComputeUnit *x_parent)
set the parent and name based on the parent
LdsState(const Params ¶ms)
the default constructor that works with SWIG
statistics::Distribution ldsBankConflictDist
int storeBusLength() const
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
SenderState * predecessor
Cycles is a wrapper class for representing cycle counts, i.e.
int loadBusLength() const
GPUDynInstPtr getDynInstr(PacketPtr packet)
virtual std::string name() const
Tick cyclesToTicks(Cycles c) const
const Params & params() const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
virtual bool recvTimingReq(PacketPtr pkt)
receive the packet from the CU
uint64_t Tick
Tick count type.
Tick earliestReturnTime() const
bool processPacket(PacketPtr packet)
process an incoming packet, add it to the return queue
statistics::Scalar ldsBankAccesses
bool sendTimingResp(PacketPtr pkt)
Attempt to send a timing response to the request port by calling its corresponding receive function.
virtual void recvRetry()
receive a retry
A virtual base opaque structure used to hold state associated with the packet (e.g....
SenderState * senderState
This packet's sender state.
const std::string & name()
std::shared_ptr< GPUDynInst > GPUDynInstPtr
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
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...
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
void makeTimingResponse()
unsigned countBankConflicts(PacketPtr packet, unsigned *bankAccesses)
derive the gpu mem packet from the packet and then count the bank conflicts
GPUDynInstPtr getMemInst() const
std::queue< std::pair< Tick, PacketPtr > > returnQueue
bool returnQueuePush(std::pair< Tick, PacketPtr > thePair)
add this to the queue of packets to be returned
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
bool process()
look for packets to return at this time
virtual void recvRespRetry()
receive a retry for a response
bool scheduled() const
Determine if the current event is scheduled.
#define panic(...)
This implements a cprintf based panic() function.
Generated on Wed Jul 13 2022 10:39:22 for gem5 by doxygen 1.8.17