gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
isa.hh
Go to the documentation of this file.
1/*
2 * Copyright (c) 2010, 2012-2024 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) 2009 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 */
40
41#ifndef __ARCH_ARM_ISA_HH__
42#define __ARCH_ARM_ISA_HH__
43
45#include "arch/arm/mmu.hh"
46#include "arch/arm/pcstate.hh"
47#include "arch/arm/regs/int.hh"
48#include "arch/arm/regs/mat.hh"
49#include "arch/arm/regs/misc.hh"
50#include "arch/arm/regs/vec.hh"
52#include "arch/arm/system.hh"
53#include "arch/arm/types.hh"
54#include "arch/arm/utility.hh"
55#include "arch/generic/isa.hh"
56#include "base/random.hh"
57#include "debug/Checkpoint.hh"
58#include "enums/DecoderFlavor.hh"
59#include "sim/sim_object.hh"
60
61namespace gem5
62{
63
64struct ArmISAParams;
65struct DummyArmISADeviceParams;
66class Checkpoint;
67class EventManager;
68
69namespace ArmISA
70{
71 class ISA : public BaseISA
72 {
73 protected:
74 // Parent system
76
77 // Micro Architecture
78 const enums::DecoderFlavor _decoderFlavor;
79
82
83 // PMU belonging to this ISA
85
86 // Generic timer interface belonging to this ISA
87 std::unique_ptr<BaseISADevice> timer;
88
89 // GICv3 CPU interface belonging to this ISA
90 std::unique_ptr<BaseISADevice> gicv3CpuInterface;
91
92 // Cached copies of system-level properties
97
99 unsigned sveVL;
100
102 unsigned smeVL;
103
106
112
114
116
118 InitReg(uint32_t reg)
119 {
121 }
122
124
128
131
132 void
133 updateRegMap(CPSR cpsr)
134 {
135 if (cpsr.width == 0) {
137 } else {
138 switch (cpsr.mode) {
139 case MODE_USER:
140 case MODE_SYSTEM:
142 break;
143 case MODE_FIQ:
145 break;
146 case MODE_IRQ:
148 break;
149 case MODE_SVC:
151 break;
152 case MODE_MON:
154 break;
155 case MODE_ABORT:
157 break;
158 case MODE_HYP:
160 break;
161 case MODE_UNDEFINED:
163 break;
164 default:
165 panic("Unrecognized mode setting in CPSR.\n");
166 }
167 }
168 }
169
170 public:
171 const RegId &mapIntRegId(RegIndex idx) const { return intRegMap[idx]; }
172
173 public:
174 void clear() override;
175
176 protected:
179
180 public:
181 SelfDebug*
183 {
184 return selfDebug;
185 }
186
187 static SelfDebug*
189 {
190 auto *arm_isa = static_cast<ArmISA::ISA *>(tc->getIsaPtr());
191 return arm_isa->getSelfDebug();
192 }
193
194 const ArmRelease* getRelease() const { return release; }
195
196 RegVal readMiscRegNoEffect(RegIndex idx) const override;
197 RegVal readMiscReg(RegIndex idx) override;
198 void setMiscRegNoEffect(RegIndex idx, RegVal val) override;
199 void setMiscReg(RegIndex, RegVal val) override;
200
203
204 int
206 {
207 assert(reg >= 0);
208 int flat_idx = reg;
209
210 if (reg == MISCREG_SPSR) {
211 CPSR cpsr = miscRegs[MISCREG_CPSR];
212 switch (cpsr.mode) {
213 case MODE_EL0T:
214 warn("User mode does not have SPSR\n");
215 flat_idx = MISCREG_SPSR;
216 break;
217 case MODE_EL1T:
218 case MODE_EL1H:
219 flat_idx = MISCREG_SPSR_EL1;
220 break;
221 case MODE_EL2T:
222 case MODE_EL2H:
223 flat_idx = MISCREG_SPSR_EL2;
224 break;
225 case MODE_EL3T:
226 case MODE_EL3H:
227 flat_idx = MISCREG_SPSR_EL3;
228 break;
229 case MODE_USER:
230 warn("User mode does not have SPSR\n");
231 flat_idx = MISCREG_SPSR;
232 break;
233 case MODE_FIQ:
234 flat_idx = MISCREG_SPSR_FIQ;
235 break;
236 case MODE_IRQ:
237 flat_idx = MISCREG_SPSR_IRQ;
238 break;
239 case MODE_SVC:
240 flat_idx = MISCREG_SPSR_SVC;
241 break;
242 case MODE_MON:
243 flat_idx = MISCREG_SPSR_MON;
244 break;
245 case MODE_ABORT:
246 flat_idx = MISCREG_SPSR_ABT;
247 break;
248 case MODE_HYP:
249 flat_idx = MISCREG_SPSR_HYP;
250 break;
251 case MODE_UNDEFINED:
252 flat_idx = MISCREG_SPSR_UND;
253 break;
254 default:
255 warn("Trying to access SPSR in an invalid mode: %d\n",
256 cpsr.mode);
257 flat_idx = MISCREG_SPSR;
258 break;
259 }
260 } else if (lookUpMiscReg[reg].info[MISCREG_MUTEX]) {
261 // Mutually exclusive CP15 register
262 switch (reg) {
266 {
267 TTBCR ttbcr = readMiscRegNoEffect(MISCREG_TTBCR);
268 // If the muxed reg has been flattened, work out the
269 // offset and apply it to the unmuxed reg
270 int idxOffset = reg - MISCREG_PRRR_MAIR0;
271 if (ttbcr.eae)
273 idxOffset);
274 else
275 flat_idx = flattenMiscIndex(MISCREG_PRRR +
276 idxOffset);
277 }
278 break;
282 {
283 TTBCR ttbcr = readMiscRegNoEffect(MISCREG_TTBCR);
284 // If the muxed reg has been flattened, work out the
285 // offset and apply it to the unmuxed reg
286 int idxOffset = reg - MISCREG_NMRR_MAIR1;
287 if (ttbcr.eae)
289 idxOffset);
290 else
291 flat_idx = flattenMiscIndex(MISCREG_NMRR +
292 idxOffset);
293 }
294 break;
296 {
297 PMSELR pmselr = miscRegs[MISCREG_PMSELR];
298 if (pmselr.sel == 31)
300 else
302 }
303 break;
304 default:
305 panic("Unrecognized misc. register.\n");
306 break;
307 }
308 } else {
309 if (lookUpMiscReg[reg].info[MISCREG_BANKED]) {
310 bool secure_reg = !highestELIs64 && inSecureState();
311 flat_idx += secure_reg ? 2 : 1;
312 } else {
314 !inSecureState());
315 }
316 }
317 return flat_idx;
318 }
319
324 int redirectRegVHE(int misc_reg);
325
326 int
328 {
329 int reg_as_int = static_cast<int>(reg);
331 reg_as_int += (release->has(ArmExtension::SECURITY) && !ns) ?
332 2 : 1;
333 }
334 return reg_as_int;
335 }
336
338 getMiscIndices(int misc_reg) const
339 {
340 // Note: indexes of AArch64 registers are left unchanged
341 int flat_idx = flattenMiscIndex(misc_reg);
342
343 if (lookUpMiscReg[flat_idx].lower == 0) {
344 return std::make_pair(flat_idx, 0);
345 }
346
347 // do additional S/NS flattenings if mapped to NS while in S
348 bool S = !highestELIs64 && inSecureState();
349
350 int lower = lookUpMiscReg[flat_idx].lower;
351 int upper = lookUpMiscReg[flat_idx].upper;
352 // upper == 0, which is CPSR, is not MISCREG_BANKED_CHILD (no-op)
353 lower += S && lookUpMiscReg[lower].info[MISCREG_BANKED_CHILD];
354 upper += S && lookUpMiscReg[upper].info[MISCREG_BANKED_CHILD];
355 return std::make_pair(lower, upper);
356 }
357
359 bool inSecureState() const;
360
364 ExceptionLevel currEL() const;
365
366 unsigned getCurSveVecLenInBits() const;
367
368 unsigned getCurSveVecLenInBitsAtReset() const { return sveVL * 128; }
369
370 unsigned getCurSmeVecLenInBits() const;
371
372 unsigned getCurSmeVecLenInBitsAtReset() const { return smeVL * 128; }
373
374 template <typename Elem>
375 static void
376 zeroSveVecRegUpperPart(Elem *v, unsigned eCount)
377 {
378 static_assert(sizeof(Elem) <= sizeof(uint64_t),
379 "Elem type is too large.");
380 eCount *= (sizeof(uint64_t) / sizeof(Elem));
381 for (int i = 16 / sizeof(Elem); i < eCount; ++i) {
382 v[i] = 0;
383 }
384 }
385
386 void serialize(CheckpointOut &cp) const override;
387 void unserialize(CheckpointIn &cp) override;
388
389 void startup() override;
390
391 void setupThreadContext();
392
394 newPCState(Addr new_inst_addr=0) const override
395 {
396 return new PCState(new_inst_addr);
397 }
398
399 void takeOverFrom(ThreadContext *new_tc,
400 ThreadContext *old_tc) override;
401
402 enums::DecoderFlavor decoderFlavor() const { return _decoderFlavor; }
403
404 PARAMS(ArmISA);
405
406 ISA(const Params &p);
407
408 uint64_t
409 getExecutingAsid() const override
410 {
412 }
413
414 bool
415 inUserMode() const override
416 {
417 CPSR cpsr = miscRegs[MISCREG_CPSR];
418 return ArmISA::inUserMode(cpsr);
419 }
420
421 void copyRegsFrom(ThreadContext *src) override;
422
423 void handleLockedRead(const RequestPtr &req) override;
424 void handleLockedRead(ExecContext *xc, const RequestPtr &req) override;
425
426 bool handleLockedWrite(const RequestPtr &req,
427 Addr cacheBlockMask) override;
428 bool handleLockedWrite(ExecContext *xc, const RequestPtr &req,
429 Addr cacheBlockMask) override;
430
431 void handleLockedSnoop(PacketPtr pkt, Addr cacheBlockMask) override;
433 Addr cacheBlockMask) override;
434 void handleLockedSnoopHit() override;
435 void handleLockedSnoopHit(ExecContext *xc) override;
436
437 void globalClearExclusive() override;
438 void globalClearExclusive(ExecContext *xc) override;
439
440 int64_t getVectorLengthInBytes() const override { return sveVL * 16; }
441 };
442
443} // namespace ArmISA
444} // namespace gem5
445
446#endif
Base class for devices that use the MiscReg interfaces.
Definition isa_device.hh:62
Dummy device that prints a warning when it is accessed.
Definition isa_device.hh:98
bool inSecureState() const
Return true if the PE is in Secure state.
Definition isa.cc:1397
const RegId & mapIntRegId(RegIndex idx) const
Definition isa.hh:171
void setMiscRegReset(RegIndex, RegVal val)
Definition isa.cc:1344
unsigned getCurSveVecLenInBits() const
Definition isa.cc:1429
static SelfDebug * getSelfDebug(ThreadContext *tc)
Definition isa.hh:188
ExceptionLevel currEL() const
Returns the current Exception Level (EL) of the ISA object.
Definition isa.cc:1421
void takeOverFrom(ThreadContext *new_tc, ThreadContext *old_tc) override
Definition isa.cc:184
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition isa.cc:1530
void copyRegsFrom(ThreadContext *src) override
Definition isa.cc:191
unsigned getCurSveVecLenInBitsAtReset() const
Definition isa.hh:368
const enums::DecoderFlavor _decoderFlavor
Definition isa.hh:78
Random::RandomPtr rng
Definition isa.hh:115
DummyISADevice dummyDevice
Dummy device for to handle non-existing ISA devices.
Definition isa.hh:81
RegVal readMiscRegReset(RegIndex) const
Definition isa.cc:1337
void setupThreadContext()
Definition isa.cc:168
void setMiscRegNoEffect(RegIndex idx, RegVal val) override
Definition isa.cc:664
uint8_t physAddrRange
Definition isa.hh:96
int snsBankedIndex64(MiscRegIndex reg, bool ns) const
Definition isa.hh:327
bool haveLargeAsid64
Definition isa.hh:95
void handleLockedSnoop(PacketPtr pkt, Addr cacheBlockMask) override
Definition isa.cc:1658
void clear() override
Definition isa.cc:138
int flattenMiscIndex(int reg) const
Definition isa.hh:205
std::pair< int, int > getMiscIndices(int misc_reg) const
Definition isa.hh:338
PCStateBase * newPCState(Addr new_inst_addr=0) const override
Definition isa.hh:394
RegVal miscRegs[NUM_MISCREGS]
Definition isa.hh:129
unsigned smeVL
SME vector length in quadwords.
Definition isa.hh:102
BaseISADevice * pmu
Definition isa.hh:84
static void zeroSveVecRegUpperPart(Elem *v, unsigned eCount)
Definition isa.hh:376
std::unique_ptr< BaseISADevice > timer
Definition isa.hh:87
bool handleLockedWrite(const RequestPtr &req, Addr cacheBlockMask) override
Definition isa.cc:1747
SelfDebug * selfDebug
Definition isa.hh:113
uint64_t getExecutingAsid() const override
Definition isa.hh:409
int64_t getVectorLengthInBytes() const override
This function returns the vector length of the Vector Length Agnostic extension of the ISA.
Definition isa.hh:440
void globalClearExclusive() override
Definition isa.cc:1760
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition isa.cc:1539
void updateRegMap(CPSR cpsr)
Definition isa.hh:133
void startup() override
startup() is the final initialization call before simulation.
Definition isa.cc:153
int redirectRegVHE(int misc_reg)
Returns the enconcing equivalent when VHE is implemented and HCR_EL2.E2H is enabled and executing at ...
Definition isa.cc:233
BaseISADevice & getGICv3CPUInterface()
Definition isa.cc:1372
ArmSystem * system
Definition isa.hh:75
BaseISADevice & getGenericTimer()
Definition isa.cc:1351
RegVal readMiscRegNoEffect(RegIndex idx) const override
Definition isa.cc:389
const ArmRelease * getRelease() const
Definition isa.hh:194
bool impdefAsNop
If true, accesses to IMPLEMENTATION DEFINED registers are treated as NOP hence not causing UNDEFINED ...
Definition isa.hh:111
void setMiscReg(RegIndex, RegVal val) override
Definition isa.cc:686
unsigned sveVL
SVE vector length in quadwords.
Definition isa.hh:99
const MiscRegLUTEntryInitializer InitReg(uint32_t reg)
Definition isa.hh:118
void handleLockedRead(const RequestPtr &req) override
Definition isa.cc:1670
const RegId * intRegMap
Definition isa.hh:130
enums::DecoderFlavor decoderFlavor() const
Definition isa.hh:402
void addressTranslation(MMU::ArmTranslationType tran_type, BaseMMU::Mode mode, Request::Flags flags, RegVal val)
Definition isa.cc:1560
void initializeMiscRegMetadata()
Definition misc.cc:3057
const ArmRelease * release
This could be either a FS or a SE release.
Definition isa.hh:105
bool highestELIs64
Definition isa.hh:93
RegVal readMiscReg(RegIndex idx) override
Definition isa.cc:413
void handleLockedSnoopHit() override
Definition isa.cc:1688
SelfDebug * getSelfDebug() const
Definition isa.hh:182
unsigned getCurSmeVecLenInBitsAtReset() const
Definition isa.hh:372
std::unique_ptr< BaseISADevice > gicv3CpuInterface
Definition isa.hh:90
ExceptionLevel highestEL
Definition isa.hh:94
bool inUserMode() const override
Definition isa.hh:415
unsigned getCurSmeVecLenInBits() const
Definition isa.cc:1480
Metadata table accessible via the value of the register.
Definition misc.hh:1325
bool has(ArmExtension ext) const
Definition system.hh:76
ThreadContext * tc
Definition isa.hh:68
The ExecContext is an abstract base class the provides the interface used by the ISA to manipulate th...
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition packet.hh:295
std::shared_ptr< Random > RandomPtr
Definition random.hh:65
static RandomPtr genRandom()
Definition random.hh:68
Register ID: describe an architectural register with its class and index.
Definition reg_class.hh:94
SimObjectParams Params
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual BaseISA * getIsaPtr() const =0
STL pair class.
Definition stl.hh:58
#define panic(...)
This implements a cprintf based panic() function.
Definition logging.hh:188
uint8_t flags
Definition helpers.cc:87
#define warn(...)
Definition logging.hh:256
const RegMap RegIrqMap
Definition int.hh:535
const RegMap RegUsrMap
Definition int.hh:451
const RegMap RegSvcMap
Definition int.hh:479
const RegMap RegFiqMap
Definition int.hh:549
const RegMap RegAbtMap
Definition int.hh:507
const RegMap RegMonMap
Definition int.hh:493
const RegMap Reg64Map
Definition int.hh:437
const RegMap RegUndMap
Definition int.hh:521
const RegMap RegHypMap
Definition int.hh:465
Bitfield< 28 > v
Definition misc_types.hh:54
@ MODE_UNDEFINED
Definition types.hh:332
Bitfield< 4, 0 > mode
Definition misc_types.hh:74
Bitfield< 7 > i
Definition misc_types.hh:67
Bitfield< 0 > ns
@ MISCREG_PRRR_MAIR0
Definition misc.hh:102
@ MISCREG_NMRR_MAIR1_S
Definition misc.hh:107
@ MISCREG_SPSR_HYP
Definition misc.hh:86
@ MISCREG_SPSR_EL2
Definition misc.hh:663
@ MISCREG_TTBCR
Definition misc.hh:278
@ MISCREG_SPSR_SVC
Definition misc.hh:83
@ MISCREG_PMXEVTYPER
Definition misc.hh:378
@ MISCREG_SPSR_UND
Definition misc.hh:87
@ MISCREG_SPSR_IRQ
Definition misc.hh:82
@ MISCREG_SPSR_ABT
Definition misc.hh:85
@ MISCREG_PRRR
Definition misc.hh:399
@ MISCREG_NMRR_MAIR1
Definition misc.hh:105
@ MISCREG_CPSR
Definition misc.hh:79
@ MISCREG_NMRR
Definition misc.hh:405
@ MISCREG_MAIR1
Definition misc.hh:408
@ MISCREG_PMCCFILTR
Definition misc.hh:391
@ MISCREG_CONTEXTIDR
Definition misc.hh:429
@ MISCREG_SPSR_EL3
Definition misc.hh:670
@ MISCREG_SPSR_EL1
Definition misc.hh:650
@ MISCREG_PMSELR
Definition misc.hh:374
@ MISCREG_SPSR_MON
Definition misc.hh:84
@ MISCREG_PRRR_MAIR0_S
Definition misc.hh:104
@ MISCREG_NMRR_MAIR1_NS
Definition misc.hh:106
@ MISCREG_PRRR_MAIR0_NS
Definition misc.hh:103
@ MISCREG_SPSR
Definition misc.hh:80
@ MISCREG_PMXEVTYPER_PMCCFILTR
Definition misc.hh:108
@ MISCREG_SPSR_FIQ
Definition misc.hh:81
@ MISCREG_MAIR0
Definition misc.hh:402
static bool inUserMode(CPSR cpsr)
Definition utility.hh:97
@ MISCREG_MUTEX
Definition misc.hh:1235
@ MISCREG_BANKED_CHILD
Definition misc.hh:1243
@ MISCREG_BANKED
Definition misc.hh:1237
@ MISCREG_BANKED64
Definition misc.hh:1240
std::vector< struct MiscRegLUTEntry > lookUpMiscReg(NUM_MISCREGS)
Definition misc.hh:1719
Bitfield< 0 > p
Bitfield< 5, 3 > reg
Definition types.hh:92
Bitfield< 63 > val
Definition misc.hh:804
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
std::shared_ptr< Request > RequestPtr
Definition request.hh:94
uint16_t RegIndex
Definition types.hh:176
std::ostream CheckpointOut
Definition serialize.hh:66
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
uint64_t RegVal
Definition types.hh:173

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