gem5
v21.1.0.1
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
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
m
p
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
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 <vector>
38
39
#include "
arch/generic/isa.hh
"
40
#include "
arch/riscv/types.hh
"
41
#include "
base/types.hh
"
42
43
namespace
gem5
44
{
45
46
struct
RiscvISAParams;
47
class
Checkpoint;
48
49
namespace
RiscvISA
50
{
51
52
enum
PrivilegeMode
53
{
54
PRV_U
= 0,
55
PRV_S
= 1,
56
PRV_M
= 3
57
};
58
59
enum
FPUStatus
60
{
61
OFF
= 0,
62
INITIAL
= 1,
63
CLEAN
= 2,
64
DIRTY
= 3,
65
};
66
67
class
ISA
:
public
BaseISA
68
{
69
protected
:
70
std::vector<RegVal>
miscRegFile
;
71
72
bool
hpmCounterEnabled
(
int
counter)
const
;
73
74
public
:
75
using
Params
= RiscvISAParams;
76
77
void
clear
();
78
79
public
:
80
RegVal
readMiscRegNoEffect
(
int
misc_reg)
const
;
81
RegVal
readMiscReg
(
int
misc_reg);
82
void
setMiscRegNoEffect
(
int
misc_reg,
RegVal
val
);
83
void
setMiscReg
(
int
misc_reg,
RegVal
val
);
84
85
RegId
flattenRegId
(
const
RegId
®Id)
const
{
return
regId; }
86
int
flattenIntIndex
(
int
reg
)
const
{
return
reg
; }
87
int
flattenFloatIndex
(
int
reg
)
const
{
return
reg
; }
88
int
flattenVecIndex
(
int
reg
)
const
{
return
reg
; }
89
int
flattenVecElemIndex
(
int
reg
)
const
{
return
reg
; }
90
int
flattenVecPredIndex
(
int
reg
)
const
{
return
reg
; }
91
int
flattenCCIndex
(
int
reg
)
const
{
return
reg
; }
92
int
flattenMiscIndex
(
int
reg
)
const
{
return
reg
; }
93
94
bool
inUserMode
()
const override
{
return
true
; }
95
void
copyRegsFrom
(
ThreadContext
*src)
override
;
96
97
void
serialize
(
CheckpointOut
&cp)
const override
;
98
void
unserialize
(
CheckpointIn
&cp)
override
;
99
100
ISA
(
const
Params
&
p
);
101
};
102
103
}
// namespace RiscvISA
104
}
// namespace gem5
105
106
#endif // __ARCH_RISCV_ISA_HH__
gem5::RiscvISA::PRV_S
@ PRV_S
Definition:
isa.hh:55
gem5::RiscvISA::PRV_M
@ PRV_M
Definition:
isa.hh:56
gem5::RegVal
uint64_t RegVal
Definition:
types.hh:173
gem5::RiscvISA::ISA::inUserMode
bool inUserMode() const override
Definition:
isa.hh:94
gem5::RiscvISA::FPUStatus
FPUStatus
Definition:
isa.hh:59
gem5::RiscvISA::ISA::flattenFloatIndex
int flattenFloatIndex(int reg) const
Definition:
isa.hh:87
gem5::RiscvISA::ISA::copyRegsFrom
void copyRegsFrom(ThreadContext *src) override
Definition:
isa.cc:200
gem5::RiscvISA::ISA::flattenIntIndex
int flattenIntIndex(int reg) const
Definition:
isa.hh:86
gem5::CheckpointIn
Definition:
serialize.hh:68
gem5::RiscvISA::ISA::flattenCCIndex
int flattenCCIndex(int reg) const
Definition:
isa.hh:91
gem5::RiscvISA::PrivilegeMode
PrivilegeMode
Definition:
isa.hh:52
gem5::X86ISA::val
Bitfield< 63 > val
Definition:
misc.hh:775
std::vector< RegVal >
gem5::RiscvISA::INITIAL
@ INITIAL
Definition:
isa.hh:62
gem5::RiscvISA::ISA::Params
RiscvISAParams Params
Definition:
isa.hh:75
gem5::RiscvISA::ISA::readMiscReg
RegVal readMiscReg(int misc_reg)
Definition:
isa.cc:269
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:93
gem5::RiscvISA::ISA::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition:
isa.cc:481
gem5::RiscvISA::ISA::flattenRegId
RegId flattenRegId(const RegId ®Id) const
Definition:
isa.hh:85
types.hh
gem5::RiscvISA::ISA::clear
void clear()
Definition:
isa.cc:214
gem5::RiscvISA::ISA::readMiscRegNoEffect
RegVal readMiscRegNoEffect(int misc_reg) const
Definition:
isa.cc:256
gem5::RiscvISA::CLEAN
@ CLEAN
Definition:
isa.hh:63
gem5::RiscvISA::ISA::miscRegFile
std::vector< RegVal > miscRegFile
Definition:
isa.hh:70
gem5::RiscvISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:326
gem5::RiscvISA::ISA::flattenMiscIndex
int flattenMiscIndex(int reg) const
Definition:
isa.hh:92
gem5::RiscvISA::ISA
Definition:
isa.hh:67
gem5::X86ISA::reg
Bitfield< 5, 3 > reg
Definition:
types.hh:92
isa.hh
types.hh
gem5::RiscvISA::ISA::flattenVecElemIndex
int flattenVecElemIndex(int reg) const
Definition:
isa.hh:89
gem5::RiscvISA::ISA::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition:
isa.cc:474
gem5::RiscvISA::ISA::flattenVecPredIndex
int flattenVecPredIndex(int reg) const
Definition:
isa.hh:90
gem5::CheckpointOut
std::ostream CheckpointOut
Definition:
serialize.hh:66
gem5::RiscvISA::ISA::setMiscReg
void setMiscReg(int misc_reg, RegVal val)
Definition:
isa.cc:356
gem5::RiscvISA::PRV_U
@ PRV_U
Definition:
isa.hh:54
gem5::RiscvISA::ISA::flattenVecIndex
int flattenVecIndex(int reg) const
Definition:
isa.hh:88
gem5::BaseISA
Definition:
isa.hh:54
gem5::RiscvISA::OFF
@ OFF
Definition:
isa.hh:61
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
decoder.cc:40
gem5::RiscvISA::DIRTY
@ DIRTY
Definition:
isa.hh:64
gem5::RiscvISA::ISA::hpmCounterEnabled
bool hpmCounterEnabled(int counter) const
Definition:
isa.cc:233
gem5::RiscvISA::ISA::ISA
ISA(const Params &p)
Definition:
isa.cc:185
gem5::RegId
Register ID: describe an architectural register with its class and index.
Definition:
reg_class.hh:88
gem5::RiscvISA::ISA::setMiscRegNoEffect
void setMiscRegNoEffect(int misc_reg, RegVal val)
Definition:
isa.cc:344
Generated on Tue Sep 7 2021 14:53:40 for gem5 by
doxygen
1.8.17