memtest.cc:
Add probe calls to test update probe path. cpu/memtest/memtest.cc: Add probe calls to test update probe path. --HG-- extra : convert_revision : b0fb97b54b6ffce9c575fda680b778da63767b7c
This commit is contained in:
parent
e99c0f901c
commit
456b9af0c8
1 changed files with 21 additions and 7 deletions
|
@ -160,6 +160,8 @@ MemTest::completeRequest(MemReqPtr req, uint8_t *data)
|
|||
<< req->size << " bytes at address 0x"
|
||||
<< hex << req->paddr << ", value = 0x";
|
||||
printData(cerr, req->data, req->size);
|
||||
cerr << " @ cycle " << dec << curTick;
|
||||
|
||||
cerr << endl;
|
||||
}
|
||||
|
||||
|
@ -211,6 +213,7 @@ MemTest::tick()
|
|||
uint64_t data = random();
|
||||
unsigned access_size = random() % 4;
|
||||
unsigned cacheable = rand() % 100;
|
||||
unsigned probe = rand() % 2;
|
||||
|
||||
MemReqPtr req = new MemReq();
|
||||
|
||||
|
@ -233,30 +236,41 @@ MemTest::tick()
|
|||
uint8_t *result = new uint8_t[8];
|
||||
checkMem->access(Read, req->paddr, result, req->size);
|
||||
if (blockAddr(req->paddr) == traceBlockAddr) {
|
||||
cerr << name() << ": initiating read of "
|
||||
cerr << name() << ": initiating read "
|
||||
<< ((probe)?"probe of ":"access of ")
|
||||
<< req->size << " bytes from addr 0x"
|
||||
<< hex << req->paddr << " at cycle "
|
||||
<< dec << curTick << endl;
|
||||
}
|
||||
|
||||
if (probe) {
|
||||
cacheInterface->probeAndUpdate(req);
|
||||
completeRequest(req, result);
|
||||
} else {
|
||||
req->completionEvent = new MemCompleteEvent(req, result, this);
|
||||
cacheInterface->access(req);
|
||||
}
|
||||
} else {
|
||||
// write
|
||||
req->cmd = Write;
|
||||
memcpy(req->data, &data, req->size);
|
||||
checkMem->access(Write, req->paddr, req->data, req->size);
|
||||
if (blockAddr(req->paddr) == traceBlockAddr) {
|
||||
cerr << name() << ": initiating write of "
|
||||
cerr << name() << ": initiating write "
|
||||
<< ((probe)?"probe of ":"access of ")
|
||||
<< req->size << " bytes (value = 0x";
|
||||
printData(cerr, req->data, req->size);
|
||||
cerr << ") to addr 0x"
|
||||
<< hex << req->paddr << " at cycle "
|
||||
<< dec << curTick << endl;
|
||||
}
|
||||
if (probe) {
|
||||
cacheInterface->probeAndUpdate(req);
|
||||
completeRequest(req, NULL);
|
||||
} else {
|
||||
req->completionEvent = new MemCompleteEvent(req, NULL, this);
|
||||
cacheInterface->access(req);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue