Searched refs:getBlockSizeBytes (Results 1 - 14 of 14) sorted by relevance

/gem5/src/mem/ruby/common/
H A DDataBlock.cc36 m_data = new uint8_t[RubySystem::getBlockSizeBytes()];
37 memcpy(m_data, cp.m_data, RubySystem::getBlockSizeBytes());
44 m_data = new uint8_t[RubySystem::getBlockSizeBytes()];
52 memset(m_data, 0, RubySystem::getBlockSizeBytes());
58 return !memcmp(m_data, obj.m_data, RubySystem::getBlockSizeBytes());
64 for (int i = 0; i < RubySystem::getBlockSizeBytes(); i++) {
74 for (int i = 0; i < RubySystem::getBlockSizeBytes(); i++) {
85 int size = RubySystem::getBlockSizeBytes();
97 assert(offset + len <= RubySystem::getBlockSizeBytes());
110 assert(offset + len <= RubySystem::getBlockSizeBytes());
[all...]
H A DAddress.cc122 + RubySystem::getBlockSizeBytes() * stride;
H A DWriteMask.hh44 : mSize(RubySystem::getBlockSizeBytes()), mMask(mSize, false),
/gem5/src/mem/ruby/system/
H A DCacheRecorder.cc49 m_block_size_bytes(RubySystem::getBlockSizeBytes())
63 if (m_block_size_bytes < RubySystem::getBlockSizeBytes()) {
68 m_block_size_bytes, RubySystem::getBlockSizeBytes());
114 rec_bytes_read += RubySystem::getBlockSizeBytes()) {
122 RubySystem::getBlockSizeBytes(), 0, Request::funcMasterId);
127 RubySystem::getBlockSizeBytes(),
133 RubySystem::getBlockSizeBytes(), 0, Request::funcMasterId);
H A DDMASequencer.cc102 msg->getLen() = (offset + len) <= RubySystem::getBlockSizeBytes() ?
103 len : RubySystem::getBlockSizeBytes() - offset;
153 active_request.bytes_completed < RubySystem::getBlockSizeBytes() ?
155 RubySystem::getBlockSizeBytes());
H A DRubySystem.hh59 static uint32_t getBlockSizeBytes() { return m_block_size_bytes; } function in class:RubySystem
H A DRubySystem.cc141 makeCacheRecorder(NULL, 0, getBlockSizeBytes());
241 uint64_t block_size_bytes = getBlockSizeBytes();
312 uint64_t block_size_bytes = getBlockSizeBytes();
H A DRubyPort.cc272 RubySystem::getBlockSizeBytes());
330 RubySystem::getBlockSizeBytes());
378 makeLineAddress(pkt->getAddr()) + RubySystem::getBlockSizeBytes());
596 address, RubySystem::getBlockSizeBytes(), 0,
H A DGPUCoalescer.cc903 uint32_t blockSize = RubySystem::getBlockSizeBytes();
/gem5/src/mem/ruby/slicc_interface/
H A DAbstractController.cc244 addr, RubySystem::getBlockSizeBytes(), 0, m_masterId);
247 uint8_t *newData = new uint8_t[RubySystem::getBlockSizeBytes()];
268 addr, RubySystem::getBlockSizeBytes(), 0, m_masterId);
272 pkt->setData(block.getData(0, RubySystem::getBlockSizeBytes()));
347 RubySystem::getBlockSizeBytes());
/gem5/src/mem/ruby/structures/
H A DDirectoryMemory.cc70 m_num_entries = m_size_bytes / RubySystem::getBlockSizeBytes();
H A DPrefetcher.cc408 RubySystem::getBlockSizeBytes();
H A DCacheMemory.cc79 m_block_size = RubySystem::getBlockSizeBytes();
/gem5/src/mem/ruby/network/
H A DNetwork.cc128 m_data_msg_size = RubySystem::getBlockSizeBytes() + m_control_msg_size;

Completed in 26 milliseconds