gem5
v22.1.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
q
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
y
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
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
b
c
d
g
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
power
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) 2021 IBM Corporation
5
* All rights reserved.
6
*
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions are
9
* met: redistributions of source code must retain the above copyright
10
* notice, this list of conditions and the following disclaimer;
11
* redistributions in binary form must reproduce the above copyright
12
* notice, this list of conditions and the following disclaimer in the
13
* documentation and/or other materials provided with the distribution;
14
* neither the name of the copyright holders nor the names of its
15
* contributors may be used to endorse or promote products derived from
16
* this software without specific prior written permission.
17
*
18
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
*/
30
31
#ifndef __ARCH_POWER_ISA_HH__
32
#define __ARCH_POWER_ISA_HH__
33
34
#include "
arch/generic/isa.hh
"
35
#include "
arch/power/pcstate.hh
"
36
#include "
arch/power/regs/misc.hh
"
37
#include "
arch/power/types.hh
"
38
#include "
base/logging.hh
"
39
#include "
cpu/reg_class.hh
"
40
#include "
sim/sim_object.hh
"
41
42
namespace
gem5
43
{
44
45
struct
PowerISAParams;
46
class
ThreadContext;
47
class
Checkpoint;
48
class
EventManager;
49
50
namespace
PowerISA
51
{
52
53
class
ISA
:
public
BaseISA
54
{
55
protected
:
56
RegVal
miscRegs
[
NUM_MISCREGS
];
57
58
public
:
59
PCStateBase
*
60
newPCState
(
Addr
new_inst_addr=0)
const override
61
{
62
return
new
PCState
(new_inst_addr);
63
}
64
65
RegVal
66
readMiscRegNoEffect
(
RegIndex
idx)
const override
67
{
68
fatal
(
"Power does not currently have any misc regs defined\n"
);
69
}
70
71
RegVal
72
readMiscReg
(
RegIndex
idx)
override
73
{
74
fatal
(
"Power does not currently have any misc regs defined\n"
);
75
}
76
77
void
78
setMiscRegNoEffect
(
RegIndex
idx,
RegVal
val
)
override
79
{
80
fatal
(
"Power does not currently have any misc regs defined\n"
);
81
}
82
83
void
84
setMiscReg
(
RegIndex
idx,
RegVal
val
)
override
85
{
86
fatal
(
"Power does not currently have any misc regs defined\n"
);
87
}
88
89
bool
90
inUserMode
()
const override
91
{
92
return
false
;
93
}
94
95
void
copyRegsFrom
(
ThreadContext
*src)
override
;
96
97
using
Params
= PowerISAParams;
98
99
ISA
(
const
Params
&
p
);
100
};
101
102
}
// namespace PowerISA
103
}
// namespace gem5
104
105
#endif
// __ARCH_POWER_ISA_HH__
misc.hh
types.hh
gem5::BaseISA
Definition:
isa.hh:58
gem5::PCStateBase
Definition:
pcstate.hh:58
gem5::PowerISA::ISA
Definition:
isa.hh:54
gem5::PowerISA::ISA::miscRegs
RegVal miscRegs[NUM_MISCREGS]
Definition:
isa.hh:56
gem5::PowerISA::ISA::copyRegsFrom
void copyRegsFrom(ThreadContext *src) override
Definition:
isa.cc:76
gem5::PowerISA::ISA::Params
PowerISAParams Params
Definition:
isa.hh:97
gem5::PowerISA::ISA::readMiscReg
RegVal readMiscReg(RegIndex idx) override
Definition:
isa.hh:72
gem5::PowerISA::ISA::setMiscRegNoEffect
void setMiscRegNoEffect(RegIndex idx, RegVal val) override
Definition:
isa.hh:78
gem5::PowerISA::ISA::setMiscReg
void setMiscReg(RegIndex idx, RegVal val) override
Definition:
isa.hh:84
gem5::PowerISA::ISA::readMiscRegNoEffect
RegVal readMiscRegNoEffect(RegIndex idx) const override
Definition:
isa.hh:66
gem5::PowerISA::ISA::newPCState
PCStateBase * newPCState(Addr new_inst_addr=0) const override
Definition:
isa.hh:60
gem5::PowerISA::ISA::inUserMode
bool inUserMode() const override
Definition:
isa.hh:90
gem5::PowerISA::ISA::ISA
ISA(const Params &p)
Definition:
isa.cc:63
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:89
isa.hh
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition:
logging.hh:190
logging.hh
gem5::MipsISA::PCState
GenericISA::DelaySlotPCState< 4 > PCState
Definition:
pcstate.hh:40
gem5::PowerISA::NUM_MISCREGS
@ NUM_MISCREGS
Definition:
misc.hh:45
gem5::VegaISA::p
Bitfield< 54 > p
Definition:
pagetable.hh:70
gem5::X86ISA::val
Bitfield< 63 > val
Definition:
misc.hh:776
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
gpu_translation_state.hh:38
gem5::RegIndex
uint16_t RegIndex
Definition:
types.hh:176
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:147
gem5::RegVal
uint64_t RegVal
Definition:
types.hh:173
pcstate.hh
reg_class.hh
sim_object.hh
Generated on Wed Dec 21 2022 10:22:24 for gem5 by
doxygen
1.9.1