memtest.cc:
No need to initialize memory contents; should come up as 0. src/cpu/memtest/memtest.cc: No need to initialize memory contents; should come up as 0. --HG-- extra : convert_revision : 1713676956f3d33b4686fee2650bd17027bcc495
This commit is contained in:
parent
3ceb0a46ae
commit
f4babe1082
1 changed files with 3 additions and 9 deletions
|
@ -190,14 +190,8 @@ MemTest::init()
|
|||
blockAddrMask = blockSize - 1;
|
||||
traceBlockAddr = blockAddr(traceBlockAddr);
|
||||
|
||||
// set up intial memory contents here
|
||||
|
||||
cachePort.memsetBlob(baseAddr1, 1, size);
|
||||
funcPort.memsetBlob(baseAddr1, 1, size);
|
||||
cachePort.memsetBlob(baseAddr2, 2, size);
|
||||
funcPort.memsetBlob(baseAddr2, 2, size);
|
||||
cachePort.memsetBlob(uncacheAddr, 3, size);
|
||||
funcPort.memsetBlob(uncacheAddr, 3, size);
|
||||
// initial memory contents for both physical memory and functional
|
||||
// memory should be 0; no need to initialize them.
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -267,7 +261,7 @@ MemTest::completeRequest(PacketPtr pkt)
|
|||
break;
|
||||
*/
|
||||
default:
|
||||
panic("invalid command");
|
||||
panic("invalid command %s (%d)", pkt->cmdString(), pkt->cmd.toInt());
|
||||
}
|
||||
|
||||
if (blockAddr(req->getPaddr()) == traceBlockAddr) {
|
||||
|
|
Loading…
Reference in a new issue