misc: Update attribute syntax, and reorganize compiler.hh.
This change replaces the __attribute__ syntax with the now standard [[]] syntax. It also reorganizes compiler.hh so that all special macros have some explanatory text saying what they do, and each attribute which has a standard version can use that if available and what version of c++ it's standard in is put in a comment. Also, the requirements as far as where you put [[]] style attributes are a little more strict than the old school __attribute__ style. The use of the attribute macros was updated to fit these new, more strict requirements. Change-Id: Iace44306a534111f1c38b9856dc9e88cd9b49d2a Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/35219 Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br> Maintainer: Gabe Black <gabeblack@google.com> Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
@@ -350,7 +350,7 @@ ComputeUnit::startWavefront(Wavefront *w, int waveId, LdsChunk *ldsChunk,
|
||||
// set the wavefront context to have a pointer to this section of the LDS
|
||||
w->ldsChunk = ldsChunk;
|
||||
|
||||
int32_t refCount M5_VAR_USED =
|
||||
M5_VAR_USED int32_t refCount =
|
||||
lds.increaseRefCounter(w->dispatchId, w->wgId);
|
||||
DPRINTF(GPUDisp, "CU%d: increase ref ctr wg[%d] to [%d]\n",
|
||||
cu_id, w->wgId, refCount);
|
||||
@@ -867,7 +867,7 @@ ComputeUnit::DataPort::recvTimingResp(PacketPtr pkt)
|
||||
// this is for writeComplete callback
|
||||
// we simply get decrement write-related wait counters
|
||||
assert(gpuDynInst);
|
||||
Wavefront *w M5_VAR_USED =
|
||||
M5_VAR_USED Wavefront *w =
|
||||
computeUnit->wfList[gpuDynInst->simdId][gpuDynInst->wfSlotId];
|
||||
assert(w);
|
||||
DPRINTF(GPUExec, "WriteCompleteResp: WF[%d][%d] WV%d %s decrementing "
|
||||
@@ -965,7 +965,7 @@ ComputeUnit::DataPort::recvReqRetry()
|
||||
|
||||
for (int i = 0; i < len; ++i) {
|
||||
PacketPtr pkt = retries.front().first;
|
||||
GPUDynInstPtr gpuDynInst M5_VAR_USED = retries.front().second;
|
||||
M5_VAR_USED GPUDynInstPtr gpuDynInst = retries.front().second;
|
||||
DPRINTF(GPUMem, "CU%d: WF[%d][%d]: retry mem inst addr %#x\n",
|
||||
computeUnit->cu_id, gpuDynInst->simdId, gpuDynInst->wfSlotId,
|
||||
pkt->req->getPaddr());
|
||||
@@ -999,7 +999,7 @@ ComputeUnit::SQCPort::recvReqRetry()
|
||||
|
||||
for (int i = 0; i < len; ++i) {
|
||||
PacketPtr pkt = retries.front().first;
|
||||
Wavefront *wavefront M5_VAR_USED = retries.front().second;
|
||||
M5_VAR_USED Wavefront *wavefront = retries.front().second;
|
||||
DPRINTF(GPUFetch, "CU%d: WF[%d][%d]: retrying FETCH addr %#x\n",
|
||||
computeUnit->cu_id, wavefront->simdId, wavefront->wfSlotId,
|
||||
pkt->req->getPaddr());
|
||||
@@ -1406,7 +1406,7 @@ ComputeUnit::DTLBPort::recvTimingResp(PacketPtr pkt)
|
||||
DTLBPort::SenderState *sender_state =
|
||||
safe_cast<DTLBPort::SenderState*>(translation_state->saved);
|
||||
|
||||
Wavefront *w M5_VAR_USED =
|
||||
M5_VAR_USED Wavefront *w =
|
||||
computeUnit->wfList[sender_state->_gpuDynInst->simdId]
|
||||
[sender_state->_gpuDynInst->wfSlotId];
|
||||
|
||||
@@ -1575,7 +1575,7 @@ ComputeUnit::DataPort::processMemReqEvent(PacketPtr pkt)
|
||||
{
|
||||
SenderState *sender_state = safe_cast<SenderState*>(pkt->senderState);
|
||||
GPUDynInstPtr gpuDynInst = sender_state->_gpuDynInst;
|
||||
ComputeUnit *compute_unit M5_VAR_USED = computeUnit;
|
||||
M5_VAR_USED ComputeUnit *compute_unit = computeUnit;
|
||||
|
||||
if (!(sendTimingReq(pkt))) {
|
||||
retries.push_back(std::make_pair(pkt, gpuDynInst));
|
||||
@@ -1604,7 +1604,7 @@ ComputeUnit::ScalarDataPort::MemReqEvent::process()
|
||||
{
|
||||
SenderState *sender_state = safe_cast<SenderState*>(pkt->senderState);
|
||||
GPUDynInstPtr gpuDynInst = sender_state->_gpuDynInst;
|
||||
ComputeUnit *compute_unit M5_VAR_USED = scalarDataPort.computeUnit;
|
||||
M5_VAR_USED ComputeUnit *compute_unit = scalarDataPort.computeUnit;
|
||||
|
||||
if (!(scalarDataPort.sendTimingReq(pkt))) {
|
||||
scalarDataPort.retries.push_back(pkt);
|
||||
@@ -1644,7 +1644,7 @@ ComputeUnit::DTLBPort::recvReqRetry()
|
||||
|
||||
for (int i = 0; i < len; ++i) {
|
||||
PacketPtr pkt = retries.front();
|
||||
Addr vaddr M5_VAR_USED = pkt->req->getVaddr();
|
||||
M5_VAR_USED Addr vaddr = pkt->req->getVaddr();
|
||||
DPRINTF(GPUTLB, "CU%d: retrying D-translaton for address%#x", vaddr);
|
||||
|
||||
if (!sendTimingReq(pkt)) {
|
||||
@@ -1683,7 +1683,7 @@ ComputeUnit::ScalarDTLBPort::recvTimingResp(PacketPtr pkt)
|
||||
GPUDynInstPtr gpuDynInst = sender_state->_gpuDynInst;
|
||||
delete pkt->senderState;
|
||||
|
||||
Wavefront *w M5_VAR_USED = gpuDynInst->wavefront();
|
||||
M5_VAR_USED Wavefront *w = gpuDynInst->wavefront();
|
||||
|
||||
DPRINTF(GPUTLB, "CU%d: WF[%d][%d][wv=%d]: scalar DTLB port received "
|
||||
"translation: PA %#x -> %#x\n", computeUnit->cu_id, w->simdId,
|
||||
@@ -1722,7 +1722,7 @@ ComputeUnit::ScalarDTLBPort::recvTimingResp(PacketPtr pkt)
|
||||
bool
|
||||
ComputeUnit::ITLBPort::recvTimingResp(PacketPtr pkt)
|
||||
{
|
||||
Addr line M5_VAR_USED = pkt->req->getPaddr();
|
||||
M5_VAR_USED Addr line = pkt->req->getPaddr();
|
||||
DPRINTF(GPUTLB, "CU%d: ITLBPort received %#x->%#x\n",
|
||||
computeUnit->cu_id, pkt->req->getVaddr(), line);
|
||||
|
||||
@@ -1788,7 +1788,7 @@ ComputeUnit::ITLBPort::recvReqRetry()
|
||||
|
||||
for (int i = 0; i < len; ++i) {
|
||||
PacketPtr pkt = retries.front();
|
||||
Addr vaddr M5_VAR_USED = pkt->req->getVaddr();
|
||||
M5_VAR_USED Addr vaddr = pkt->req->getVaddr();
|
||||
DPRINTF(GPUTLB, "CU%d: retrying I-translaton for address%#x", vaddr);
|
||||
|
||||
if (!sendTimingReq(pkt)) {
|
||||
@@ -2584,7 +2584,7 @@ ComputeUnit::LDSPort::sendTimingReq(PacketPtr pkt)
|
||||
dynamic_cast<ComputeUnit::LDSPort::SenderState*>(pkt->senderState);
|
||||
fatal_if(!sender_state, "packet without a valid sender state");
|
||||
|
||||
GPUDynInstPtr gpuDynInst M5_VAR_USED = sender_state->getMemInst();
|
||||
M5_VAR_USED GPUDynInstPtr gpuDynInst = sender_state->getMemInst();
|
||||
|
||||
if (isStalled()) {
|
||||
fatal_if(retries.empty(), "must have retries waiting to be stalled");
|
||||
|
||||
@@ -749,7 +749,7 @@ ScheduleStage::reserveResources()
|
||||
// that we've reserved a global and local memory unit. Thus,
|
||||
// we need to mark the latter execution unit as not available.
|
||||
if (execUnitIds.size() > 1) {
|
||||
int lm_exec_unit M5_VAR_USED = wf->localMem;
|
||||
M5_VAR_USED int lm_exec_unit = wf->localMem;
|
||||
assert(toExecute.dispatchStatus(lm_exec_unit)
|
||||
== SKIP);
|
||||
}
|
||||
@@ -758,7 +758,7 @@ ScheduleStage::reserveResources()
|
||||
// Verify the GM pipe for this wave is ready to execute
|
||||
// and the wave in the GM pipe is the same as the wave
|
||||
// in the LM pipe
|
||||
int gm_exec_unit M5_VAR_USED = wf->globalMem;
|
||||
M5_VAR_USED int gm_exec_unit = wf->globalMem;
|
||||
assert(wf->wfDynId == toExecute
|
||||
.readyInst(gm_exec_unit)->wfDynId);
|
||||
assert(toExecute.dispatchStatus(gm_exec_unit)
|
||||
|
||||
Reference in New Issue
Block a user