gem5  v20.0.0.3
intregs.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2014 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 #include <cassert>
42 
43 #ifndef __ARCH_ARM_INTREGS_HH__
44 #define __ARCH_ARM_INTREGS_HH__
45 
46 #include "arch/arm/types.hh"
47 
48 namespace ArmISA
49 {
50 
52 {
53  /* All the unique register indices. */
73 
78 
83 
86 
91 
96 
101 
111 
116  INTREG_DUMMY, // Dummy reg used to throw away int reg results
117 
122 
125 
126  /* AArch64 registers */
159 
161 
162  /* All the aliased indexes. */
163 
164  /* USR mode */
184 
185  /* SVC mode */
201 
202  /* MON mode */
218 
219  /* ABT mode */
235 
236  /* HYP mode */
254 
255  /* UND mode */
271 
272  /* IRQ mode */
288 
289  /* FIQ mode */
300 };
301 
303 
304 const IntRegMap IntReg64Map = {
313 };
314 
315 const IntRegMap IntRegUsrMap = {
323  INTREG_ZERO, INTREG_ZERO, INTREG_ZERO, INTREG_ZERO
324 };
325 
326 static inline IntRegIndex
327 INTREG_USR(unsigned index)
328 {
329  assert(index < NUM_ARCH_INTREGS);
330  return IntRegUsrMap[index];
331 }
332 
333 const IntRegMap IntRegHypMap = {
341  INTREG_ZERO, INTREG_ZERO, INTREG_ZERO, INTREG_ZERO
342 };
343 
344 static inline IntRegIndex
345 INTREG_HYP(unsigned index)
346 {
347  assert(index < NUM_ARCH_INTREGS);
348  return IntRegHypMap[index];
349 }
350 
351 const IntRegMap IntRegSvcMap = {
359  INTREG_ZERO, INTREG_ZERO, INTREG_ZERO, INTREG_ZERO
360 };
361 
362 static inline IntRegIndex
363 INTREG_SVC(unsigned index)
364 {
365  assert(index < NUM_ARCH_INTREGS);
366  return IntRegSvcMap[index];
367 }
368 
369 const IntRegMap IntRegMonMap = {
377  INTREG_ZERO, INTREG_ZERO, INTREG_ZERO, INTREG_ZERO
378 };
379 
380 static inline IntRegIndex
381 INTREG_MON(unsigned index)
382 {
383  assert(index < NUM_ARCH_INTREGS);
384  return IntRegMonMap[index];
385 }
386 
387 const IntRegMap IntRegAbtMap = {
395  INTREG_ZERO, INTREG_ZERO, INTREG_ZERO, INTREG_ZERO
396 };
397 
398 static inline IntRegIndex
399 INTREG_ABT(unsigned index)
400 {
401  assert(index < NUM_ARCH_INTREGS);
402  return IntRegAbtMap[index];
403 }
404 
405 const IntRegMap IntRegUndMap = {
413  INTREG_ZERO, INTREG_ZERO, INTREG_ZERO, INTREG_ZERO
414 };
415 
416 static inline IntRegIndex
417 INTREG_UND(unsigned index)
418 {
419  assert(index < NUM_ARCH_INTREGS);
420  return IntRegUndMap[index];
421 }
422 
423 const IntRegMap IntRegIrqMap = {
431  INTREG_ZERO, INTREG_ZERO, INTREG_ZERO, INTREG_ZERO
432 };
433 
434 static inline IntRegIndex
435 INTREG_IRQ(unsigned index)
436 {
437  assert(index < NUM_ARCH_INTREGS);
438  return IntRegIrqMap[index];
439 }
440 
441 const IntRegMap IntRegFiqMap = {
449  INTREG_ZERO, INTREG_ZERO, INTREG_ZERO, INTREG_ZERO
450 };
451 
452 static inline IntRegIndex
453 INTREG_FIQ(unsigned index)
454 {
455  assert(index < NUM_ARCH_INTREGS);
456  return IntRegFiqMap[index];
457 }
458 
459 static const unsigned intRegsPerMode = NUM_INTREGS;
460 
461 static inline int
463 {
464  assert(reg < NUM_ARCH_INTREGS);
465  return mode * intRegsPerMode + reg;
466 }
467 
468 static inline int
470 {
471  int mode = reg / intRegsPerMode;
472  reg = reg % intRegsPerMode;
473  switch (mode) {
474  case MODE_USER:
475  case MODE_SYSTEM:
476  return INTREG_USR(reg);
477  case MODE_FIQ:
478  return INTREG_FIQ(reg);
479  case MODE_IRQ:
480  return INTREG_IRQ(reg);
481  case MODE_SVC:
482  return INTREG_SVC(reg);
483  case MODE_MON:
484  return INTREG_MON(reg);
485  case MODE_ABORT:
486  return INTREG_ABT(reg);
487  case MODE_HYP:
488  return INTREG_HYP(reg);
489  case MODE_UNDEFINED:
490  return INTREG_UND(reg);
491  default:
492  panic("%d: Flattening into an unknown mode: reg:%#x mode:%#x\n",
493  curTick(), reg, mode);
494  }
495 }
496 
497 
498 static inline IntRegIndex
500 {
501  if (reg == INTREG_X31)
502  reg = INTREG_SPX;
503  return reg;
504 }
505 
506 static inline IntRegIndex
508 {
509  if (reg == INTREG_X31)
510  reg = INTREG_ZERO;
511  return reg;
512 }
513 
514 static inline bool
516 {
517  return reg == INTREG_SPX;
518 }
519 
520 }
521 
522 #endif
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
const IntRegMap IntRegSvcMap
Definition: intregs.hh:351
static IntRegIndex makeSP(IntRegIndex reg)
Definition: intregs.hh:499
Bitfield< 30, 0 > index
static IntRegIndex INTREG_USR(unsigned index)
Definition: intregs.hh:327
Bitfield< 5, 3 > reg
Definition: types.hh:87
static IntRegIndex INTREG_SVC(unsigned index)
Definition: intregs.hh:363
IntRegIndex
Definition: intregs.hh:51
static IntRegIndex INTREG_IRQ(unsigned index)
Definition: intregs.hh:435
static IntRegIndex makeZero(IntRegIndex reg)
Definition: intregs.hh:507
const IntRegMap IntReg64Map
Definition: intregs.hh:304
OperatingMode
Definition: types.hh:590
Definition: ccregs.hh:41
static const unsigned intRegsPerMode
Definition: intregs.hh:459
Bitfield< 4, 0 > mode
const IntRegMap IntRegHypMap
Definition: intregs.hh:333
const IntRegMap IntRegFiqMap
Definition: intregs.hh:441
Tick curTick()
The current simulated tick.
Definition: core.hh:44
static IntRegIndex INTREG_MON(unsigned index)
Definition: intregs.hh:381
IntRegIndex IntRegMap[NUM_ARCH_INTREGS]
Definition: intregs.hh:302
const IntRegMap IntRegUndMap
Definition: intregs.hh:405
const IntRegMap IntRegAbtMap
Definition: intregs.hh:387
static IntRegIndex INTREG_UND(unsigned index)
Definition: intregs.hh:417
static int flattenIntRegModeIndex(int reg)
Definition: intregs.hh:469
static IntRegIndex INTREG_FIQ(unsigned index)
Definition: intregs.hh:453
const IntRegMap IntRegUsrMap
Definition: intregs.hh:315
static IntRegIndex INTREG_ABT(unsigned index)
Definition: intregs.hh:399
const IntRegMap IntRegMonMap
Definition: intregs.hh:369
static IntRegIndex INTREG_HYP(unsigned index)
Definition: intregs.hh:345
static bool isSP(IntRegIndex reg)
Definition: intregs.hh:515
const IntRegMap IntRegIrqMap
Definition: intregs.hh:423
static int intRegInMode(OperatingMode mode, int reg)
Definition: intregs.hh:462

Generated on Fri Jul 3 2020 15:42:39 for gem5 by doxygen 1.8.13