gem5
v20.0.0.2
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
+
Enumerations
a
b
c
d
e
f
i
l
m
o
p
r
s
t
v
x
+
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
w
+
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
+
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
+
Enumerations
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
v
w
+
Enumerator
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
arch
arm
isa_traits.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2010, 2012 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) 2003-2005 The Regents of The University of Michigan
15
* Copyright (c) 2007-2008 The Florida State University
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
42
#ifndef __ARCH_ARM_ISA_TRAITS_HH__
43
#define __ARCH_ARM_ISA_TRAITS_HH__
44
45
#include "
arch/arm/types.hh
"
46
#include "
base/types.hh
"
47
#include "
cpu/static_inst_fwd.hh
"
48
49
namespace
ArmISA
50
{
51
const
ByteOrder
GuestByteOrder
=
LittleEndianByteOrder
;
52
53
StaticInstPtr
decodeInst
(
ExtMachInst
);
54
55
const
Addr
PageShift
= 12;
56
const
Addr
PageBytes
=
ULL
(1) <<
PageShift
;
57
const
Addr
Page_Mask
= ~(PageBytes - 1);
58
const
Addr
PageOffset
= PageBytes - 1;
59
60
62
//
63
// Translation stuff
64
//
65
66
const
Addr
PteShift
= 3;
67
const
Addr
NPtePageShift
= PageShift -
PteShift
;
68
const
Addr
NPtePage
=
ULL
(1) <<
NPtePageShift
;
69
const
Addr
PteMask
= NPtePage - 1;
70
74
// User Segment - Mapped
75
const
Addr
USegBase
=
ULL
(0x0);
76
const
Addr
USegEnd
=
ULL
(0x7FFFFFFF);
77
78
const
unsigned
VABits
= 32;
79
const
unsigned
PABits
= 32;
// Is this correct?
80
const
Addr
VAddrImplMask
= (
ULL
(1) <<
VABits
) - 1;
81
const
Addr
VAddrUnImplMask
= ~VAddrImplMask;
82
inline
Addr
VAddrImpl
(
Addr
a
) {
return
a &
VAddrImplMask
; }
83
inline
Addr
VAddrVPN
(
Addr
a
) {
return
a >>
ArmISA::PageShift
; }
84
inline
Addr
VAddrOffset
(
Addr
a
) {
return
a &
ArmISA::PageOffset
; }
85
86
const
Addr
PAddrImplMask
= (
ULL
(1) <<
PABits
) - 1;
87
88
// Max. physical address range in bits supported by the architecture
89
const
unsigned
MaxPhysAddrRange
= 48;
90
91
const
int
MachineBytes
= 4;
92
93
const
uint32_t
HighVecs
= 0xFFFF0000;
94
95
// Memory accesses cannot be unaligned
96
const
bool
HasUnalignedMemAcc
=
true
;
97
98
const
bool
CurThreadInfoImplemented
=
false
;
99
const
int
CurThreadInfoReg
= -1;
100
101
enum
InterruptTypes
102
{
103
INT_RST
,
104
INT_ABT
,
105
INT_IRQ
,
106
INT_FIQ
,
107
INT_SEV
,
// Special interrupt for recieving SEV's
108
INT_VIRT_IRQ
,
109
INT_VIRT_FIQ
,
110
NumInterruptTypes
111
};
112
}
// namespace ArmISA
113
114
using namespace
ArmISA
;
115
116
#endif // __ARCH_ARM_ISA_TRAITS_HH__
ArmISA::VAddrVPN
Addr VAddrVPN(Addr a)
Definition:
isa_traits.hh:83
ArmISA::INT_VIRT_IRQ
Definition:
isa_traits.hh:108
ArmISA::CurThreadInfoImplemented
const bool CurThreadInfoImplemented
Definition:
isa_traits.hh:98
ArmISA::INT_ABT
Definition:
isa_traits.hh:104
ArmISA::VABits
const unsigned VABits
Definition:
isa_traits.hh:78
ArmISA::PageShift
const Addr PageShift
Definition:
isa_traits.hh:55
static_inst_fwd.hh
MipsISA::ExtMachInst
uint64_t ExtMachInst
Definition:
types.hh:39
ArmISA::a
Bitfield< 8 > a
Definition:
miscregs_types.hh:62
ArmISA::USegEnd
const Addr USegEnd
Definition:
isa_traits.hh:76
ArmISA::decodeInst
StaticInstPtr decodeInst(ExtMachInst)
ArmISA
Definition:
ccregs.hh:41
types.hh
ArmISA::CurThreadInfoReg
const int CurThreadInfoReg
Definition:
isa_traits.hh:99
ArmISA::InterruptTypes
InterruptTypes
Definition:
isa_traits.hh:101
RefCountingPtr< StaticInst >
ArmISA::PteShift
const Addr PteShift
Definition:
isa_traits.hh:66
ArmISA::PageOffset
const Addr PageOffset
Definition:
isa_traits.hh:58
ArmISA::USegBase
const Addr USegBase
Definition:
isa_traits.hh:75
ArmISA::Page_Mask
const Addr Page_Mask
Definition:
isa_traits.hh:57
ArmISA::INT_IRQ
Definition:
isa_traits.hh:105
ArmISA::PAddrImplMask
const Addr PAddrImplMask
Definition:
isa_traits.hh:86
ArmISA::INT_SEV
Definition:
isa_traits.hh:107
ArmISA::VAddrImpl
Addr VAddrImpl(Addr a)
Definition:
isa_traits.hh:82
ArmISA::VAddrImplMask
const Addr VAddrImplMask
Definition:
isa_traits.hh:80
ArmISA::PteMask
const Addr PteMask
Definition:
isa_traits.hh:69
ArmISA::NumInterruptTypes
Definition:
isa_traits.hh:110
ByteOrder
ByteOrder
Definition:
types.hh:245
ArmISA::VAddrOffset
Addr VAddrOffset(Addr a)
Definition:
isa_traits.hh:84
types.hh
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:140
ArmISA::NPtePageShift
const Addr NPtePageShift
Definition:
isa_traits.hh:67
ULL
#define ULL(N)
uint64_t constant
Definition:
types.hh:48
ArmISA::INT_FIQ
Definition:
isa_traits.hh:106
ArmISA::NPtePage
const Addr NPtePage
Definition:
isa_traits.hh:68
ArmISA::HasUnalignedMemAcc
const bool HasUnalignedMemAcc
Definition:
isa_traits.hh:96
ArmISA::MaxPhysAddrRange
const unsigned MaxPhysAddrRange
Definition:
isa_traits.hh:89
ArmISA::PABits
const unsigned PABits
Definition:
isa_traits.hh:79
LittleEndianByteOrder
Definition:
types.hh:247
ArmISA::HighVecs
const uint32_t HighVecs
Definition:
isa_traits.hh:93
ArmISA::PageBytes
const Addr PageBytes
Definition:
isa_traits.hh:56
ArmISA::INT_RST
Definition:
isa_traits.hh:103
ArmISA::VAddrUnImplMask
const Addr VAddrUnImplMask
Definition:
isa_traits.hh:81
ArmISA::GuestByteOrder
const ByteOrder GuestByteOrder
Definition:
isa_traits.hh:51
ArmISA::MachineBytes
const int MachineBytes
Definition:
isa_traits.hh:91
ArmISA::INT_VIRT_FIQ
Definition:
isa_traits.hh:109
Generated on Mon Jun 8 2020 15:34:39 for gem5 by
doxygen
1.8.13