Searched refs:nextAddr (Results 1 - 8 of 8) sorted by relevance

/gem5/src/base/
H A Dchunk_generator.hh63 Addr nextAddr; member in class:ChunkGenerator
92 nextAddr = startAddr + totalSize;
96 // nextAddr should be *next* chunk start
97 nextAddr = roundUp(startAddr, chunkSize);
98 if (curAddr == nextAddr) {
100 nextAddr += chunkSize;
105 unsigned left_in_chunk = nextAddr - curAddr;
144 curAddr = nextAddr;
147 nextAddr += curSize;
/gem5/src/cpu/testers/traffic_gen/
H A Dlinear_gen.cc55 nextAddr = startAddr;
70 isRead ? 'r' : 'w', nextAddr, blocksize);
75 PacketPtr pkt = getPacket(nextAddr, blocksize,
79 nextAddr += blocksize;
83 if (nextAddr > endAddr) {
86 nextAddr = startAddr;
H A Dlinear_gen.hh95 nextAddr(0),
107 Addr nextAddr; member in class:LinearGen
/gem5/src/dev/
H A Ddma_device.cc297 nextAddr(0), endAddr(0)
328 SERIALIZE_SCALAR(nextAddr);
336 UNSERIALIZE_SCALAR(nextAddr);
363 nextAddr = start;
373 nextAddr = endAddr;
406 const size_t block_remaining = endAddr - nextAddr;
413 nextAddr, xfer_size, fifo_space, block_remaining);
415 port.sys->physProxy.readBlob(nextAddr, tmp_buffer.data(), xfer_size);
417 nextAddr += xfer_size;
429 const size_t req_size(std::min(maxReqSize, endAddr - nextAddr));
[all...]
H A Ddma_device.hh425 return nextAddr == endAddr;
523 Addr nextAddr;
/gem5/util/minorview/
H A Dmodel.py446 if 'nextAddr' in pairs:
447 self.nextAddr = int(pairs['nextAddr'], 0)
448 del pairs['nextAddr']
450 self.nextAddr = None
455 if self.nextAddr is not None:
456 addrStr = '0x%x->0x%x' % (self.addr, self.nextAddr)
/gem5/src/mem/cache/
H A Dbase.hh1316 nextAddr = 0;
1369 Addr nextAddr; member in class:WriteAllocator
H A Dbase.cc2634 if (nextAddr == write_addr) {
2660 nextAddr = write_addr + write_size;

Completed in 26 milliseconds