gem5  v20.0.0.3
request.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013,2017-2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2002-2005 The Regents of The University of Michigan
15  * Copyright (c) 2010,2015 Advanced Micro Devices, Inc.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
48 #ifndef __MEM_REQUEST_HH__
49 #define __MEM_REQUEST_HH__
50 
51 #include <cassert>
52 #include <climits>
53 
54 #include "base/amo.hh"
55 #include "base/flags.hh"
56 #include "base/logging.hh"
57 #include "base/types.hh"
58 #include "cpu/inst_seq.hh"
59 #include "sim/core.hh"
60 
70  enum TaskId {
71  MaxNormalTaskId = 1021, /* Maximum number of normal tasks */
72  Prefetcher = 1022, /* For cache lines brought in by prefetcher */
73  DMA = 1023, /* Mostly Table Walker */
74  Unknown = 1024,
76  };
77 }
78 
79 class Packet;
80 class Request;
82 
83 typedef std::shared_ptr<Request> RequestPtr;
84 typedef uint16_t MasterID;
85 
86 class Request
87 {
88  public:
89  typedef uint64_t FlagsType;
90  typedef uint8_t ArchFlagsType;
91  typedef ::Flags<FlagsType> Flags;
92 
93  enum : FlagsType {
101  ARCH_BITS = 0x000000FF,
103  INST_FETCH = 0x00000100,
105  PHYSICAL = 0x00000200,
113  UNCACHEABLE = 0x00000400,
123  STRICT_ORDER = 0x00000800,
125  PRIVILEGED = 0x00008000,
126 
131  CACHE_BLOCK_ZERO = 0x00010000,
132 
134  NO_ACCESS = 0x00080000,
142  LOCKED_RMW = 0x00100000,
144  LLSC = 0x00200000,
146  MEM_SWAP = 0x00400000,
147  MEM_SWAP_COND = 0x00800000,
148 
150  PREFETCH = 0x01000000,
152  PF_EXCLUSIVE = 0x02000000,
154  EVICT_NEXT = 0x04000000,
156  ACQUIRE = 0x00020000,
158  RELEASE = 0x00040000,
159 
161  ATOMIC_RETURN_OP = 0x40000000,
163  ATOMIC_NO_RETURN_OP = 0x80000000,
164 
169  KERNEL = 0x00001000,
170 
172  SECURE = 0x10000000,
174  PT_WALK = 0x20000000,
175 
177  INVALIDATE = 0x0000000100000000,
179  CLEAN = 0x0000000200000000,
180 
182  DST_POU = 0x0000001000000000,
183 
185  DST_POC = 0x0000002000000000,
186 
188  DST_BITS = 0x0000003000000000,
189 
194  STICKY_FLAGS = INST_FETCH
195  };
196  static const FlagsType STORE_NO_DATA = CACHE_BLOCK_ZERO |
197  CLEAN | INVALIDATE;
198 
201  enum : MasterID {
203  wbMasterId = 0,
208  funcMasterId = 1,
210  intMasterId = 2,
215  invldMasterId = std::numeric_limits<MasterID>::max()
216  };
219  typedef uint32_t MemSpaceConfigFlagsType;
220  typedef ::Flags<MemSpaceConfigFlagsType> MemSpaceConfigFlags;
221 
222  enum : MemSpaceConfigFlagsType {
224  SCOPE_VALID = 0x00000001,
226  WAVEFRONT_SCOPE = 0x00000002,
228  WORKGROUP_SCOPE = 0x00000004,
230  DEVICE_SCOPE = 0x00000008,
232  SYSTEM_SCOPE = 0x00000010,
233 
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,
248  };
249 
250  using LocalAccessor =
251  std::function<Cycles(ThreadContext *tc, Packet *pkt)>;
252 
253  private:
254  typedef uint16_t PrivateFlagsType;
255  typedef ::Flags<PrivateFlagsType> PrivateFlags;
256 
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
280  };
281 
282  private:
283 
288  Addr _paddr = 0;
289 
295  unsigned _size = 0;
296 
299 
303  MasterID _masterId = invldMasterId;
304 
306  Flags _flags;
307 
309  MemSpaceConfigFlags _memSpaceConfigFlags;
310 
312  PrivateFlags privateFlags;
313 
319  Tick _time = MaxTick;
320 
324  uint32_t _taskId = ContextSwitchTaskId::Unknown;
325 
331  uint32_t _streamId = 0;
332 
339  uint32_t _substreamId = 0;
340 
342  Addr _vaddr = MaxAddr;
343 
347  uint64_t _extraData = 0;
348 
351 
353  Addr _pc = MaxAddr;
354 
356  InstSeqNum _reqInstSeqNum = 0;
357 
359  AtomicOpFunctorPtr atomicOpFunctor = nullptr;
360 
362 
363  public:
364 
370  Request() {}
371 
377  Request(Addr paddr, unsigned size, Flags flags, MasterID mid) :
378  _paddr(paddr), _size(size), _masterId(mid), _time(curTick())
379  {
380  _flags.set(flags);
381  privateFlags.set(VALID_PADDR|VALID_SIZE);
382  }
383 
384  Request(Addr vaddr, unsigned size, Flags flags,
385  MasterID mid, Addr pc, ContextID cid,
386  AtomicOpFunctorPtr atomic_op=nullptr)
387  {
388  setVirt(vaddr, size, flags, mid, pc, std::move(atomic_op));
389  setContext(cid);
390  }
391 
392  Request(const Request& other)
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),
399  _time(other._time),
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)
406  {
407  atomicOpFunctor.reset(other.atomicOpFunctor ?
408  other.atomicOpFunctor->clone() : nullptr);
409  }
410 
411  ~Request() {}
412 
416  void
417  setContext(ContextID context_id)
418  {
419  _contextId = context_id;
420  privateFlags.set(VALID_CONTEXT_ID);
421  }
422 
423  void
424  setStreamId(uint32_t sid)
425  {
426  _streamId = sid;
427  privateFlags.set(VALID_STREAM_ID);
428  }
429 
430  void
431  setSubStreamId(uint32_t ssid)
432  {
433  assert(privateFlags.isSet(VALID_STREAM_ID));
434  _substreamId = ssid;
435  privateFlags.set(VALID_SUBSTREAM_ID);
436  }
437 
442  void
443  setVirt(Addr vaddr, unsigned size, Flags flags, MasterID mid, Addr pc,
444  AtomicOpFunctorPtr amo_op=nullptr)
445  {
446  _vaddr = vaddr;
447  _size = size;
448  _masterId = mid;
449  _pc = pc;
450  _time = curTick();
451 
452  _flags.clear(~STICKY_FLAGS);
453  _flags.set(flags);
454  privateFlags.clear(~STICKY_PRIVATE_FLAGS);
455  privateFlags.set(VALID_VADDR|VALID_SIZE|VALID_PC);
456  depth = 0;
457  accessDelta = 0;
458  translateDelta = 0;
459  atomicOpFunctor = std::move(amo_op);
460  _localAccessor = nullptr;
461  }
462 
467  void
468  setPaddr(Addr paddr)
469  {
470  _paddr = paddr;
471  privateFlags.set(VALID_PADDR);
472  }
473 
478  // TODO: this function is still required by TimingSimpleCPU - should be
479  // removed once TimingSimpleCPU will support arbitrarily long multi-line
480  // mem. accesses
481  void splitOnVaddr(Addr split_addr, RequestPtr &req1, RequestPtr &req2)
482  {
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()) {
492  req1->_byteEnable = std::vector<bool>(
493  _byteEnable.begin(),
494  _byteEnable.begin() + req1->_size);
495  req2->_byteEnable = std::vector<bool>(
496  _byteEnable.begin() + req1->_size,
497  _byteEnable.end());
498  }
499  }
500 
504  bool
505  hasPaddr() const
506  {
507  return privateFlags.isSet(VALID_PADDR);
508  }
509 
510  Addr
511  getPaddr() const
512  {
513  assert(privateFlags.isSet(VALID_PADDR));
514  return _paddr;
515  }
516 
520  Tick translateDelta = 0;
521 
526  Tick accessDelta = 0;
527 
532  mutable int depth = 0;
533 
537  bool
538  hasSize() const
539  {
540  return privateFlags.isSet(VALID_SIZE);
541  }
542 
543  unsigned
544  getSize() const
545  {
546  assert(privateFlags.isSet(VALID_SIZE));
547  return _size;
548  }
549 
550  const std::vector<bool>&
552  {
553  return _byteEnable;
554  }
555 
556  void
558  {
559  assert(be.empty() || be.size() == _size);
560  _byteEnable = be;
561  }
562 
568  bool
569  isMasked() const
570  {
571  return std::find(
572  _byteEnable.begin(),
573  _byteEnable.end(),
574  false) != _byteEnable.end();
575  }
576 
578  Tick
579  time() const
580  {
581  assert(privateFlags.isSet(VALID_PADDR|VALID_VADDR));
582  return _time;
583  }
584 
586  bool isLocalAccess() { return (bool)_localAccessor; }
588  void setLocalAccessor(LocalAccessor acc) { _localAccessor = acc; }
590  Cycles
592  {
593  return _localAccessor(tc, pkt);
594  }
595 
599  bool
601  {
602  return (bool)atomicOpFunctor;
603  }
604 
607  {
608  assert(atomicOpFunctor);
609  return atomicOpFunctor.get();
610  }
611 
613  Flags
615  {
616  assert(privateFlags.isSet(VALID_PADDR|VALID_VADDR));
617  return _flags;
618  }
619 
624  void
625  setFlags(Flags flags)
626  {
627  assert(privateFlags.isSet(VALID_PADDR|VALID_VADDR));
628  _flags.set(flags);
629  }
630 
631  void
632  setMemSpaceConfigFlags(MemSpaceConfigFlags extraFlags)
633  {
634  assert(privateFlags.isSet(VALID_PADDR | VALID_VADDR));
635  _memSpaceConfigFlags.set(extraFlags);
636  }
637 
639  bool
640  hasVaddr() const
641  {
642  return privateFlags.isSet(VALID_VADDR);
643  }
644 
645  Addr
646  getVaddr() const
647  {
648  assert(privateFlags.isSet(VALID_VADDR));
649  return _vaddr;
650  }
651 
653  MasterID
654  masterId() const
655  {
656  return _masterId;
657  }
658 
659  uint32_t
660  taskId() const
661  {
662  return _taskId;
663  }
664 
665  void
666  taskId(uint32_t id) {
667  _taskId = id;
668  }
669 
671  ArchFlagsType
672  getArchFlags() const
673  {
674  assert(privateFlags.isSet(VALID_PADDR|VALID_VADDR));
675  return _flags & ARCH_BITS;
676  }
677 
679  bool
681  {
682  return privateFlags.isSet(VALID_EXTRA_DATA);
683  }
684 
686  uint64_t
687  getExtraData() const
688  {
689  assert(privateFlags.isSet(VALID_EXTRA_DATA));
690  return _extraData;
691  }
692 
694  void
695  setExtraData(uint64_t extraData)
696  {
697  _extraData = extraData;
698  privateFlags.set(VALID_EXTRA_DATA);
699  }
700 
701  bool
702  hasContextId() const
703  {
704  return privateFlags.isSet(VALID_CONTEXT_ID);
705  }
706 
708  ContextID
709  contextId() const
710  {
711  assert(privateFlags.isSet(VALID_CONTEXT_ID));
712  return _contextId;
713  }
714 
715  uint32_t
716  streamId() const
717  {
718  assert(privateFlags.isSet(VALID_STREAM_ID));
719  return _streamId;
720  }
721 
722  bool
724  {
725  return privateFlags.isSet(VALID_SUBSTREAM_ID);
726  }
727 
728  uint32_t
729  substreamId() const
730  {
731  assert(privateFlags.isSet(VALID_SUBSTREAM_ID));
732  return _substreamId;
733  }
734 
735  void
737  {
738  privateFlags.set(VALID_PC);
739  _pc = pc;
740  }
741 
742  bool
743  hasPC() const
744  {
745  return privateFlags.isSet(VALID_PC);
746  }
747 
749  Addr
750  getPC() const
751  {
752  assert(privateFlags.isSet(VALID_PC));
753  return _pc;
754  }
755 
760  void incAccessDepth() const { depth++; }
761  int getAccessDepth() const { return depth; }
762 
766  void setTranslateLatency() { translateDelta = curTick() - _time; }
767  Tick getTranslateLatency() const { return translateDelta; }
768 
773  void setAccessLatency() { accessDelta = curTick() - _time - translateDelta; }
774  Tick getAccessLatency() const { return accessDelta; }
775 
780  bool
782  {
783  return privateFlags.isSet(VALID_INST_SEQ_NUM);
784  }
785 
786  InstSeqNum
788  {
789  assert(privateFlags.isSet(VALID_INST_SEQ_NUM));
790  return _reqInstSeqNum;
791  }
792 
793  void
795  {
796  privateFlags.set(VALID_INST_SEQ_NUM);
797  _reqInstSeqNum = seq_num;
798  }
799 
802  bool isUncacheable() const { return _flags.isSet(UNCACHEABLE); }
803  bool isStrictlyOrdered() const { return _flags.isSet(STRICT_ORDER); }
804  bool isInstFetch() const { return _flags.isSet(INST_FETCH); }
805  bool isPrefetch() const { return (_flags.isSet(PREFETCH) ||
806  _flags.isSet(PF_EXCLUSIVE)); }
807  bool isPrefetchEx() const { return _flags.isSet(PF_EXCLUSIVE); }
808  bool isLLSC() const { return _flags.isSet(LLSC); }
809  bool isPriv() const { return _flags.isSet(PRIVILEGED); }
810  bool isLockedRMW() const { return _flags.isSet(LOCKED_RMW); }
811  bool isSwap() const { return _flags.isSet(MEM_SWAP|MEM_SWAP_COND); }
812  bool isCondSwap() const { return _flags.isSet(MEM_SWAP_COND); }
813  bool isSecure() const { return _flags.isSet(SECURE); }
814  bool isPTWalk() const { return _flags.isSet(PT_WALK); }
815  bool isAcquire() const { return _flags.isSet(ACQUIRE); }
816  bool isRelease() const { return _flags.isSet(RELEASE); }
817  bool isKernel() const { return _flags.isSet(KERNEL); }
818  bool isAtomicReturn() const { return _flags.isSet(ATOMIC_RETURN_OP); }
819  bool isAtomicNoReturn() const { return _flags.isSet(ATOMIC_NO_RETURN_OP); }
820 
821  bool
822  isAtomic() const
823  {
824  return _flags.isSet(ATOMIC_RETURN_OP) ||
825  _flags.isSet(ATOMIC_NO_RETURN_OP);
826  }
827 
835  bool isToPOU() const { return _flags.isSet(DST_POU); }
836  bool isToPOC() const { return _flags.isSet(DST_POC); }
837  Flags getDest() const { return _flags & DST_BITS; }
838 
845  bool isScoped() const { return _memSpaceConfigFlags.isSet(SCOPE_VALID); }
846 
847  bool
849  {
850  assert(isScoped());
851  return _memSpaceConfigFlags.isSet(WAVEFRONT_SCOPE);
852  }
853 
854  bool
856  {
857  assert(isScoped());
858  return _memSpaceConfigFlags.isSet(WORKGROUP_SCOPE);
859  }
860 
861  bool
863  {
864  assert(isScoped());
865  return _memSpaceConfigFlags.isSet(DEVICE_SCOPE);
866  }
867 
868  bool
870  {
871  assert(isScoped());
872  return _memSpaceConfigFlags.isSet(SYSTEM_SCOPE);
873  }
874 
875  bool
877  {
878  return _memSpaceConfigFlags.isSet(GLOBAL_SEGMENT) ||
879  (!isGroupSegment() && !isPrivateSegment() &&
880  !isKernargSegment() && !isReadonlySegment() &&
881  !isSpillSegment() && !isArgSegment());
882  }
883 
884  bool
886  {
887  return _memSpaceConfigFlags.isSet(GROUP_SEGMENT);
888  }
889 
890  bool
892  {
893  return _memSpaceConfigFlags.isSet(PRIVATE_SEGMENT);
894  }
895 
896  bool
898  {
899  return _memSpaceConfigFlags.isSet(KERNARG_SEGMENT);
900  }
901 
902  bool
904  {
905  return _memSpaceConfigFlags.isSet(READONLY_SEGMENT);
906  }
907 
908  bool
910  {
911  return _memSpaceConfigFlags.isSet(SPILL_SEGMENT);
912  }
913 
914  bool
915  isArgSegment() const
916  {
917  return _memSpaceConfigFlags.isSet(ARG_SEGMENT);
918  }
919 
932  bool isCacheClean() const { return _flags.isSet(CLEAN); }
933  bool isCacheInvalidate() const { return _flags.isSet(INVALIDATE); }
934  bool isCacheMaintenance() const { return _flags.isSet(CLEAN|INVALIDATE); }
936 };
937 
938 #endif // __MEM_REQUEST_HH__
bool isPrefetchEx() const
Definition: request.hh:807
std::vector< bool > _byteEnable
Byte-enable mask for writes.
Definition: request.hh:298
bool isGroupSegment() const
Definition: request.hh:885
void setPC(Addr pc)
Definition: request.hh:736
bool isDeviceScope() const
Definition: request.hh:862
Tick time() const
Accessor for time.
Definition: request.hh:579
::Flags< PrivateFlagsType > PrivateFlags
Definition: request.hh:255
void setStreamId(uint32_t sid)
Definition: request.hh:424
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
void setMemSpaceConfigFlags(MemSpaceConfigFlags extraFlags)
Definition: request.hh:632
void setSubStreamId(uint32_t ssid)
Definition: request.hh:431
bool isAcquire() const
Definition: request.hh:815
const Addr MaxAddr
Definition: types.hh:164
PrivateFlags privateFlags
Private flags for field validity checking.
Definition: request.hh:312
bool isUncacheable() const
Accessor functions for flags.
Definition: request.hh:802
uint64_t getExtraData() const
Accessor function for store conditional return value.
Definition: request.hh:687
Flags _flags
Flag structure for the request.
Definition: request.hh:306
bool isKernargSegment() const
Definition: request.hh:897
void setExtraData(uint64_t extraData)
Accessor function for store conditional return value.
Definition: request.hh:695
::Flags< FlagsType > Flags
Definition: request.hh:91
bool hasAtomicOpFunctor()
Accessor for atomic-op functor.
Definition: request.hh:600
std::shared_ptr< Request > RequestPtr
Definition: request.hh:81
bool isSet() const
Definition: flags.hh:60
void clear()
Definition: flags.hh:66
bool hasPaddr() const
Accessor for paddr.
Definition: request.hh:505
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
Definition: amo.hh:228
bool isRelease() const
Definition: request.hh:816
void setContext(ContextID context_id)
Set up Context numbers.
Definition: request.hh:417
MasterID masterId() const
Accesssor for the requestor id.
Definition: request.hh:654
uint16_t PrivateFlagsType
Definition: request.hh:254
bool isScoped() const
Accessor functions for the memory space configuration flags and used by GPU ISAs such as the Heteroge...
Definition: request.hh:845
bool isInstFetch() const
Definition: request.hh:804
ThreadContext is the external interface to all thread state for anything outside of the CPU...
bool isSwap() const
Definition: request.hh:811
void setAccessLatency()
Set/Get the time taken to complete this request&#39;s access, not including the time to successfully tran...
Definition: request.hh:773
Bitfield< 33 > id
bool isCacheClean() const
Accessor functions to determine whether this request is part of a cache maintenance operation...
Definition: request.hh:932
bool isSystemScope() const
Definition: request.hh:869
bool hasVaddr() const
Accessor function for vaddr.
Definition: request.hh:640
::Flags< MemSpaceConfigFlagsType > MemSpaceConfigFlags
Definition: request.hh:220
Tick getAccessLatency() const
Definition: request.hh:774
bool isGlobalSegment() const
Definition: request.hh:876
const Tick MaxTick
Definition: types.hh:63
bool isKernel() const
Definition: request.hh:817
Tick curTick()
The current simulated tick.
Definition: core.hh:44
Bitfield< 4 > pc
AtomicOpFunctor * getAtomicOpFunctor()
Definition: request.hh:606
Request(Addr paddr, unsigned size, Flags flags, MasterID mid)
Constructor for physical (e.g.
Definition: request.hh:377
ContextID contextId() const
Accessor function for context ID.
Definition: request.hh:709
void incAccessDepth() const
Increment/Get the depth at which this request is responded to.
Definition: request.hh:760
Request()
Minimal constructor.
Definition: request.hh:370
uint64_t Tick
Tick count type.
Definition: types.hh:61
LocalAccessor _localAccessor
Definition: request.hh:361
Request(const Request &other)
Definition: request.hh:392
void setLocalAccessor(LocalAccessor acc)
Set the function which will enact that access.
Definition: request.hh:588
bool isCacheInvalidate() const
Definition: request.hh:933
bool isMasked() const
Returns true if the memory request is masked, which means there is at least one byteEnable element wh...
Definition: request.hh:569
bool isAtomicNoReturn() const
Definition: request.hh:819
int getAccessDepth() const
Definition: request.hh:761
void splitOnVaddr(Addr split_addr, RequestPtr &req1, RequestPtr &req2)
Generate two requests as if this request had been split into two pieces.
Definition: request.hh:481
bool isWorkgroupScope() const
Definition: request.hh:855
uint64_t InstSeqNum
Definition: inst_seq.hh:37
uint32_t taskId() const
Definition: request.hh:660
bool isSpillSegment() const
Definition: request.hh:909
uint32_t streamId() const
Definition: request.hh:716
bool isCondSwap() const
Definition: request.hh:812
uint8_t ArchFlagsType
Definition: request.hh:90
std::function< Cycles(ThreadContext *tc, Packet *pkt)> LocalAccessor
Definition: request.hh:251
void setReqInstSeqNum(const InstSeqNum seq_num)
Definition: request.hh:794
const std::vector< bool > & getByteEnable() const
Definition: request.hh:551
bool extraDataValid() const
Accessor function to check if sc result is valid.
Definition: request.hh:680
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.
Definition: types.hh:140
uint16_t MasterID
Definition: request.hh:84
bool isStrictlyOrdered() const
Definition: request.hh:803
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
bool hasContextId() const
Definition: request.hh:702
Special TaskIds that are used for per-context-switch stats dumps and Cache Occupancy.
Definition: request.hh:69
void setByteEnable(const std::vector< bool > &be)
Definition: request.hh:557
bool isLLSC() const
Definition: request.hh:808
Flags getFlags()
Accessor for flags.
Definition: request.hh:614
bool isReadonlySegment() const
Definition: request.hh:903
Flags getDest() const
Definition: request.hh:837
~Request()
Definition: request.hh:411
Bitfield< 15 > be
AtomicOpFunctorPtr atomicOpFunctor
A pointer to an atomic operation.
Definition: request.hh:359
uint32_t substreamId() const
Definition: request.hh:729
bool hasPC() const
Definition: request.hh:743
bool isPrefetch() const
Definition: request.hh:805
Request(Addr vaddr, unsigned size, Flags flags, MasterID mid, Addr pc, ContextID cid, AtomicOpFunctorPtr atomic_op=nullptr)
Definition: request.hh:384
Cycles localAccessor(ThreadContext *tc, Packet *pkt)
Perform the installed local access.
Definition: request.hh:591
bool isPriv() const
Definition: request.hh:809
bool isToPOC() const
Definition: request.hh:836
bool isSecure() const
Definition: request.hh:813
const ContextID InvalidContextID
Definition: types.hh:230
bool isWavefrontScope() const
Definition: request.hh:848
bool isCacheMaintenance() const
Definition: request.hh:934
Addr getVaddr() const
Definition: request.hh:646
bool isArgSegment() const
Definition: request.hh:915
ArchFlagsType getArchFlags() const
Accessor function for architecture-specific flags.
Definition: request.hh:672
bool hasInstSeqNum() const
Accessor for the sequence number of instruction that creates the request.
Definition: request.hh:781
Addr getPC() const
Accessor function for pc.
Definition: request.hh:750
bool isPrivateSegment() const
Definition: request.hh:891
bool isAtomicReturn() const
Definition: request.hh:818
bool isPTWalk() const
Definition: request.hh:814
Addr getPaddr() const
Definition: request.hh:511
uint64_t FlagsType
Definition: request.hh:89
InstSeqNum getReqInstSeqNum() const
Definition: request.hh:787
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
Definition: base.hh:78
void setPaddr(Addr paddr)
Set just the physical address.
Definition: request.hh:468
void setFlags(Flags flags)
Note that unlike other accessors, this function sets specific flags (ORs them in); it does not assign...
Definition: request.hh:625
Tick getTranslateLatency() const
Definition: request.hh:767
MemSpaceConfigFlags _memSpaceConfigFlags
Memory space configuraiton flag structure for the request.
Definition: request.hh:309
void set(Type flags)
Definition: flags.hh:68
bool hasSubstreamId() const
Definition: request.hh:723
int ContextID
Globally unique thread context ID.
Definition: types.hh:229
bool hasSize() const
Accessor for size.
Definition: request.hh:538
uint32_t MemSpaceConfigFlagsType
Definition: request.hh:219
void taskId(uint32_t id)
Definition: request.hh:666
bool isAtomic() const
Definition: request.hh:822
void setTranslateLatency()
Set/Get the time taken for this request to be successfully translated.
Definition: request.hh:766
bool isToPOU() const
Accessor functions for the destination of a memory request.
Definition: request.hh:835
bool isLockedRMW() const
Definition: request.hh:810
bool isLocalAccess()
Is this request for a local memory mapped resource/register?
Definition: request.hh:586
unsigned getSize() const
Definition: request.hh:544
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.
Definition: request.hh:443
bool noneSet() const
Definition: flags.hh:64

Generated on Fri Jul 3 2020 15:53:04 for gem5 by doxygen 1.8.13