gem5
v20.0.0.3
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
arch
riscv
isa.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2009 The Regents of The University of Michigan
3
* Copyright (c) 2009 The University of Edinburgh
4
* Copyright (c) 2014 Sven Karlsson
5
* Copyright (c) 2016 RISC-V Foundation
6
* Copyright (c) 2016 The University of Virginia
7
* Copyright (c) 2020 Barkhausen Institut
8
* All rights reserved.
9
*
10
* Redistribution and use in source and binary forms, with or without
11
* modification, are permitted provided that the following conditions are
12
* met: redistributions of source code must retain the above copyright
13
* notice, this list of conditions and the following disclaimer;
14
* redistributions in binary form must reproduce the above copyright
15
* notice, this list of conditions and the following disclaimer in the
16
* documentation and/or other materials provided with the distribution;
17
* neither the name of the copyright holders nor the names of its
18
* contributors may be used to endorse or promote products derived from
19
* this software without specific prior written permission.
20
*
21
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
*/
33
34
#ifndef __ARCH_RISCV_ISA_HH__
35
#define __ARCH_RISCV_ISA_HH__
36
37
#include <map>
38
#include <string>
39
40
#include "
arch/generic/isa.hh
"
41
#include "
arch/riscv/registers.hh
"
42
#include "
arch/riscv/types.hh
"
43
#include "
base/bitfield.hh
"
44
#include "
base/logging.hh
"
45
#include "
cpu/reg_class.hh
"
46
#include "
sim/sim_object.hh
"
47
48
struct
RiscvISAParams;
49
class
ThreadContext
;
50
class
Checkpoint;
51
class
EventManager
;
52
53
namespace
RiscvISA
54
{
55
56
enum
PrivilegeMode
57
{
58
PRV_U
= 0,
59
PRV_S
= 1,
60
PRV_M
= 3
61
};
62
63
enum
FPUStatus
64
{
65
OFF
= 0,
66
INITIAL
= 1,
67
CLEAN
= 2,
68
DIRTY
= 3,
69
};
70
71
class
ISA
:
public
BaseISA
72
{
73
protected
:
74
std::vector<RegVal>
miscRegFile
;
75
76
bool
hpmCounterEnabled
(
int
counter)
const
;
77
78
public
:
79
typedef
RiscvISAParams
Params
;
80
81
void
clear
(
ThreadContext
*tc) {
clear
(); }
82
83
protected
:
84
void
clear
();
85
86
public
:
87
RegVal
readMiscRegNoEffect
(
int
misc_reg)
const
;
88
RegVal
readMiscReg
(
int
misc_reg,
ThreadContext
*tc);
89
void
setMiscRegNoEffect
(
int
misc_reg,
RegVal
val
);
90
void
setMiscReg
(
int
misc_reg,
RegVal
val,
ThreadContext
*tc);
91
92
RegId
flattenRegId
(
const
RegId
®Id)
const
{
return
regId; }
93
int
flattenIntIndex
(
int
reg
)
const
{
return
reg
; }
94
int
flattenFloatIndex
(
int
reg
)
const
{
return
reg
; }
95
int
flattenVecIndex
(
int
reg
)
const
{
return
reg
; }
96
int
flattenVecElemIndex
(
int
reg
)
const
{
return
reg
; }
97
int
flattenVecPredIndex
(
int
reg
)
const
{
return
reg
; }
98
int
flattenCCIndex
(
int
reg
)
const
{
return
reg
; }
99
int
flattenMiscIndex
(
int
reg
)
const
{
return
reg
; }
100
101
void
startup
(
ThreadContext
*tc) {}
102
103
void
serialize
(
CheckpointOut
&
cp
)
const
;
104
void
unserialize
(
CheckpointIn
&cp);
105
107
using
BaseISA::startup
;
108
109
const
Params *
params
()
const
;
110
111
ISA
(Params *
p
);
112
};
113
114
}
// namespace RiscvISA
115
116
#endif // __ARCH_RISCV_ISA_HH__
RiscvISA::PRV_M
Definition:
isa.hh:60
logging.hh
RiscvISA::ISA::flattenFloatIndex
int flattenFloatIndex(int reg) const
Definition:
isa.hh:94
X86ISA::reg
Bitfield< 5, 3 > reg
Definition:
types.hh:87
RiscvISA::ISA::hpmCounterEnabled
bool hpmCounterEnabled(int counter) const
Definition:
isa.cc:210
RiscvISA::FPUStatus
FPUStatus
Definition:
isa.hh:63
RiscvISA::OFF
Definition:
isa.hh:65
RiscvISA::ISA::flattenCCIndex
int flattenCCIndex(int reg) const
Definition:
isa.hh:98
RiscvISA::ISA::readMiscReg
RegVal readMiscReg(int misc_reg, ThreadContext *tc)
Definition:
isa.cc:246
RiscvISA::ISA::ISA
ISA(Params *p)
Definition:
isa.cc:179
RiscvISA::ISA::setMiscReg
void setMiscReg(int misc_reg, RegVal val, ThreadContext *tc)
Definition:
isa.cc:333
RiscvISA::DIRTY
Definition:
isa.hh:68
RegVal
uint64_t RegVal
Definition:
types.hh:166
cp
Definition:
cprintf.cc:40
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Definition:
thread_context.hh:91
RiscvISA::ISA::params
const Params * params() const
Definition:
isa.cc:186
RiscvISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:323
RiscvISA::ISA::flattenMiscIndex
int flattenMiscIndex(int reg) const
Definition:
isa.hh:99
std::vector< RegVal >
X86ISA::val
Bitfield< 63 > val
Definition:
misc.hh:769
RiscvISA::ISA::flattenVecPredIndex
int flattenVecPredIndex(int reg) const
Definition:
isa.hh:97
SimObject::startup
virtual void startup()
startup() is the final initialization call before simulation.
Definition:
sim_object.cc:96
bitfield.hh
RiscvISA::CLEAN
Definition:
isa.hh:67
RiscvISA::PRV_S
Definition:
isa.hh:59
registers.hh
isa.hh
types.hh
RiscvISA::PrivilegeMode
PrivilegeMode
Definition:
isa.hh:56
CheckpointIn
Definition:
serialize.hh:67
RiscvISA::ISA::flattenIntIndex
int flattenIntIndex(int reg) const
Definition:
isa.hh:93
RiscvISA::ISA
Definition:
isa.hh:71
RiscvISA::ISA::readMiscRegNoEffect
RegVal readMiscRegNoEffect(int misc_reg) const
Definition:
isa.cc:233
RiscvISA::ISA::clear
void clear(ThreadContext *tc)
Definition:
isa.hh:81
RiscvISA::ISA::startup
void startup(ThreadContext *tc)
Definition:
isa.hh:101
RiscvISA::ISA::flattenVecElemIndex
int flattenVecElemIndex(int reg) const
Definition:
isa.hh:96
RiscvISA::ISA::unserialize
void unserialize(CheckpointIn &cp)
Unserialize an object.
Definition:
isa.cc:407
RiscvISA::PRV_U
Definition:
isa.hh:58
CheckpointOut
std::ostream CheckpointOut
Definition:
serialize.hh:63
RiscvISA::ISA::flattenVecIndex
int flattenVecIndex(int reg) const
Definition:
isa.hh:95
RiscvISA::ISA::serialize
void serialize(CheckpointOut &cp) const
Serialize an object.
Definition:
isa.cc:400
sim_object.hh
RiscvISA::ISA::Params
RiscvISAParams Params
Definition:
isa.hh:79
reg_class.hh
RegId
Register ID: describe an architectural register with its class and index.
Definition:
reg_class.hh:75
BaseISA
Definition:
isa.hh:47
RiscvISA::ISA::clear
void clear()
Definition:
isa.cc:191
RiscvISA::ISA::miscRegFile
std::vector< RegVal > miscRegFile
Definition:
isa.hh:74
RiscvISA::INITIAL
Definition:
isa.hh:66
RiscvISA::ISA::setMiscRegNoEffect
void setMiscRegNoEffect(int misc_reg, RegVal val)
Definition:
isa.cc:321
EventManager
Definition:
eventq.hh:905
RiscvISA
Definition:
fs_workload.cc:36
RiscvISA::ISA::flattenRegId
RegId flattenRegId(const RegId ®Id) const
Definition:
isa.hh:92
Generated on Fri Jul 3 2020 15:42:39 for gem5 by
doxygen
1.8.13