gem5
v21.2.0.0
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
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
l
m
n
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
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
n
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
s
t
v
Variables
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
v
w
Typedefs
a
b
c
d
h
i
l
m
r
s
t
u
w
Enumerations
b
h
i
o
p
Enumerator
h
i
o
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
regs
vec.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2010-2011, 2014, 2016-2019 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) 2007-2008 The Florida State University
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_REGS_VEC_HH__
42
#define __ARCH_ARM_REGS_VEC_HH__
43
44
#include "
arch/arm/types.hh
"
45
#include "
arch/generic/vec_pred_reg.hh
"
46
#include "
arch/generic/vec_reg.hh
"
47
48
namespace
gem5
49
{
50
51
namespace
ArmISA
52
{
53
54
// Number of VecElem per Vector Register considering only pre-SVE
55
// Advanced SIMD registers.
56
constexpr
unsigned
NumVecElemPerNeonVecReg
= 4;
57
// Number of VecElem per Vector Register, computed based on the vector length
58
constexpr
unsigned
NumVecElemPerVecReg
=
MaxSveVecLenInWords
;
59
60
using
VecElem
= uint32_t;
61
using
VecRegContainer
=
62
gem5::VecRegContainer
<
NumVecElemPerVecReg
*
sizeof
(
VecElem
)>;
63
64
using
VecPredReg
=
65
gem5::VecPredRegT<VecElem, NumVecElemPerVecReg, false, false>
;
66
using
ConstVecPredReg
=
67
gem5::VecPredRegT<VecElem, NumVecElemPerVecReg, false, true>
;
68
using
VecPredRegContainer
=
VecPredReg::Container
;
69
70
// Vec, PredVec
71
// NumFloatV7ArchRegs: This in theory should be 32.
72
// However in A32 gem5 is splitting double register accesses in two
73
// subsequent single register ones. This means we would use a index
74
// bigger than 31 when accessing D16-D31.
75
const
int
NumFloatV7ArchRegs
= 64;
// S0-S31, D0-D31
76
const
int
NumVecV7ArchRegs
= 16;
// Q0-Q15
77
const
int
NumVecV8ArchRegs
= 32;
// V0-V31
78
const
int
NumVecSpecialRegs
= 8;
79
const
int
NumVecIntrlvRegs
= 4;
80
const
int
NumVecRegs
=
NumVecV8ArchRegs
+
NumVecSpecialRegs
+
NumVecIntrlvRegs
;
81
const
int
NumVecPredRegs
= 18;
// P0-P15, FFR, UREG0
82
83
// Vec, PredVec indices
84
const
int
VecSpecialElem
=
NumVecV8ArchRegs
*
NumVecElemPerNeonVecReg
;
85
const
int
INTRLVREG0
=
NumVecV8ArchRegs
+
NumVecSpecialRegs
;
86
const
int
INTRLVREG1
=
INTRLVREG0
+ 1;
87
const
int
INTRLVREG2
=
INTRLVREG0
+ 2;
88
const
int
INTRLVREG3
=
INTRLVREG0
+ 3;
89
const
int
VECREG_UREG0
= 32;
90
const
int
PREDREG_FFR
= 16;
91
const
int
PREDREG_UREG0
= 17;
92
93
}
// namespace ArmISA
94
}
// namespace gem5
95
96
#endif
gem5::ArmISA::NumVecElemPerVecReg
constexpr unsigned NumVecElemPerVecReg
Definition:
vec.hh:58
gem5::ArmISA::NumVecElemPerNeonVecReg
constexpr unsigned NumVecElemPerNeonVecReg
Definition:
vec.hh:56
gem5::ArmISA::VecPredRegContainer
VecPredReg::Container VecPredRegContainer
Definition:
vec.hh:68
gem5::ArmISA::NumVecRegs
const int NumVecRegs
Definition:
vec.hh:80
gem5::ArmISA::INTRLVREG2
const int INTRLVREG2
Definition:
vec.hh:87
gem5::ArmISA::MaxSveVecLenInWords
constexpr unsigned MaxSveVecLenInWords
Definition:
types.hh:462
gem5::ArmISA::NumFloatV7ArchRegs
const int NumFloatV7ArchRegs
Definition:
vec.hh:75
types.hh
gem5::ArmISA::VECREG_UREG0
const int VECREG_UREG0
Definition:
vec.hh:89
gem5::ArmISA::PREDREG_FFR
const int PREDREG_FFR
Definition:
vec.hh:90
gem5::ArmISA::NumVecV7ArchRegs
const int NumVecV7ArchRegs
Definition:
vec.hh:76
gem5::ArmISA::NumVecPredRegs
const int NumVecPredRegs
Definition:
vec.hh:81
gem5::VecRegContainer
Vector Register Abstraction This generic class is the model in a particularization of MVC,...
Definition:
vec_reg.hh:121
gem5::ArmISA::INTRLVREG1
const int INTRLVREG1
Definition:
vec.hh:86
gem5::VecPredRegT
Predicate register view.
Definition:
vec_pred_reg.hh:72
vec_pred_reg.hh
gem5::VecPredRegT::Container
typename std::conditional_t< Const, const VecPredRegContainer< NUM_BITS, Packed >, VecPredRegContainer< NUM_BITS, Packed > > Container
Container type alias.
Definition:
vec_pred_reg.hh:84
gem5::ArmISA::VecSpecialElem
const int VecSpecialElem
Definition:
vec.hh:84
gem5::ArmISA::PREDREG_UREG0
const int PREDREG_UREG0
Definition:
vec.hh:91
vec_reg.hh
gem5::ArmISA::NumVecIntrlvRegs
const int NumVecIntrlvRegs
Definition:
vec.hh:79
gem5::ArmISA::INTRLVREG0
const int INTRLVREG0
Definition:
vec.hh:85
gem5::ArmISA::VecElem
uint32_t VecElem
Definition:
vec.hh:60
gem5::ArmISA::NumVecV8ArchRegs
const int NumVecV8ArchRegs
Definition:
vec.hh:77
gem5::ArmISA::INTRLVREG3
const int INTRLVREG3
Definition:
vec.hh:88
gem5::ArmISA::NumVecSpecialRegs
const int NumVecSpecialRegs
Definition:
vec.hh:78
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
tlb.cc:60
Generated on Tue Dec 21 2021 11:34:22 for gem5 by
doxygen
1.8.17