gem5 v24.1.0.1
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-2022 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/compiler.hh"
61#include "base/extensible.hh"
62#include "base/flags.hh"
63#include "base/types.hh"
64#include "cpu/inst_seq.hh"
65#include "mem/htm.hh"
66#include "sim/cur_tick.hh"
67
68namespace gem5
69{
70
78namespace context_switch_task_id
79{
80 enum TaskId
81 {
82 MaxNormalTaskId = 1021, /* Maximum number of normal tasks */
83 Prefetcher = 1022, /* For cache lines brought in by prefetcher */
84 DMA = 1023, /* Mostly Table Walker */
85 Unknown = 1024,
87 };
88}
89
90class Packet;
91class Request;
92class ThreadContext;
93
94typedef std::shared_ptr<Request> RequestPtr;
95typedef uint16_t RequestorID;
96
97class Request : public Extensible<Request>
98{
99 public:
100 typedef uint64_t FlagsType;
101 typedef uint8_t ArchFlagsType;
103
104 enum : FlagsType
105 {
113 ARCH_BITS = 0x000000FF,
115 INST_FETCH = 0x00000100,
117 PHYSICAL = 0x00000200,
125 UNCACHEABLE = 0x00000400,
135 STRICT_ORDER = 0x00000800,
137 PRIVILEGED = 0x00008000,
138
143 CACHE_BLOCK_ZERO = 0x00010000,
144
146 NO_ACCESS = 0x00080000,
154 LOCKED_RMW = 0x00100000,
156 LLSC = 0x00200000,
158 MEM_SWAP = 0x00400000,
159 MEM_SWAP_COND = 0x00800000,
161 READ_MODIFY_WRITE = 0x0020000000000000,
162
164 PREFETCH = 0x01000000,
166 PF_EXCLUSIVE = 0x02000000,
168 EVICT_NEXT = 0x04000000,
170 ACQUIRE = 0x00020000,
172 RELEASE = 0x00040000,
173
175 ATOMIC_RETURN_OP = 0x40000000,
178
183 KERNEL = 0x00001000,
184
186 SECURE = 0x10000000,
188 PT_WALK = 0x20000000,
189
191 INVALIDATE = 0x0000000100000000,
193 CLEAN = 0x0000000200000000,
194
196 DST_POU = 0x0000001000000000,
197
199 DST_POC = 0x0000002000000000,
200
202 DST_BITS = 0x0000003000000000,
203
207 HTM_START = 0x0000010000000000,
208
210 HTM_COMMIT = 0x0000020000000000,
211
213 HTM_CANCEL = 0x0000040000000000,
214
216 HTM_ABORT = 0x0000080000000000,
217
218 // What is the different between HTM cancel and abort?
219 //
220 // HTM_CANCEL will originate from a user instruction, e.g.
221 // Arm's TCANCEL or x86's XABORT. This is an explicit request
222 // to end a transaction and restore from the last checkpoint.
223 //
224 // HTM_ABORT is an internally generated request used to synchronize
225 // a transaction's failure between the core and memory subsystem.
226 // If a transaction fails in the core, e.g. because an instruction
227 // within the transaction generates an exception, the core will prepare
228 // itself to stop fetching/executing more instructions and send an
229 // HTM_ABORT to the memory subsystem before restoring the checkpoint.
230 // Similarly, the transaction could fail in the memory subsystem and
231 // this will be communicated to the core via the Packet object.
232 // Once the core notices, it will do the same as the above and send
233 // a HTM_ABORT to the memory subsystem.
234 // A HTM_CANCEL sent to the memory subsystem will ultimately return
235 // to the core which in turn will send a HTM_ABORT.
236 //
237 // This separation is necessary to ensure the disjoint components
238 // of the system work correctly together.
239
241 TLBI = 0x0000100000000000,
242
244 TLBI_SYNC = 0x0000200000000000,
245
248 TLBI_EXT_SYNC = 0x0000400000000000,
249
252 TLBI_EXT_SYNC_COMP = 0x0000800000000000,
253
261 HAS_NO_ADDR = 0x0001000000000000,
262 };
265
268
269 static const FlagsType TLBI_CMD = TLBI | TLBI_SYNC |
271
274 enum : RequestorID
275 {
289 invldRequestorId = std::numeric_limits<RequestorID>::max()
290 };
293 typedef uint64_t CacheCoherenceFlagsType;
295
324 {
326 I_CACHE_INV = 0x00000001,
328 V_CACHE_INV = 0x00000002,
329 K_CACHE_INV = 0x00000004,
330 GL1_CACHE_INV = 0x00000008,
331 K_CACHE_WB = 0x00000010,
332 FLUSH_L2 = 0x00000020,
333 GL2_CACHE_INV = 0x00000040,
335 SLC_BIT = 0x00000080,
336 DLC_BIT = 0x00000100,
337 GLC_BIT = 0x00000200,
339 CACHED = 0x00000400,
340 READ_WRITE = 0x00000800,
341 SHARED = 0x00001000,
342
343 };
344
346 std::function<Cycles(ThreadContext *tc, Packet *pkt)>;
347
348 private:
349 typedef uint16_t PrivateFlagsType;
351
352 enum : PrivateFlagsType
353 {
355 VALID_SIZE = 0x00000001,
357 VALID_PADDR = 0x00000002,
359 VALID_VADDR = 0x00000004,
361 VALID_INST_SEQ_NUM = 0x00000008,
363 VALID_PC = 0x00000010,
365 VALID_CONTEXT_ID = 0x00000020,
367 VALID_EXTRA_DATA = 0x00000080,
369 VALID_STREAM_ID = 0x00000100,
370 VALID_SUBSTREAM_ID = 0x00000200,
371 // hardware transactional memory
375 VALID_INST_COUNT = 0x00000800,
381 };
382
383 private:
384
390
396 unsigned _size = 0;
397
400
405
408
411
414
421
426
432 uint32_t _streamId = 0;
433
440 uint32_t _substreamId = 0;
441
446 bool _systemReq = 0;
447
450
454 uint64_t _extraData = 0;
455
458
461
464
467
469
472
475
477
478 public:
479
486
492 Request(Addr paddr, unsigned size, Flags flags, RequestorID id) :
493 _paddr(paddr), _size(size), _requestorId(id), _time(curTick())
494 {
497 _byteEnable = std::vector<bool>(size, true);
498 _isGPUFuncAccess = false;
499 }
500
501 Request(Addr vaddr, unsigned size, Flags flags,
502 RequestorID id, Addr pc, ContextID cid,
503 AtomicOpFunctorPtr atomic_op=nullptr)
504 {
505 setVirt(vaddr, size, flags, id, pc, std::move(atomic_op));
506 setContext(cid);
507 _byteEnable = std::vector<bool>(size, true);
508 _isGPUFuncAccess = false;
509 }
510
511 Request(const Request& other)
512 : Extensible<Request>(other),
513 _paddr(other._paddr), _size(other._size),
516 _flags(other._flags),
519 _time(other._time),
520 _taskId(other._taskId), _vaddr(other._vaddr),
522 _pc(other._pc), _reqInstSeqNum(other._reqInstSeqNum),
525 accessDelta(other.accessDelta), depth(other.depth)
526 {
527 atomicOpFunctor.reset(other.atomicOpFunctor ?
528 other.atomicOpFunctor->clone() : nullptr);
529 }
530
532
537 static RequestPtr
539 {
540 auto mgmt_req = std::make_shared<Request>();
541 mgmt_req->_flags.set(flags);
542 mgmt_req->_requestorId = id;
543 mgmt_req->_time = curTick();
544
545 assert(mgmt_req->isMemMgmt());
546 return mgmt_req;
547 }
548
552 void
554 {
555 _contextId = context_id;
557 }
558
559 void
560 setStreamId(uint32_t sid)
561 {
562 _streamId = sid;
564 }
565
566 void
567 setSubstreamId(uint32_t ssid)
568 {
569 assert(hasStreamId());
570 _substreamId = ssid;
572 }
573
578 void
580 AtomicOpFunctorPtr amo_op=nullptr)
581 {
582 _vaddr = vaddr;
583 _size = size;
585 _pc = pc;
586 _time = curTick();
587
592 depth = 0;
593 accessDelta = 0;
594 translateDelta = 0;
595 atomicOpFunctor = std::move(amo_op);
596 _localAccessor = nullptr;
597 }
598
603 void
605 {
606 _paddr = paddr;
608 }
609
614 // TODO: this function is still required by TimingSimpleCPU - should be
615 // removed once TimingSimpleCPU will support arbitrarily long multi-line
616 // mem. accesses
617 void splitOnVaddr(Addr split_addr, RequestPtr &req1, RequestPtr &req2)
618 {
619 assert(hasVaddr());
620 assert(!hasPaddr());
621 assert(split_addr > _vaddr && split_addr < _vaddr + _size);
622 req1 = std::make_shared<Request>(*this);
623 req2 = std::make_shared<Request>(*this);
624 req1->_size = split_addr - _vaddr;
625 req2->_vaddr = split_addr;
626 req2->_size = _size - req1->_size;
627 req1->_byteEnable = std::vector<bool>(
628 _byteEnable.begin(),
629 _byteEnable.begin() + req1->_size);
630 req2->_byteEnable = std::vector<bool>(
631 _byteEnable.begin() + req1->_size,
632 _byteEnable.end());
633 }
634
638 bool
639 hasPaddr() const
640 {
642 }
643
644 Addr
645 getPaddr() const
646 {
647 assert(hasPaddr());
648 return _paddr;
649 }
650
654 bool
656 {
658 }
659
661 {
662 assert(hasInstCount());
663 return _instCount;
664 }
665
671
676
682
687 mutable int depth = 0;
688
692 bool
693 hasSize() const
694 {
696 }
697
698 unsigned
699 getSize() const
700 {
701 assert(hasSize());
702 return _size;
703 }
704
705 const std::vector<bool>&
707 {
708 return _byteEnable;
709 }
710
711 void
713 {
714 assert(be.size() == _size);
715 _byteEnable = be;
716 }
717
723 bool
724 isMasked() const
725 {
726 return std::find(
727 _byteEnable.begin(),
728 _byteEnable.end(),
729 false) != _byteEnable.end();
730 }
731
733 Tick
734 time() const
735 {
736 assert(hasPaddr() || hasVaddr());
737 return _time;
738 }
739
741 bool isLocalAccess() { return (bool)_localAccessor; }
745 Cycles
747 {
748 return _localAccessor(tc, pkt);
749 }
750
754 bool
756 {
757 return (bool)atomicOpFunctor;
758 }
759
762 {
763 assert(atomicOpFunctor);
764 return atomicOpFunctor.get();
765 }
766
767 void
769 {
770 atomicOpFunctor = std::move(amo_op);
771 }
772
773
777 bool
782
785 {
786 assert(hasHtmAbortCause());
787 return _htmAbortCause;
788 }
789
790 void
797
799 Flags
801 {
802 assert(hasPaddr() || hasVaddr());
803 return _flags;
804 }
805
810 void
812 {
813 assert(hasPaddr() || hasVaddr());
815 }
816
817 void
819 {
820 assert(hasPaddr() || hasVaddr());
822 }
823
824 void
826 {
827 // TODO: do mem_sync_op requests have valid paddr/vaddr?
828 assert(hasPaddr() || hasVaddr());
829 _cacheCoherenceFlags.set(extraFlags);
830 }
831
832 void
834 {
835 // TODO: do mem_sync_op requests have valid paddr/vaddr?
836 assert(hasPaddr() || hasVaddr());
837 _cacheCoherenceFlags.clear(extraFlags);
838 }
839
841 bool
842 hasVaddr() const
843 {
845 }
846
847 Addr
848 getVaddr() const
849 {
851 return _vaddr;
852 }
853
857 {
858 return _requestorId;
859 }
860
861 void
863 {
864 _requestorId = rid;
865 }
866
867 uint32_t
868 taskId() const
869 {
870 return _taskId;
871 }
872
873 void
874 taskId(uint32_t id) {
875 _taskId = id;
876 }
877
881 {
882 assert(hasPaddr() || hasVaddr());
883 return _flags & ARCH_BITS;
884 }
885
887 bool
889 {
891 }
892
894 uint64_t
896 {
897 assert(extraDataValid());
898 return _extraData;
899 }
900
902 void
903 setExtraData(uint64_t extraData)
904 {
905 _extraData = extraData;
907 }
908
909 bool
911 {
913 }
914
917 contextId() const
918 {
919 assert(hasContextId());
920 return _contextId;
921 }
922
923 /* For GPU fullsystem mark this request is not to device memory. */
924 void setSystemReq(bool sysReq) { _systemReq = sysReq; }
925 bool systemReq() const { return _systemReq; }
926
927 bool
929 {
931 }
932
933 uint32_t
934 streamId() const
935 {
936 assert(hasStreamId());
937 return _streamId;
938 }
939
940 bool
942 {
944 }
945
946 uint32_t
948 {
949 assert(hasSubstreamId());
950 return _substreamId;
951 }
952
953 void
955 {
957 _pc = pc;
958 }
959
960 bool
961 hasPC() const
962 {
964 }
965
967 Addr
968 getPC() const
969 {
970 assert(hasPC());
971 return _pc;
972 }
973
978 void incAccessDepth() const { depth++; }
979 int getAccessDepth() const { return depth; }
980
986
993
998 bool
1000 {
1002 }
1003
1006 {
1007 assert(hasInstSeqNum());
1008 return _reqInstSeqNum;
1009 }
1010
1011 void
1013 {
1015 _reqInstSeqNum = seq_num;
1016 }
1017
1020 bool isUncacheable() const { return _flags.isSet(UNCACHEABLE); }
1021 bool isStrictlyOrdered() const { return _flags.isSet(STRICT_ORDER); }
1022 bool isInstFetch() const { return _flags.isSet(INST_FETCH); }
1023 bool hasNoAddr() const { return _flags.isSet(HAS_NO_ADDR); }
1024 bool
1026 {
1027 return (_flags.isSet(PREFETCH | PF_EXCLUSIVE));
1028 }
1029 bool isPrefetchEx() const { return _flags.isSet(PF_EXCLUSIVE); }
1030 bool isLLSC() const { return _flags.isSet(LLSC); }
1031 bool isPriv() const { return _flags.isSet(PRIVILEGED); }
1032 bool isLockedRMW() const { return _flags.isSet(LOCKED_RMW); }
1033 bool isSwap() const { return _flags.isSet(MEM_SWAP | MEM_SWAP_COND); }
1034 bool isCondSwap() const { return _flags.isSet(MEM_SWAP_COND); }
1035 bool
1037 {
1039 }
1040 bool isSecure() const { return _flags.isSet(SECURE); }
1041 bool isPTWalk() const { return _flags.isSet(PT_WALK); }
1042 bool isRelease() const { return _flags.isSet(RELEASE); }
1043 bool isKernel() const { return _flags.isSet(KERNEL); }
1046 // hardware transactional memory
1047 bool isHTMStart() const { return _flags.isSet(HTM_START); }
1048 bool isHTMCommit() const { return _flags.isSet(HTM_COMMIT); }
1049 bool isHTMCancel() const { return _flags.isSet(HTM_CANCEL); }
1050 bool isHTMAbort() const { return _flags.isSet(HTM_ABORT); }
1051 bool
1052 isHTMCmd() const
1053 {
1054 return (isHTMStart() || isHTMCommit() ||
1055 isHTMCancel() || isHTMAbort());
1056 }
1057
1058 bool isTlbi() const { return _flags.isSet(TLBI); }
1059 bool isTlbiSync() const { return _flags.isSet(TLBI_SYNC); }
1060 bool isTlbiExtSync() const { return _flags.isSet(TLBI_EXT_SYNC); }
1062 bool
1064 {
1065 return (isTlbi() || isTlbiSync() ||
1067 }
1068 bool isMemMgmt() const { return isTlbiCmd() || isHTMCmd(); }
1069
1070 bool
1071 isAtomic() const
1072 {
1073 return _flags.isSet(ATOMIC_RETURN_OP) ||
1075 }
1076
1084 bool isToPOU() const { return _flags.isSet(DST_POU); }
1085 bool isToPOC() const { return _flags.isSet(DST_POC); }
1086 Flags getDest() const { return _flags & DST_BITS; }
1087
1089
1090
1100
1106 bool isInvL1() const { return _cacheCoherenceFlags.isSet(INV_L1); }
1108
1109 bool
1111 {
1113 }
1114
1127 bool isCacheClean() const { return _flags.isSet(CLEAN); }
1128 bool isCacheInvalidate() const { return _flags.isSet(INVALIDATE); }
1132 void
1133 setGPUFuncAccess(bool flag) {
1134 _isGPUFuncAccess = flag;
1135 }
1136
1137 bool
1139 {
1140 return _isGPUFuncAccess;
1141 }
1142};
1143
1144} // namespace gem5
1145
1146#endif // __MEM_REQUEST_HH__
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
Cycles is a wrapper class for representing cycle counts, i.e.
Definition types.hh:79
Wrapper that groups a few flag bits under the same undelying container.
Definition flags.hh:45
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition packet.hh:295
Tick _time
The time this request was started.
Definition request.hh:420
uint32_t streamId() const
Definition request.hh:934
bool isGLCSet() const
Accessor functions for the cache bypass flags.
Definition request.hh:1098
void setAccessLatency()
Set/Get the time taken to complete this request's access, not including the time to successfully tran...
Definition request.hh:991
Request(Addr paddr, unsigned size, Flags flags, RequestorID id)
Constructor for physical (e.g.
Definition request.hh:492
@ PT_WALK
The request is a page table walk.
Definition request.hh:188
@ SECURE
The request targets the secure memory space.
Definition request.hh:186
@ ATOMIC_RETURN_OP
The request is an atomic that returns data.
Definition request.hh:175
@ KERNEL
The request should be marked with KERNEL.
Definition request.hh:183
@ ACQUIRE
The request should be marked with ACQUIRE.
Definition request.hh:170
@ LOCKED_RMW
This request will lock or unlock the accessed memory.
Definition request.hh:154
@ INVALIDATE
The request invalidates a memory location.
Definition request.hh:191
@ STRICT_ORDER
The request is required to be strictly ordered by CPU models and is non-speculative.
Definition request.hh:135
@ ARCH_BITS
Architecture specific flags.
Definition request.hh:113
@ PHYSICAL
The virtual address is also the physical address.
Definition request.hh:117
@ CLEAN
The request cleans a memory location.
Definition request.hh:193
@ STICKY_FLAGS
These flags are not cleared when a Request object is reused (assigned a new address).
Definition request.hh:258
@ DST_POC
The request targets the point of coherence.
Definition request.hh:199
@ ATOMIC_NO_RETURN_OP
The request is an atomic that does not return data.
Definition request.hh:177
@ DST_BITS
Bits to define the destination of a request.
Definition request.hh:202
@ UNCACHEABLE
The request is to an uncacheable address.
Definition request.hh:125
@ PRIVILEGED
This request is made in privileged mode.
Definition request.hh:137
@ TLBI
The Request is a TLB shootdown.
Definition request.hh:241
@ HTM_COMMIT
The request commits a HTM transaction.
Definition request.hh:210
@ DST_POU
The request targets the point of unification.
Definition request.hh:196
@ HTM_ABORT
The request aborts a HTM transaction.
Definition request.hh:216
@ TLBI_EXT_SYNC
The Request tells the CPU model that a remote TLB Sync has been requested.
Definition request.hh:248
@ PF_EXCLUSIVE
The request should be prefetched into the exclusive state.
Definition request.hh:166
@ TLBI_EXT_SYNC_COMP
The Request tells the interconnect that a remote TLB Sync request has completed.
Definition request.hh:252
@ RELEASE
The request should be marked with RELEASE.
Definition request.hh:172
@ HTM_CANCEL
The request cancels a HTM transaction.
Definition request.hh:213
@ INST_FETCH
The request was an instruction fetch.
Definition request.hh:115
@ READ_MODIFY_WRITE
This request is a read which will be followed by a write.
Definition request.hh:161
@ MEM_SWAP
This request is for a memory swap.
Definition request.hh:158
@ PREFETCH
The request is a prefetch.
Definition request.hh:164
@ HAS_NO_ADDR
TLBI_EXT_SYNC_COMP seems to be the largest value of FlagsType, so HAS_NO_ADDR's value is that << 1.
Definition request.hh:261
@ TLBI_SYNC
The Request is a TLB shootdown sync.
Definition request.hh:244
@ NO_ACCESS
The request should not cause a memory access.
Definition request.hh:146
@ EVICT_NEXT
The request should be marked as LRU.
Definition request.hh:168
@ HTM_START
hardware transactional memory
Definition request.hh:207
@ LLSC
The request is a Load locked/store conditional.
Definition request.hh:156
@ CACHE_BLOCK_ZERO
This is a write that is targeted and zeroing an entire cache block.
Definition request.hh:143
uint64_t CacheCoherenceFlagsType
Definition request.hh:293
std::function< Cycles(ThreadContext *tc, Packet *pkt)> LocalAccessor
Definition request.hh:346
bool hasNoAddr() const
Definition request.hh:1023
void setPC(Addr pc)
Definition request.hh:954
static RequestPtr createMemManagement(Flags flags, RequestorID id)
Factory method for creating memory management requests, with unspecified addr and size.
Definition request.hh:538
bool isHTMCancel() const
Definition request.hh:1049
uint8_t ArchFlagsType
Definition request.hh:101
bool isKernel() const
Definition request.hh:1043
void setInstCount(Counter val)
Definition request.hh:666
uint32_t _streamId
The stream ID uniquely identifies a device behind the SMMU/IOMMU Each transaction arriving at the SMM...
Definition request.hh:432
void setCacheCoherenceFlags(CacheCoherenceFlags extraFlags)
Definition request.hh:825
bool isInstFetch() const
Definition request.hh:1022
bool isCondSwap() const
Definition request.hh:1034
Counter getInstCount() const
Definition request.hh:660
int depth
Level of the cache hierachy where this request was responded to (e.g.
Definition request.hh:687
AtomicOpFunctorPtr atomicOpFunctor
A pointer to an atomic operation.
Definition request.hh:466
RequestorID requestorId() const
Accesssor for the requestor id.
Definition request.hh:856
Tick time() const
Accessor for time.
Definition request.hh:734
bool isPTWalk() const
Definition request.hh:1041
bool isInvL2() const
Definition request.hh:1107
void setAtomicOpFunctor(AtomicOpFunctorPtr amo_op)
Definition request.hh:768
void setHtmAbortCause(HtmFailureFaultCause val)
Definition request.hh:791
bool isStrictlyOrdered() const
Definition request.hh:1021
@ funcRequestorId
This requestor id is used for functional requests that don't come from a particular device.
Definition request.hh:282
@ invldRequestorId
Invalid requestor id for assertion checking only.
Definition request.hh:289
@ wbRequestorId
This requestor id is used for writeback requests by the caches.
Definition request.hh:277
@ intRequestorId
This requestor id is used for message signaled interrupts.
Definition request.hh:284
ContextID _contextId
The context ID (for statistics, locks, and wakeups).
Definition request.hh:457
bool isSwap() const
Definition request.hh:1033
bool _isGPUFuncAccess
Definition request.hh:476
bool hasContextId() const
Definition request.hh:910
Flags getFlags()
Accessor for flags.
Definition request.hh:800
Tick getTranslateLatency() const
Definition request.hh:985
uint64_t FlagsType
Definition request.hh:100
bool isTlbiExtSyncComp() const
Definition request.hh:1061
void setExtraData(uint64_t extraData)
Accessor function for store conditional return value.
Definition request.hh:903
bool isSecure() const
Definition request.hh:1040
const std::vector< bool > & getByteEnable() const
Definition request.hh:706
HtmFailureFaultCause _htmAbortCause
The cause for HTM transaction abort.
Definition request.hh:474
bool isAcquire() const
Definition request.hh:1088
AtomicOpFunctor * getAtomicOpFunctor()
Definition request.hh:761
void setTranslateLatency()
Set/Get the time taken for this request to be successfully translated.
Definition request.hh:984
Cycles localAccessor(ThreadContext *tc, Packet *pkt)
Perform the installed local access.
Definition request.hh:746
Request(Addr vaddr, unsigned size, Flags flags, RequestorID id, Addr pc, ContextID cid, AtomicOpFunctorPtr atomic_op=nullptr)
Definition request.hh:501
bool isTlbiExtSync() const
Definition request.hh:1060
bool hasPaddr() const
Accessor for paddr.
Definition request.hh:639
bool isAtomicNoReturn() const
Definition request.hh:1045
gem5::Flags< PrivateFlagsType > PrivateFlags
Definition request.hh:350
void clearFlags(Flags flags)
Definition request.hh:818
bool hasHtmAbortCause() const
Accessor for hardware transactional memory abort cause.
Definition request.hh:778
static const FlagsType TLBI_CMD
Definition request.hh:269
bool isTlbiSync() const
Definition request.hh:1059
Addr _paddr
The physical address of the request.
Definition request.hh:389
bool isMemMgmt() const
Definition request.hh:1068
bool isAtomic() const
Definition request.hh:1071
bool isPrefetch() const
Definition request.hh:1025
bool isPrefetchEx() const
Definition request.hh:1029
bool hasVaddr() const
Accessor function for vaddr.
Definition request.hh:842
uint32_t _taskId
The task id associated with this request.
Definition request.hh:425
bool hasSize() const
Accessor for size.
Definition request.hh:693
bool isCacheClean() const
Accessor functions to determine whether this request is part of a cache maintenance operation.
Definition request.hh:1127
bool isHTMCmd() const
Definition request.hh:1052
uint64_t getExtraData() const
Accessor function for store conditional return value.
Definition request.hh:895
bool isHTMAbort() const
Definition request.hh:1050
RequestorID _requestorId
The requestor ID which is unique in the system for all ports that are capable of issuing a transactio...
Definition request.hh:404
uint32_t _substreamId
The substream ID identifies an "execution context" within a device behind an SMMU/IOMMU.
Definition request.hh:440
bool isInvL1() const
Accessor functions for the memory space configuration flags and used by GPU ISAs such as the Heteroge...
Definition request.hh:1106
bool hasAtomicOpFunctor()
Accessor for atomic-op functor.
Definition request.hh:755
void taskId(uint32_t id)
Definition request.hh:874
bool isCacheInvalidate() const
Definition request.hh:1128
void setLocalAccessor(LocalAccessor acc)
Set the function which will enact that access.
Definition request.hh:743
static const FlagsType HTM_CMD
Definition request.hh:266
bool hasSubstreamId() const
Definition request.hh:941
CacheCoherenceFlags _cacheCoherenceFlags
Flags that control how downstream cache system maintains coherence.
Definition request.hh:410
Addr _vaddr
The virtual address of the request.
Definition request.hh:449
bool isToPOU() const
Accessor functions for the destination of a memory request.
Definition request.hh:1084
LocalAccessor _localAccessor
Definition request.hh:468
void setByteEnable(const std::vector< bool > &be)
Definition request.hh:712
Tick getAccessLatency() const
Definition request.hh:992
Flags getDest() const
Definition request.hh:1086
uint32_t taskId() const
Definition request.hh:868
Request(const Request &other)
Definition request.hh:511
bool hasPC() const
Definition request.hh:961
bool isSLCSet() const
Definition request.hh:1099
@ I_CACHE_INV
mem_sync_op flags
Definition request.hh:326
@ CACHED
mtype flags
Definition request.hh:339
@ SLC_BIT
user-policy flags
Definition request.hh:335
void setFlags(Flags flags)
Note that unlike other accessors, this function sets specific flags (ORs them in); it does not assign...
Definition request.hh:811
std::vector< bool > _byteEnable
Byte-enable mask for writes.
Definition request.hh:399
bool isMasked() const
Returns true if the memory request is masked, which means there is at least one byteEnable element wh...
Definition request.hh:724
bool extraDataValid() const
Accessor function to check if sc result is valid.
Definition request.hh:888
bool isUncacheable() const
Accessor functions for flags.
Definition request.hh:1020
Request()
Minimal constructor.
Definition request.hh:485
bool hasInstSeqNum() const
Accessor for the sequence number of instruction that creates the request.
Definition request.hh:999
Addr getVaddr() const
Definition request.hh:848
bool _systemReq
For fullsystem GPU simulation, this determines if a requests destination is system (host) memory or d...
Definition request.hh:446
void clearCacheCoherenceFlags(CacheCoherenceFlags extraFlags)
Definition request.hh:833
bool isLockedRMW() const
Definition request.hh:1032
bool isLocalAccess()
Is this request for a local memory mapped resource/register?
Definition request.hh:741
int getAccessDepth() const
Definition request.hh:979
PrivateFlags privateFlags
Private flags for field validity checking.
Definition request.hh:413
bool isTlbiCmd() const
Definition request.hh:1063
bool isPriv() const
Definition request.hh:1031
bool systemReq() const
Definition request.hh:925
bool isHTMStart() const
Definition request.hh:1047
InstSeqNum getReqInstSeqNum() const
Definition request.hh:1005
void incAccessDepth() const
Increment/Get the depth at which this request is responded to.
Definition request.hh:978
void requestorId(RequestorID rid)
Definition request.hh:862
gem5::Flags< CacheCoherenceFlagsType > CacheCoherenceFlags
Definition request.hh:294
HtmFailureFaultCause getHtmAbortCause() const
Definition request.hh:784
Flags _flags
Flag structure for the request.
Definition request.hh:407
Addr getPaddr() const
Definition request.hh:645
bool isLLSC() const
Definition request.hh:1030
bool isToPOC() const
Definition request.hh:1085
bool isCacheMaintenance() const
Definition request.hh:1129
unsigned getSize() const
Definition request.hh:699
bool isReadModifyWrite() const
Definition request.hh:1036
void setPaddr(Addr paddr)
Set just the physical address.
Definition request.hh:604
ArchFlagsType getArchFlags() const
Accessor function for architecture-specific flags.
Definition request.hh:880
Counter _instCount
The instruction count at the time this request is created.
Definition request.hh:471
static const FlagsType STORE_NO_DATA
Definition request.hh:263
unsigned _size
The size of the request.
Definition request.hh:396
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:579
bool hasStreamId() const
Definition request.hh:928
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:454
void setContext(ContextID context_id)
Set up Context numbers.
Definition request.hh:553
Addr _pc
program counter of initiating access; for tracing/debugging
Definition request.hh:460
bool isAtomicReturn() const
Definition request.hh:1044
bool isHTMCommit() const
Definition request.hh:1048
Addr getPC() const
Accessor function for pc.
Definition request.hh:968
gem5::Flags< FlagsType > Flags
Definition request.hh:102
bool getGPUFuncAccess()
Definition request.hh:1138
void setGPUFuncAccess(bool flag)
Definition request.hh:1133
uint32_t substreamId() const
Definition request.hh:947
uint16_t PrivateFlagsType
Definition request.hh:349
void setStreamId(uint32_t sid)
Definition request.hh:560
@ VALID_PADDR
Whether or not paddr is valid (has been written yet).
Definition request.hh:357
@ VALID_SIZE
Whether or not the size is valid.
Definition request.hh:355
@ VALID_INST_COUNT
Whether or not the instruction count is valid.
Definition request.hh:375
@ VALID_INST_SEQ_NUM
Whether or not the instruction sequence number is valid.
Definition request.hh:361
@ VALID_CONTEXT_ID
Whether or not the context ID is valid.
Definition request.hh:365
@ VALID_STREAM_ID
Whether or not the stream ID and substream ID is valid.
Definition request.hh:369
@ VALID_HTM_ABORT_CAUSE
Whether or not the abort cause is valid.
Definition request.hh:373
@ VALID_PC
Whether or not the pc is valid.
Definition request.hh:363
@ STICKY_PRIVATE_FLAGS
These flags are not cleared when a Request object is reused (assigned a new address).
Definition request.hh:380
@ VALID_EXTRA_DATA
Whether or not the sc result is valid.
Definition request.hh:367
@ VALID_VADDR
Whether or not the vaddr is valid.
Definition request.hh:359
void setReqInstSeqNum(const InstSeqNum seq_num)
Definition request.hh:1012
bool hasInstCount() const
Accessor for instruction count.
Definition request.hh:655
Tick translateDelta
Time for the TLB/table walker to successfully translate this request.
Definition request.hh:675
InstSeqNum _reqInstSeqNum
Sequence number of the instruction that creates the request.
Definition request.hh:463
bool isRelease() const
Definition request.hh:1042
Tick accessDelta
Access latency to complete this memory transaction not including translation time.
Definition request.hh:681
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:617
bool isGL2CacheFlush() const
Definition request.hh:1110
ContextID contextId() const
Accessor function for context ID.
Definition request.hh:917
void setSubstreamId(uint32_t ssid)
Definition request.hh:567
void setSystemReq(bool sysReq)
Definition request.hh:924
bool isTlbi() const
Definition request.hh:1058
Static instruction class for unknown (illegal) instructions.
Definition unknown.hh:53
ThreadContext is the external interface to all thread state for anything outside of the CPU.
STL vector class.
Definition stl.hh:37
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
Definition amo.hh:269
void set(Type mask)
Set all flag's bits matching the given mask.
Definition flags.hh:116
bool isSet(Type mask) const
Verifies whether any bit matching the given mask is set.
Definition flags.hh:83
void clear()
Clear all flag's bits.
Definition flags.hh:102
uint8_t flags
Definition helpers.cc:87
Bitfield< 33 > id
Bitfield< 4 > pc
Bitfield< 15 > be
Bitfield< 63 > val
Definition misc.hh:804
double Counter
All counters are of 64-bit values.
Definition types.hh:46
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
std::shared_ptr< Request > RequestPtr
Definition request.hh:94
Tick curTick()
The universal simulation clock.
Definition cur_tick.hh:46
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
uint64_t Tick
Tick count type.
Definition types.hh:58
const Tick MaxTick
Definition types.hh:60
uint16_t RequestorID
Definition request.hh:95
int ContextID
Globally unique thread context ID.
Definition types.hh:239
const ContextID InvalidContextID
Definition types.hh:240
const Addr MaxAddr
Definition types.hh:171
HtmFailureFaultCause
Definition htm.hh:48
uint64_t InstSeqNum
Definition inst_seq.hh:40

Generated on Mon Jan 13 2025 04:28:40 for gem5 by doxygen 1.9.8