gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
request.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013,2017-2020 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 <algorithm>
52 #include <cassert>
53 #include <cstdint>
54 #include <functional>
55 #include <limits>
56 #include <memory>
57 #include <vector>
58 
59 #include "base/amo.hh"
60 #include "base/flags.hh"
61 #include "base/types.hh"
62 #include "cpu/inst_seq.hh"
63 #include "mem/htm.hh"
64 #include "sim/core.hh"
65 
75  enum TaskId {
76  MaxNormalTaskId = 1021, /* Maximum number of normal tasks */
77  Prefetcher = 1022, /* For cache lines brought in by prefetcher */
78  DMA = 1023, /* Mostly Table Walker */
79  Unknown = 1024,
81  };
82 }
83 
84 class Packet;
85 class Request;
87 
88 typedef std::shared_ptr<Request> RequestPtr;
89 typedef uint16_t RequestorID;
90 
91 class Request
92 {
93  public:
94  typedef uint64_t FlagsType;
95  typedef uint8_t ArchFlagsType;
96  typedef ::Flags<FlagsType> Flags;
97 
98  enum : FlagsType {
106  ARCH_BITS = 0x000000FF,
108  INST_FETCH = 0x00000100,
110  PHYSICAL = 0x00000200,
118  UNCACHEABLE = 0x00000400,
128  STRICT_ORDER = 0x00000800,
130  PRIVILEGED = 0x00008000,
131 
136  CACHE_BLOCK_ZERO = 0x00010000,
137 
139  NO_ACCESS = 0x00080000,
147  LOCKED_RMW = 0x00100000,
149  LLSC = 0x00200000,
151  MEM_SWAP = 0x00400000,
152  MEM_SWAP_COND = 0x00800000,
153 
155  PREFETCH = 0x01000000,
157  PF_EXCLUSIVE = 0x02000000,
159  EVICT_NEXT = 0x04000000,
161  ACQUIRE = 0x00020000,
163  RELEASE = 0x00040000,
164 
166  ATOMIC_RETURN_OP = 0x40000000,
168  ATOMIC_NO_RETURN_OP = 0x80000000,
169 
174  KERNEL = 0x00001000,
175 
177  SECURE = 0x10000000,
179  PT_WALK = 0x20000000,
180 
182  INVALIDATE = 0x0000000100000000,
184  CLEAN = 0x0000000200000000,
185 
187  DST_POU = 0x0000001000000000,
188 
190  DST_POC = 0x0000002000000000,
191 
193  DST_BITS = 0x0000003000000000,
194 
198  HTM_START = 0x0000010000000000,
199 
201  HTM_COMMIT = 0x0000020000000000,
202 
204  HTM_CANCEL = 0x0000040000000000,
205 
207  HTM_ABORT = 0x0000080000000000,
208 
209  // What is the different between HTM cancel and abort?
210  //
211  // HTM_CANCEL will originate from a user instruction, e.g.
212  // Arm's TCANCEL or x86's XABORT. This is an explicit request
213  // to end a transaction and restore from the last checkpoint.
214  //
215  // HTM_ABORT is an internally generated request used to synchronize
216  // a transaction's failure between the core and memory subsystem.
217  // If a transaction fails in the core, e.g. because an instruction
218  // within the transaction generates an exception, the core will prepare
219  // itself to stop fetching/executing more instructions and send an
220  // HTM_ABORT to the memory subsystem before restoring the checkpoint.
221  // Similarly, the transaction could fail in the memory subsystem and
222  // this will be communicated to the core via the Packet object.
223  // Once the core notices, it will do the same as the above and send
224  // a HTM_ABORT to the memory subsystem.
225  // A HTM_CANCEL sent to the memory subsystem will ultimately return
226  // to the core which in turn will send a HTM_ABORT.
227  //
228  // This separation is necessary to ensure the disjoint components
229  // of the system work correctly together.
230 
236  };
238  CLEAN | INVALIDATE;
239 
242 
245  enum : RequestorID {
259  invldRequestorId = std::numeric_limits<RequestorID>::max()
260  };
263  typedef uint64_t CacheCoherenceFlagsType;
264  typedef ::Flags<CacheCoherenceFlagsType> CacheCoherenceFlags;
265 
293  enum : CacheCoherenceFlagsType {
295  INV_L1 = 0x00000001,
296  FLUSH_L2 = 0x00000020,
298  SLC_BIT = 0x00000080,
299  GLC_BIT = 0x00000100,
300  };
301 
302  using LocalAccessor =
303  std::function<Cycles(ThreadContext *tc, Packet *pkt)>;
304 
305  private:
306  typedef uint16_t PrivateFlagsType;
307  typedef ::Flags<PrivateFlagsType> PrivateFlags;
308 
309  enum : PrivateFlagsType {
311  VALID_SIZE = 0x00000001,
313  VALID_PADDR = 0x00000002,
315  VALID_VADDR = 0x00000004,
317  VALID_INST_SEQ_NUM = 0x00000008,
319  VALID_PC = 0x00000010,
321  VALID_CONTEXT_ID = 0x00000020,
323  VALID_EXTRA_DATA = 0x00000080,
325  VALID_STREAM_ID = 0x00000100,
326  VALID_SUBSTREAM_ID = 0x00000200,
327  // hardware transactional memory
329  VALID_HTM_ABORT_CAUSE = 0x00000400,
331  VALID_INST_COUNT = 0x00000800,
337  };
338 
339  private:
340 
346 
352  unsigned _size = 0;
353 
356 
361 
364 
367 
370 
377 
382 
388  uint32_t _streamId = 0;
389 
396  uint32_t _substreamId = 0;
397 
400 
404  uint64_t _extraData = 0;
405 
408 
411 
414 
417 
419 
422 
425 
426  public:
427 
433  Request() {}
434 
440  Request(Addr paddr, unsigned size, Flags flags, RequestorID id) :
441  _paddr(paddr), _size(size), _requestorId(id), _time(curTick())
442  {
443  _flags.set(flags);
445  _byteEnable = std::vector<bool>(size, true);
446  }
447 
448  Request(Addr vaddr, unsigned size, Flags flags,
449  RequestorID id, Addr pc, ContextID cid,
450  AtomicOpFunctorPtr atomic_op=nullptr)
451  {
452  setVirt(vaddr, size, flags, id, pc, std::move(atomic_op));
453  setContext(cid);
454  _byteEnable = std::vector<bool>(size, true);
455  }
456 
457  Request(const Request& other)
458  : _paddr(other._paddr), _size(other._size),
459  _byteEnable(other._byteEnable),
460  _requestorId(other._requestorId),
461  _flags(other._flags),
463  privateFlags(other.privateFlags),
464  _time(other._time),
465  _taskId(other._taskId), _vaddr(other._vaddr),
467  _pc(other._pc), _reqInstSeqNum(other._reqInstSeqNum),
470  accessDelta(other.accessDelta), depth(other.depth)
471  {
472  atomicOpFunctor.reset(other.atomicOpFunctor ?
473  other.atomicOpFunctor->clone() : nullptr);
474  }
475 
476  ~Request() {}
477 
481  void
482  setContext(ContextID context_id)
483  {
484  _contextId = context_id;
486  }
487 
488  void
489  setStreamId(uint32_t sid)
490  {
491  _streamId = sid;
493  }
494 
495  void
496  setSubstreamId(uint32_t ssid)
497  {
498  assert(hasStreamId());
499  _substreamId = ssid;
501  }
502 
507  void
508  setVirt(Addr vaddr, unsigned size, Flags flags, RequestorID id, Addr pc,
509  AtomicOpFunctorPtr amo_op=nullptr)
510  {
511  _vaddr = vaddr;
512  _size = size;
513  _requestorId = id;
514  _pc = pc;
515  _time = curTick();
516 
518  _flags.set(flags);
521  depth = 0;
522  accessDelta = 0;
523  translateDelta = 0;
524  atomicOpFunctor = std::move(amo_op);
525  _localAccessor = nullptr;
526  }
527 
532  void
533  setPaddr(Addr paddr)
534  {
535  _paddr = paddr;
537  }
538 
543  // TODO: this function is still required by TimingSimpleCPU - should be
544  // removed once TimingSimpleCPU will support arbitrarily long multi-line
545  // mem. accesses
546  void splitOnVaddr(Addr split_addr, RequestPtr &req1, RequestPtr &req2)
547  {
548  assert(hasVaddr());
549  assert(!hasPaddr());
550  assert(split_addr > _vaddr && split_addr < _vaddr + _size);
551  req1 = std::make_shared<Request>(*this);
552  req2 = std::make_shared<Request>(*this);
553  req1->_size = split_addr - _vaddr;
554  req2->_vaddr = split_addr;
555  req2->_size = _size - req1->_size;
556  req1->_byteEnable = std::vector<bool>(
557  _byteEnable.begin(),
558  _byteEnable.begin() + req1->_size);
559  req2->_byteEnable = std::vector<bool>(
560  _byteEnable.begin() + req1->_size,
561  _byteEnable.end());
562  }
563 
567  bool
568  hasPaddr() const
569  {
571  }
572 
573  Addr
574  getPaddr() const
575  {
576  assert(hasPaddr());
577  return _paddr;
578  }
579 
583  bool
584  hasInstCount() const
585  {
587  }
588 
590  {
591  assert(hasInstCount());
592  return _instCount;
593  }
594 
596  {
598  _instCount = val;
599  }
600 
605 
611 
616  mutable int depth = 0;
617 
621  bool
622  hasSize() const
623  {
624  return privateFlags.isSet(VALID_SIZE);
625  }
626 
627  unsigned
628  getSize() const
629  {
630  assert(hasSize());
631  return _size;
632  }
633 
634  const std::vector<bool>&
636  {
637  return _byteEnable;
638  }
639 
640  void
642  {
643  assert(be.size() == _size);
644  _byteEnable = be;
645  }
646 
652  bool
653  isMasked() const
654  {
655  return std::find(
656  _byteEnable.begin(),
657  _byteEnable.end(),
658  false) != _byteEnable.end();
659  }
660 
662  Tick
663  time() const
664  {
665  assert(hasPaddr() || hasVaddr());
666  return _time;
667  }
668 
670  bool isLocalAccess() { return (bool)_localAccessor; }
674  Cycles
676  {
677  return _localAccessor(tc, pkt);
678  }
679 
683  bool
685  {
686  return (bool)atomicOpFunctor;
687  }
688 
691  {
692  assert(atomicOpFunctor);
693  return atomicOpFunctor.get();
694  }
695 
699  bool
701  {
703  }
704 
707  {
708  assert(hasHtmAbortCause());
709  return _htmAbortCause;
710  }
711 
712  void
714  {
715  assert(isHTMAbort());
718  }
719 
721  Flags
723  {
724  assert(hasPaddr() || hasVaddr());
725  return _flags;
726  }
727 
732  void
734  {
735  assert(hasPaddr() || hasVaddr());
736  _flags.set(flags);
737  }
738 
739  void
741  {
742  // TODO: do mem_sync_op requests have valid paddr/vaddr?
743  assert(hasPaddr() || hasVaddr());
744  _cacheCoherenceFlags.set(extraFlags);
745  }
746 
748  bool
749  hasVaddr() const
750  {
752  }
753 
754  Addr
755  getVaddr() const
756  {
757  assert(privateFlags.isSet(VALID_VADDR));
758  return _vaddr;
759  }
760 
763  requestorId() const
764  {
765  return _requestorId;
766  }
767 
768  uint32_t
769  taskId() const
770  {
771  return _taskId;
772  }
773 
774  void
775  taskId(uint32_t id) {
776  _taskId = id;
777  }
778 
781  getArchFlags() const
782  {
783  assert(hasPaddr() || hasVaddr());
784  return _flags & ARCH_BITS;
785  }
786 
788  bool
790  {
792  }
793 
795  uint64_t
796  getExtraData() const
797  {
798  assert(extraDataValid());
799  return _extraData;
800  }
801 
803  void
804  setExtraData(uint64_t extraData)
805  {
806  _extraData = extraData;
808  }
809 
810  bool
811  hasContextId() const
812  {
814  }
815 
817  ContextID
818  contextId() const
819  {
820  assert(hasContextId());
821  return _contextId;
822  }
823 
824  bool
825  hasStreamId() const
826  {
828  }
829 
830  uint32_t
831  streamId() const
832  {
833  assert(hasStreamId());
834  return _streamId;
835  }
836 
837  bool
839  {
841  }
842 
843  uint32_t
844  substreamId() const
845  {
846  assert(hasSubstreamId());
847  return _substreamId;
848  }
849 
850  void
852  {
854  _pc = pc;
855  }
856 
857  bool
858  hasPC() const
859  {
860  return privateFlags.isSet(VALID_PC);
861  }
862 
864  Addr
865  getPC() const
866  {
867  assert(hasPC());
868  return _pc;
869  }
870 
875  void incAccessDepth() const { depth++; }
876  int getAccessDepth() const { return depth; }
877 
883 
889  Tick getAccessLatency() const { return accessDelta; }
890 
895  bool
897  {
899  }
900 
901  InstSeqNum
903  {
904  assert(hasInstSeqNum());
905  return _reqInstSeqNum;
906  }
907 
908  void
910  {
912  _reqInstSeqNum = seq_num;
913  }
914 
917  bool isUncacheable() const { return _flags.isSet(UNCACHEABLE); }
918  bool isStrictlyOrdered() const { return _flags.isSet(STRICT_ORDER); }
919  bool isInstFetch() const { return _flags.isSet(INST_FETCH); }
920  bool isPrefetch() const { return (_flags.isSet(PREFETCH) ||
922  bool isPrefetchEx() const { return _flags.isSet(PF_EXCLUSIVE); }
923  bool isLLSC() const { return _flags.isSet(LLSC); }
924  bool isPriv() const { return _flags.isSet(PRIVILEGED); }
925  bool isLockedRMW() const { return _flags.isSet(LOCKED_RMW); }
926  bool isSwap() const { return _flags.isSet(MEM_SWAP|MEM_SWAP_COND); }
927  bool isCondSwap() const { return _flags.isSet(MEM_SWAP_COND); }
928  bool isSecure() const { return _flags.isSet(SECURE); }
929  bool isPTWalk() const { return _flags.isSet(PT_WALK); }
930  bool isRelease() const { return _flags.isSet(RELEASE); }
931  bool isKernel() const { return _flags.isSet(KERNEL); }
932  bool isAtomicReturn() const { return _flags.isSet(ATOMIC_RETURN_OP); }
934  // hardware transactional memory
935  bool isHTMStart() const { return _flags.isSet(HTM_START); }
936  bool isHTMCommit() const { return _flags.isSet(HTM_COMMIT); }
937  bool isHTMCancel() const { return _flags.isSet(HTM_CANCEL); }
938  bool isHTMAbort() const { return _flags.isSet(HTM_ABORT); }
939  bool
940  isHTMCmd() const
941  {
942  return (isHTMStart() || isHTMCommit() ||
943  isHTMCancel() || isHTMAbort());
944  }
945 
946  bool
947  isAtomic() const
948  {
949  return _flags.isSet(ATOMIC_RETURN_OP) ||
951  }
952 
960  bool isToPOU() const { return _flags.isSet(DST_POU); }
961  bool isToPOC() const { return _flags.isSet(DST_POC); }
962  Flags getDest() const { return _flags & DST_BITS; }
963 
964  bool isAcquire() const { return _cacheCoherenceFlags.isSet(ACQUIRE); }
965 
971  bool isInvL1() const { return _cacheCoherenceFlags.isSet(INV_L1); }
972 
973  bool
975  {
977  }
978 
991  bool isCacheClean() const { return _flags.isSet(CLEAN); }
992  bool isCacheInvalidate() const { return _flags.isSet(INVALIDATE); }
993  bool isCacheMaintenance() const { return _flags.isSet(CLEAN|INVALIDATE); }
995 };
996 
997 #endif // __MEM_REQUEST_HH__
Request::isInvL1
bool isInvL1() const
Accessor functions for the memory space configuration flags and used by GPU ISAs such as the Heteroge...
Definition: request.hh:971
Request::isHTMCmd
bool isHTMCmd() const
Definition: request.hh:940
Request::_pc
Addr _pc
program counter of initiating access; for tracing/debugging
Definition: request.hh:410
Request::isToPOC
bool isToPOC() const
Definition: request.hh:961
AtomicOpFunctorPtr
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
Definition: amo.hh:239
Request::INV_L1
@ INV_L1
mem_sync_op flags
Definition: request.hh:295
Request::_vaddr
Addr _vaddr
The virtual address of the request.
Definition: request.hh:399
Request::_requestorId
RequestorID _requestorId
The requestor ID which is unique in the system for all ports that are capable of issuing a transactio...
Definition: request.hh:360
Request::CLEAN
@ CLEAN
The request cleans a memory location.
Definition: request.hh:184
Request::getAccessDepth
int getAccessDepth() const
Definition: request.hh:876
Request::GLC_BIT
@ GLC_BIT
Definition: request.hh:299
Request::incAccessDepth
void incAccessDepth() const
Increment/Get the depth at which this request is responded to.
Definition: request.hh:875
Request::SECURE
@ SECURE
The request targets the secure memory space.
Definition: request.hh:177
Request::VALID_STREAM_ID
@ VALID_STREAM_ID
Whether or not the stream ID and substream ID is valid.
Definition: request.hh:325
Request::setByteEnable
void setByteEnable(const std::vector< bool > &be)
Definition: request.hh:641
Request::isPrefetch
bool isPrefetch() const
Definition: request.hh:920
Request::setReqInstSeqNum
void setReqInstSeqNum(const InstSeqNum seq_num)
Definition: request.hh:909
Request::intRequestorId
@ intRequestorId
This requestor id is used for message signaled interrupts.
Definition: request.hh:254
Request::HTM_ABORT
@ HTM_ABORT
The request aborts a HTM transaction.
Definition: request.hh:207
Request::getInstCount
Counter getInstCount() const
Definition: request.hh:589
Request::isLLSC
bool isLLSC() const
Definition: request.hh:923
Request::_taskId
uint32_t _taskId
The task id associated with this request.
Definition: request.hh:381
Request::MEM_SWAP_COND
@ MEM_SWAP_COND
Definition: request.hh:152
Request::_htmAbortCause
HtmFailureFaultCause _htmAbortCause
The cause for HTM transaction abort.
Definition: request.hh:424
Request::setHtmAbortCause
void setHtmAbortCause(HtmFailureFaultCause val)
Definition: request.hh:713
Request::isAtomic
bool isAtomic() const
Definition: request.hh:947
ContextSwitchTaskId::MaxNormalTaskId
@ MaxNormalTaskId
Definition: request.hh:76
Request::isSecure
bool isSecure() const
Definition: request.hh:928
Request::FlagsType
uint64_t FlagsType
Definition: request.hh:94
amo.hh
Request::isLockedRMW
bool isLockedRMW() const
Definition: request.hh:925
Request::EVICT_NEXT
@ EVICT_NEXT
The request should be marked as LRU.
Definition: request.hh:159
Request::privateFlags
PrivateFlags privateFlags
Private flags for field validity checking.
Definition: request.hh:369
Request::setInstCount
void setInstCount(Counter val)
Definition: request.hh:595
Request::PF_EXCLUSIVE
@ PF_EXCLUSIVE
The request should be prefetched into the exclusive state.
Definition: request.hh:157
Request::Request
Request(Addr vaddr, unsigned size, Flags flags, RequestorID id, Addr pc, ContextID cid, AtomicOpFunctorPtr atomic_op=nullptr)
Definition: request.hh:448
Request::isInstFetch
bool isInstFetch() const
Definition: request.hh:919
Flags< FlagsType >
Request::_localAccessor
LocalAccessor _localAccessor
Definition: request.hh:418
Request::invldRequestorId
@ invldRequestorId
Invalid requestor id for assertion checking only.
Definition: request.hh:259
Request::isHTMCancel
bool isHTMCancel() const
Definition: request.hh:937
ContextID
int ContextID
Globally unique thread context ID.
Definition: types.hh:237
Request::VALID_HTM_ABORT_CAUSE
@ VALID_HTM_ABORT_CAUSE
Whether or not the abort cause is valid.
Definition: request.hh:329
Request::ATOMIC_NO_RETURN_OP
@ ATOMIC_NO_RETURN_OP
The request is an atomic that does not return data.
Definition: request.hh:168
Request::CACHE_BLOCK_ZERO
@ CACHE_BLOCK_ZERO
This is a write that is targeted and zeroing an entire cache block.
Definition: request.hh:136
Request::LOCKED_RMW
@ LOCKED_RMW
This request will lock or unlock the accessed memory.
Definition: request.hh:147
htm.hh
Request::isStrictlyOrdered
bool isStrictlyOrdered() const
Definition: request.hh:918
Request::getVaddr
Addr getVaddr() const
Definition: request.hh:755
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
Request::CacheCoherenceFlags
::Flags< CacheCoherenceFlagsType > CacheCoherenceFlags
Definition: request.hh:264
Request::isLocalAccess
bool isLocalAccess()
Is this request for a local memory mapped resource/register?
Definition: request.hh:670
Request::ATOMIC_RETURN_OP
@ ATOMIC_RETURN_OP
The request is an atomic that returns data.
Definition: request.hh:166
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
std::vector< bool >
Request::hasInstSeqNum
bool hasInstSeqNum() const
Accessor for the sequence number of instruction that creates the request.
Definition: request.hh:896
InvalidContextID
const ContextID InvalidContextID
Definition: types.hh:238
Request::DST_BITS
@ DST_BITS
Bits to define the destination of a request.
Definition: request.hh:193
Request::extraDataValid
bool extraDataValid() const
Accessor function to check if sc result is valid.
Definition: request.hh:789
HtmFailureFaultCause
HtmFailureFaultCause
Definition: htm.hh:44
Request::HTM_CMD
static const FlagsType HTM_CMD
Definition: request.hh:240
Request::isCacheInvalidate
bool isCacheInvalidate() const
Definition: request.hh:992
Request::RELEASE
@ RELEASE
The request should be marked with RELEASE.
Definition: request.hh:163
Request::getPaddr
Addr getPaddr() const
Definition: request.hh:574
Request::wbRequestorId
@ wbRequestorId
This requestor id is used for writeback requests by the caches.
Definition: request.hh:247
Request::_reqInstSeqNum
InstSeqNum _reqInstSeqNum
Sequence number of the instruction that creates the request.
Definition: request.hh:413
Request::KERNEL
@ KERNEL
The request should be marked with KERNEL.
Definition: request.hh:174
MaxAddr
const Addr MaxAddr
Definition: types.hh:172
ContextSwitchTaskId::DMA
@ DMA
Definition: request.hh:78
Request::CacheCoherenceFlagsType
uint64_t CacheCoherenceFlagsType
Definition: request.hh:263
ContextSwitchTaskId::Unknown
@ Unknown
Definition: request.hh:79
Request::_instCount
Counter _instCount
The instruction count at the time this request is created.
Definition: request.hh:421
Request::accessDelta
Tick accessDelta
Access latency to complete this memory transaction not including translation time.
Definition: request.hh:610
Request::FLUSH_L2
@ FLUSH_L2
Definition: request.hh:296
ContextSwitchTaskId::NumTaskId
@ NumTaskId
Definition: request.hh:80
Request::PT_WALK
@ PT_WALK
The request is a page table walk.
Definition: request.hh:179
Request::depth
int depth
Level of the cache hierachy where this request was responded to (e.g.
Definition: request.hh:616
Request::hasVaddr
bool hasVaddr() const
Accessor function for vaddr.
Definition: request.hh:749
AtomicOpFunctor
Definition: amo.hh:40
Request::VALID_VADDR
@ VALID_VADDR
Whether or not the vaddr is valid.
Definition: request.hh:315
Request::setFlags
void setFlags(Flags flags)
Note that unlike other accessors, this function sets specific flags (ORs them in); it does not assign...
Definition: request.hh:733
Request::LocalAccessor
std::function< Cycles(ThreadContext *tc, Packet *pkt)> LocalAccessor
Definition: request.hh:303
Request::getExtraData
uint64_t getExtraData() const
Accessor function for store conditional return value.
Definition: request.hh:796
Request::getHtmAbortCause
HtmFailureFaultCause getHtmAbortCause() const
Definition: request.hh:706
Request::setSubstreamId
void setSubstreamId(uint32_t ssid)
Definition: request.hh:496
Request::hasSize
bool hasSize() const
Accessor for size.
Definition: request.hh:622
Request::isPriv
bool isPriv() const
Definition: request.hh:924
Request::isCacheMaintenance
bool isCacheMaintenance() const
Definition: request.hh:993
RequestorID
uint16_t RequestorID
Definition: request.hh:89
Counter
int64_t Counter
Statistics counter type.
Definition: types.hh:54
Request::VALID_PADDR
@ VALID_PADDR
Whether or not paddr is valid (has been written yet).
Definition: request.hh:313
Request::splitOnVaddr
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:546
Request::PrivateFlagsType
uint16_t PrivateFlagsType
Definition: request.hh:306
inst_seq.hh
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
Request::_extraData
uint64_t _extraData
Extra data for the request, such as the return value of store conditional or the compare value for a ...
Definition: request.hh:404
Request::getPC
Addr getPC() const
Accessor function for pc.
Definition: request.hh:865
Flags::clear
void clear()
Clear all flag's bits.
Definition: flags.hh:99
Request::getByteEnable
const std::vector< bool > & getByteEnable() const
Definition: request.hh:635
Request::atomicOpFunctor
AtomicOpFunctorPtr atomicOpFunctor
A pointer to an atomic operation.
Definition: request.hh:416
Request::Request
Request(const Request &other)
Definition: request.hh:457
Request::~Request
~Request()
Definition: request.hh:476
Request::setExtraData
void setExtraData(uint64_t extraData)
Accessor function for store conditional return value.
Definition: request.hh:804
Request::taskId
void taskId(uint32_t id)
Definition: request.hh:775
MipsISA::vaddr
vaddr
Definition: pra_constants.hh:275
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
Request::isGL2CacheFlush
bool isGL2CacheFlush() const
Definition: request.hh:974
Request::isAtomicNoReturn
bool isAtomicNoReturn() const
Definition: request.hh:933
Request::_streamId
uint32_t _streamId
The stream ID uniquely identifies a device behind the SMMU/IOMMU Each transaction arriving at the SMM...
Definition: request.hh:388
Request::getReqInstSeqNum
InstSeqNum getReqInstSeqNum() const
Definition: request.hh:902
Request::hasStreamId
bool hasStreamId() const
Definition: request.hh:825
Request::STICKY_FLAGS
@ STICKY_FLAGS
These flags are not cleared when a Request object is reused (assigned a new address).
Definition: request.hh:235
MipsISA::be
Bitfield< 15 > be
Definition: pra_constants.hh:220
Request::STRICT_ORDER
@ STRICT_ORDER
The request is required to be strictly ordered by CPU models and is non-speculative.
Definition: request.hh:128
Request::localAccessor
Cycles localAccessor(ThreadContext *tc, Packet *pkt)
Perform the installed local access.
Definition: request.hh:675
Request::VALID_SUBSTREAM_ID
@ VALID_SUBSTREAM_ID
Definition: request.hh:326
Prefetcher
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
Definition: base.hh:78
Request::isPTWalk
bool isPTWalk() const
Definition: request.hh:929
Request::isSwap
bool isSwap() const
Definition: request.hh:926
Flags::set
void set(Type mask)
Set all flag's bits matching the given mask.
Definition: flags.hh:113
Request::isToPOU
bool isToPOU() const
Accessor functions for the destination of a memory request.
Definition: request.hh:960
Request::isHTMAbort
bool isHTMAbort() const
Definition: request.hh:938
Request::isAcquire
bool isAcquire() const
Definition: request.hh:964
Request::translateDelta
Tick translateDelta
Time for the TLB/table walker to successfully translate this request.
Definition: request.hh:604
Request::VALID_EXTRA_DATA
@ VALID_EXTRA_DATA
Whether or not the sc result is valid.
Definition: request.hh:323
Request::isHTMStart
bool isHTMStart() const
Definition: request.hh:935
Request::setPaddr
void setPaddr(Addr paddr)
Set just the physical address.
Definition: request.hh:533
ContextSwitchTaskId
Special TaskIds that are used for per-context-switch stats dumps and Cache Occupancy.
Definition: request.hh:74
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
Flags::isSet
bool isSet(Type mask) const
Verifies whether any bit matching the given mask is set.
Definition: flags.hh:80
InstSeqNum
uint64_t InstSeqNum
Definition: inst_seq.hh:37
Request::isPrefetchEx
bool isPrefetchEx() const
Definition: request.hh:922
Request::_paddr
Addr _paddr
The physical address of the request.
Definition: request.hh:345
core.hh
Request::STICKY_PRIVATE_FLAGS
@ STICKY_PRIVATE_FLAGS
These flags are not cleared when a Request object is reused (assigned a new address).
Definition: request.hh:336
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
ContextSwitchTaskId::TaskId
TaskId
Definition: request.hh:75
Request::_size
unsigned _size
The size of the request.
Definition: request.hh:352
Request
Definition: request.hh:91
Request::setAccessLatency
void setAccessLatency()
Set/Get the time taken to complete this request's access, not including the time to successfully tran...
Definition: request.hh:888
Request::hasInstCount
bool hasInstCount() const
Accessor for instruction count.
Definition: request.hh:584
Request::INST_FETCH
@ INST_FETCH
The request was an instruction fetch.
Definition: request.hh:108
Request::funcRequestorId
@ funcRequestorId
This requestor id is used for functional requests that don't come from a particular device.
Definition: request.hh:252
flags.hh
Request::substreamId
uint32_t substreamId() const
Definition: request.hh:844
Request::setStreamId
void setStreamId(uint32_t sid)
Definition: request.hh:489
Request::HTM_COMMIT
@ HTM_COMMIT
The request commits a HTM transaction.
Definition: request.hh:201
Request::VALID_INST_COUNT
@ VALID_INST_COUNT
Whether or not the instruction count is valid.
Definition: request.hh:331
Request::VALID_CONTEXT_ID
@ VALID_CONTEXT_ID
Whether or not the context ID is valid.
Definition: request.hh:321
Request::ACQUIRE
@ ACQUIRE
The request should be marked with ACQUIRE.
Definition: request.hh:161
Request::DST_POC
@ DST_POC
The request targets the point of coherence.
Definition: request.hh:190
Request::NO_ACCESS
@ NO_ACCESS
The request should not cause a memory access.
Definition: request.hh:139
Request::isRelease
bool isRelease() const
Definition: request.hh:930
Request::_time
Tick _time
The time this request was started.
Definition: request.hh:376
Request::getAccessLatency
Tick getAccessLatency() const
Definition: request.hh:889
Request::getFlags
Flags getFlags()
Accessor for flags.
Definition: request.hh:722
Request::isAtomicReturn
bool isAtomicReturn() const
Definition: request.hh:932
Request::INVALIDATE
@ INVALIDATE
The request invalidates a memory location.
Definition: request.hh:182
Request::_cacheCoherenceFlags
CacheCoherenceFlags _cacheCoherenceFlags
Flags that control how downstream cache system maintains coherence.
Definition: request.hh:366
Request::setContext
void setContext(ContextID context_id)
Set up Context numbers.
Definition: request.hh:482
Request::hasAtomicOpFunctor
bool hasAtomicOpFunctor()
Accessor for atomic-op functor.
Definition: request.hh:684
Request::PRIVILEGED
@ PRIVILEGED
This request is made in privileged mode.
Definition: request.hh:130
Request::isCacheClean
bool isCacheClean() const
Accessor functions to determine whether this request is part of a cache maintenance operation.
Definition: request.hh:991
Request::hasPC
bool hasPC() const
Definition: request.hh:858
types.hh
Request::isMasked
bool isMasked() const
Returns true if the memory request is masked, which means there is at least one byteEnable element wh...
Definition: request.hh:653
Request::MEM_SWAP
@ MEM_SWAP
This request is for a memory swap.
Definition: request.hh:151
Request::isHTMCommit
bool isHTMCommit() const
Definition: request.hh:936
Request::setVirt
void setVirt(Addr vaddr, unsigned size, Flags flags, RequestorID id, Addr pc, AtomicOpFunctorPtr amo_op=nullptr)
Set up a virtual (e.g., CPU) request in a previously allocated Request object.
Definition: request.hh:508
Request::hasPaddr
bool hasPaddr() const
Accessor for paddr.
Definition: request.hh:568
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Request::UNCACHEABLE
@ UNCACHEABLE
The request is to an uncacheable address.
Definition: request.hh:118
Request::LLSC
@ LLSC
The request is a Load locked/store conditional.
Definition: request.hh:149
Request::SLC_BIT
@ SLC_BIT
user-policy flags
Definition: request.hh:298
Request::DST_POU
@ DST_POU
The request targets the point of unification.
Definition: request.hh:187
Request::setPC
void setPC(Addr pc)
Definition: request.hh:851
Request::PHYSICAL
@ PHYSICAL
The virtual address is also the physical address.
Definition: request.hh:110
Request::hasSubstreamId
bool hasSubstreamId() const
Definition: request.hh:838
Request::_flags
Flags _flags
Flag structure for the request.
Definition: request.hh:363
Request::HTM_START
@ HTM_START
hardware transactional memory
Definition: request.hh:198
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
Request::PrivateFlags
::Flags< PrivateFlagsType > PrivateFlags
Definition: request.hh:307
Request::setLocalAccessor
void setLocalAccessor(LocalAccessor acc)
Set the function which will enact that access.
Definition: request.hh:672
Request::Flags
::Flags< FlagsType > Flags
Definition: request.hh:96
Request::setTranslateLatency
void setTranslateLatency()
Set/Get the time taken for this request to be successfully translated.
Definition: request.hh:881
Request::getAtomicOpFunctor
AtomicOpFunctor * getAtomicOpFunctor()
Definition: request.hh:690
Request::Request
Request(Addr paddr, unsigned size, Flags flags, RequestorID id)
Constructor for physical (e.g.
Definition: request.hh:440
Request::hasContextId
bool hasContextId() const
Definition: request.hh:811
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
Request::contextId
ContextID contextId() const
Accessor function for context ID.
Definition: request.hh:818
Request::getArchFlags
ArchFlagsType getArchFlags() const
Accessor function for architecture-specific flags.
Definition: request.hh:781
Request::Request
Request()
Minimal constructor.
Definition: request.hh:433
HtmFailureFaultCause::INVALID
@ INVALID
Request::STORE_NO_DATA
static const FlagsType STORE_NO_DATA
Definition: request.hh:237
Request::_byteEnable
std::vector< bool > _byteEnable
Byte-enable mask for writes.
Definition: request.hh:355
Request::getTranslateLatency
Tick getTranslateLatency() const
Definition: request.hh:882
Request::getDest
Flags getDest() const
Definition: request.hh:962
Request::VALID_INST_SEQ_NUM
@ VALID_INST_SEQ_NUM
Whether or not the instruction sequence number is valid.
Definition: request.hh:317
Request::VALID_SIZE
@ VALID_SIZE
Whether or not the size is valid.
Definition: request.hh:311
Request::ARCH_BITS
@ ARCH_BITS
Architecture specific flags.
Definition: request.hh:106
Request::setCacheCoherenceFlags
void setCacheCoherenceFlags(CacheCoherenceFlags extraFlags)
Definition: request.hh:740
Request::HTM_CANCEL
@ HTM_CANCEL
The request cancels a HTM transaction.
Definition: request.hh:204
Request::_substreamId
uint32_t _substreamId
The substream ID identifies an "execution context" within a device behind an SMMU/IOMMU.
Definition: request.hh:396
MaxTick
const Tick MaxTick
Definition: types.hh:61
Request::hasHtmAbortCause
bool hasHtmAbortCause() const
Accessor for hardware transactional memory abort cause.
Definition: request.hh:700
Request::getSize
unsigned getSize() const
Definition: request.hh:628
Request::requestorId
RequestorID requestorId() const
Accesssor for the requestor id.
Definition: request.hh:763
Request::streamId
uint32_t streamId() const
Definition: request.hh:831
Request::isUncacheable
bool isUncacheable() const
Accessor functions for flags.
Definition: request.hh:917
Request::isCondSwap
bool isCondSwap() const
Definition: request.hh:927
ArmISA::id
Bitfield< 33 > id
Definition: miscregs_types.hh:247
Request::taskId
uint32_t taskId() const
Definition: request.hh:769
Request::ArchFlagsType
uint8_t ArchFlagsType
Definition: request.hh:95
Request::VALID_PC
@ VALID_PC
Whether or not the pc is valid.
Definition: request.hh:319
Request::isKernel
bool isKernel() const
Definition: request.hh:931
Request::PREFETCH
@ PREFETCH
The request is a prefetch.
Definition: request.hh:155
Request::_contextId
ContextID _contextId
The context ID (for statistics, locks, and wakeups).
Definition: request.hh:407
Request::time
Tick time() const
Accessor for time.
Definition: request.hh:663

Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17