48 #ifndef __MEM_REQUEST_HH__ 49 #define __MEM_REQUEST_HH__ 91 typedef ::Flags<FlagsType>
Flags;
101 ARCH_BITS = 0x000000FF,
103 INST_FETCH = 0x00000100,
105 PHYSICAL = 0x00000200,
113 UNCACHEABLE = 0x00000400,
123 STRICT_ORDER = 0x00000800,
125 PRIVILEGED = 0x00008000,
131 CACHE_BLOCK_ZERO = 0x00010000,
134 NO_ACCESS = 0x00080000,
142 LOCKED_RMW = 0x00100000,
146 MEM_SWAP = 0x00400000,
147 MEM_SWAP_COND = 0x00800000,
150 PREFETCH = 0x01000000,
152 PF_EXCLUSIVE = 0x02000000,
154 EVICT_NEXT = 0x04000000,
156 ACQUIRE = 0x00020000,
158 RELEASE = 0x00040000,
161 ATOMIC_RETURN_OP = 0x40000000,
163 ATOMIC_NO_RETURN_OP = 0x80000000,
174 PT_WALK = 0x20000000,
177 INVALIDATE = 0x0000000100000000,
182 DST_POU = 0x0000001000000000,
185 DST_POC = 0x0000002000000000,
188 DST_BITS = 0x0000003000000000,
194 STICKY_FLAGS = INST_FETCH
196 static const FlagsType STORE_NO_DATA = CACHE_BLOCK_ZERO |
215 invldMasterId = std::numeric_limits<MasterID>::max()
222 enum : MemSpaceConfigFlagsType {
224 SCOPE_VALID = 0x00000001,
226 WAVEFRONT_SCOPE = 0x00000002,
228 WORKGROUP_SCOPE = 0x00000004,
230 DEVICE_SCOPE = 0x00000008,
232 SYSTEM_SCOPE = 0x00000010,
235 GLOBAL_SEGMENT = 0x00000020,
237 GROUP_SEGMENT = 0x00000040,
239 PRIVATE_SEGMENT = 0x00000080,
241 KERNARG_SEGMENT = 0x00000100,
243 READONLY_SEGMENT = 0x00000200,
245 SPILL_SEGMENT = 0x00000400,
247 ARG_SEGMENT = 0x00000800,
251 std::function<Cycles(ThreadContext *tc, Packet *pkt)>;
257 enum : PrivateFlagsType {
259 VALID_SIZE = 0x00000001,
261 VALID_PADDR = 0x00000002,
263 VALID_VADDR = 0x00000004,
265 VALID_INST_SEQ_NUM = 0x00000008,
267 VALID_PC = 0x00000010,
269 VALID_CONTEXT_ID = 0x00000020,
271 VALID_EXTRA_DATA = 0x00000080,
273 VALID_STREAM_ID = 0x00000100,
274 VALID_SUBSTREAM_ID = 0x00000200,
279 STICKY_PRIVATE_FLAGS = VALID_CONTEXT_ID
331 uint32_t _streamId = 0;
339 uint32_t _substreamId = 0;
347 uint64_t _extraData = 0;
378 _paddr(paddr), _size(size), _masterId(mid), _time(
curTick())
381 privateFlags.
set(VALID_PADDR|VALID_SIZE);
388 setVirt(vaddr, size, flags, mid, pc, std::move(atomic_op));
393 : _paddr(other._paddr), _size(other._size),
394 _byteEnable(other._byteEnable),
395 _masterId(other._masterId),
396 _flags(other._flags),
397 _memSpaceConfigFlags(other._memSpaceConfigFlags),
398 privateFlags(other.privateFlags),
400 _taskId(other._taskId), _vaddr(other._vaddr),
401 _extraData(other._extraData), _contextId(other._contextId),
402 _pc(other._pc), _reqInstSeqNum(other._reqInstSeqNum),
403 _localAccessor(other._localAccessor),
404 translateDelta(other.translateDelta),
405 accessDelta(other.accessDelta), depth(other.depth)
419 _contextId = context_id;
420 privateFlags.
set(VALID_CONTEXT_ID);
427 privateFlags.
set(VALID_STREAM_ID);
433 assert(privateFlags.
isSet(VALID_STREAM_ID));
435 privateFlags.
set(VALID_SUBSTREAM_ID);
452 _flags.
clear(~STICKY_FLAGS);
454 privateFlags.
clear(~STICKY_PRIVATE_FLAGS);
455 privateFlags.
set(VALID_VADDR|VALID_SIZE|VALID_PC);
459 atomicOpFunctor = std::move(amo_op);
460 _localAccessor =
nullptr;
471 privateFlags.
set(VALID_PADDR);
483 assert(privateFlags.
isSet(VALID_VADDR));
484 assert(privateFlags.
noneSet(VALID_PADDR));
485 assert(split_addr > _vaddr && split_addr < _vaddr + _size);
486 req1 = std::make_shared<Request>(*this);
487 req2 = std::make_shared<Request>(*this);
488 req1->_size = split_addr - _vaddr;
489 req2->_vaddr = split_addr;
490 req2->_size = _size - req1->_size;
491 if (!_byteEnable.empty()) {
494 _byteEnable.begin() + req1->_size);
496 _byteEnable.begin() + req1->_size,
507 return privateFlags.
isSet(VALID_PADDR);
513 assert(privateFlags.
isSet(VALID_PADDR));
532 mutable int depth = 0;
540 return privateFlags.
isSet(VALID_SIZE);
546 assert(privateFlags.
isSet(VALID_SIZE));
559 assert(be.empty() || be.size() == _size);
574 false) != _byteEnable.end();
581 assert(privateFlags.
isSet(VALID_PADDR|VALID_VADDR));
593 return _localAccessor(tc, pkt);
602 return (
bool)atomicOpFunctor;
608 assert(atomicOpFunctor);
609 return atomicOpFunctor.get();
616 assert(privateFlags.
isSet(VALID_PADDR|VALID_VADDR));
627 assert(privateFlags.
isSet(VALID_PADDR|VALID_VADDR));
634 assert(privateFlags.
isSet(VALID_PADDR | VALID_VADDR));
635 _memSpaceConfigFlags.
set(extraFlags);
642 return privateFlags.
isSet(VALID_VADDR);
648 assert(privateFlags.
isSet(VALID_VADDR));
674 assert(privateFlags.
isSet(VALID_PADDR|VALID_VADDR));
675 return _flags & ARCH_BITS;
682 return privateFlags.
isSet(VALID_EXTRA_DATA);
689 assert(privateFlags.
isSet(VALID_EXTRA_DATA));
697 _extraData = extraData;
698 privateFlags.
set(VALID_EXTRA_DATA);
704 return privateFlags.
isSet(VALID_CONTEXT_ID);
711 assert(privateFlags.
isSet(VALID_CONTEXT_ID));
718 assert(privateFlags.
isSet(VALID_STREAM_ID));
725 return privateFlags.
isSet(VALID_SUBSTREAM_ID);
731 assert(privateFlags.
isSet(VALID_SUBSTREAM_ID));
738 privateFlags.
set(VALID_PC);
745 return privateFlags.
isSet(VALID_PC);
752 assert(privateFlags.
isSet(VALID_PC));
783 return privateFlags.
isSet(VALID_INST_SEQ_NUM);
789 assert(privateFlags.
isSet(VALID_INST_SEQ_NUM));
790 return _reqInstSeqNum;
796 privateFlags.
set(VALID_INST_SEQ_NUM);
797 _reqInstSeqNum = seq_num;
806 _flags.
isSet(PF_EXCLUSIVE)); }
811 bool isSwap()
const {
return _flags.
isSet(MEM_SWAP|MEM_SWAP_COND); }
824 return _flags.
isSet(ATOMIC_RETURN_OP) ||
825 _flags.
isSet(ATOMIC_NO_RETURN_OP);
837 Flags
getDest()
const {
return _flags & DST_BITS; }
851 return _memSpaceConfigFlags.
isSet(WAVEFRONT_SCOPE);
858 return _memSpaceConfigFlags.
isSet(WORKGROUP_SCOPE);
865 return _memSpaceConfigFlags.
isSet(DEVICE_SCOPE);
872 return _memSpaceConfigFlags.
isSet(SYSTEM_SCOPE);
878 return _memSpaceConfigFlags.
isSet(GLOBAL_SEGMENT) ||
879 (!isGroupSegment() && !isPrivateSegment() &&
880 !isKernargSegment() && !isReadonlySegment() &&
881 !isSpillSegment() && !isArgSegment());
887 return _memSpaceConfigFlags.
isSet(GROUP_SEGMENT);
893 return _memSpaceConfigFlags.
isSet(PRIVATE_SEGMENT);
899 return _memSpaceConfigFlags.
isSet(KERNARG_SEGMENT);
905 return _memSpaceConfigFlags.
isSet(READONLY_SEGMENT);
911 return _memSpaceConfigFlags.
isSet(SPILL_SEGMENT);
917 return _memSpaceConfigFlags.
isSet(ARG_SEGMENT);
938 #endif // __MEM_REQUEST_HH__
bool isPrefetchEx() const
std::vector< bool > _byteEnable
Byte-enable mask for writes.
bool isGroupSegment() const
bool isDeviceScope() const
Tick time() const
Accessor for time.
::Flags< PrivateFlagsType > PrivateFlags
void setStreamId(uint32_t sid)
Cycles is a wrapper class for representing cycle counts, i.e.
void setMemSpaceConfigFlags(MemSpaceConfigFlags extraFlags)
void setSubStreamId(uint32_t ssid)
PrivateFlags privateFlags
Private flags for field validity checking.
bool isUncacheable() const
Accessor functions for flags.
uint64_t getExtraData() const
Accessor function for store conditional return value.
Flags _flags
Flag structure for the request.
bool isKernargSegment() const
void setExtraData(uint64_t extraData)
Accessor function for store conditional return value.
::Flags< FlagsType > Flags
bool hasAtomicOpFunctor()
Accessor for atomic-op functor.
std::shared_ptr< Request > RequestPtr
bool hasPaddr() const
Accessor for paddr.
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
void setContext(ContextID context_id)
Set up Context numbers.
MasterID masterId() const
Accesssor for the requestor id.
uint16_t PrivateFlagsType
bool isScoped() const
Accessor functions for the memory space configuration flags and used by GPU ISAs such as the Heteroge...
ThreadContext is the external interface to all thread state for anything outside of the CPU...
void setAccessLatency()
Set/Get the time taken to complete this request's access, not including the time to successfully tran...
bool isCacheClean() const
Accessor functions to determine whether this request is part of a cache maintenance operation...
bool isSystemScope() const
bool hasVaddr() const
Accessor function for vaddr.
::Flags< MemSpaceConfigFlagsType > MemSpaceConfigFlags
Tick getAccessLatency() const
bool isGlobalSegment() const
Tick curTick()
The current simulated tick.
AtomicOpFunctor * getAtomicOpFunctor()
Request(Addr paddr, unsigned size, Flags flags, MasterID mid)
Constructor for physical (e.g.
ContextID contextId() const
Accessor function for context ID.
void incAccessDepth() const
Increment/Get the depth at which this request is responded to.
Request()
Minimal constructor.
uint64_t Tick
Tick count type.
LocalAccessor _localAccessor
Request(const Request &other)
void setLocalAccessor(LocalAccessor acc)
Set the function which will enact that access.
bool isCacheInvalidate() const
bool isMasked() const
Returns true if the memory request is masked, which means there is at least one byteEnable element wh...
bool isAtomicNoReturn() const
int getAccessDepth() const
void splitOnVaddr(Addr split_addr, RequestPtr &req1, RequestPtr &req2)
Generate two requests as if this request had been split into two pieces.
bool isWorkgroupScope() const
bool isSpillSegment() const
uint32_t streamId() const
std::function< Cycles(ThreadContext *tc, Packet *pkt)> LocalAccessor
void setReqInstSeqNum(const InstSeqNum seq_num)
const std::vector< bool > & getByteEnable() const
bool extraDataValid() const
Accessor function to check if sc result is valid.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
bool isStrictlyOrdered() const
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
bool hasContextId() const
Special TaskIds that are used for per-context-switch stats dumps and Cache Occupancy.
void setByteEnable(const std::vector< bool > &be)
Flags getFlags()
Accessor for flags.
bool isReadonlySegment() const
AtomicOpFunctorPtr atomicOpFunctor
A pointer to an atomic operation.
uint32_t substreamId() const
Request(Addr vaddr, unsigned size, Flags flags, MasterID mid, Addr pc, ContextID cid, AtomicOpFunctorPtr atomic_op=nullptr)
Cycles localAccessor(ThreadContext *tc, Packet *pkt)
Perform the installed local access.
const ContextID InvalidContextID
bool isWavefrontScope() const
bool isCacheMaintenance() const
bool isArgSegment() const
ArchFlagsType getArchFlags() const
Accessor function for architecture-specific flags.
bool hasInstSeqNum() const
Accessor for the sequence number of instruction that creates the request.
Addr getPC() const
Accessor function for pc.
bool isPrivateSegment() const
bool isAtomicReturn() const
InstSeqNum getReqInstSeqNum() const
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
void setPaddr(Addr paddr)
Set just the physical address.
void setFlags(Flags flags)
Note that unlike other accessors, this function sets specific flags (ORs them in); it does not assign...
Tick getTranslateLatency() const
MemSpaceConfigFlags _memSpaceConfigFlags
Memory space configuraiton flag structure for the request.
bool hasSubstreamId() const
int ContextID
Globally unique thread context ID.
bool hasSize() const
Accessor for size.
uint32_t MemSpaceConfigFlagsType
void setTranslateLatency()
Set/Get the time taken for this request to be successfully translated.
bool isToPOU() const
Accessor functions for the destination of a memory request.
bool isLocalAccess()
Is this request for a local memory mapped resource/register?
void setVirt(Addr vaddr, unsigned size, Flags flags, MasterID mid, Addr pc, AtomicOpFunctorPtr amo_op=nullptr)
Set up a virtual (e.g., CPU) request in a previously allocated Request object.