gem5
[DEVELOP-FOR-23.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
riscv
insts
amo.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2015 RISC-V Foundation
3
* Copyright (c) 2017 The University of Virginia
4
* All rights reserved.
5
*
6
* Redistribution and use in source and binary forms, with or without
7
* modification, are permitted provided that the following conditions are
8
* met: redistributions of source code must retain the above copyright
9
* notice, this list of conditions and the following disclaimer;
10
* redistributions in binary form must reproduce the above copyright
11
* notice, this list of conditions and the following disclaimer in the
12
* documentation and/or other materials provided with the distribution;
13
* neither the name of the copyright holders nor the names of its
14
* contributors may be used to endorse or promote products derived from
15
* this software without specific prior written permission.
16
*
17
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
*/
29
30
#ifndef __ARCH_RISCV_INSTS_AMO_HH__
31
#define __ARCH_RISCV_INSTS_AMO_HH__
32
33
#include <string>
34
35
#include "
arch/riscv/insts/mem.hh
"
36
#include "
arch/riscv/insts/static_inst.hh
"
37
#include "
cpu/static_inst.hh
"
38
39
namespace
gem5
40
{
41
42
namespace
RiscvISA
43
{
44
45
// memfence micro instruction
46
class
MemFenceMicro
:
public
RiscvMicroInst
47
{
48
public
:
49
MemFenceMicro
(
ExtMachInst
_machInst, OpClass __opClass)
50
:
RiscvMicroInst
(
"fence"
, _machInst, __opClass)
51
{ }
52
protected
:
53
using
RiscvMicroInst::RiscvMicroInst
;
54
55
Fault
execute
(
ExecContext
*,
trace::InstRecord
*)
const override
;
56
std::string
generateDisassembly
(
57
Addr
pc
,
const
loader::SymbolTable
*symtab)
const override
;
58
};
59
60
// load-reserved
61
class
LoadReserved
:
public
RiscvMacroInst
62
{
63
protected
:
64
using
RiscvMacroInst::RiscvMacroInst
;
65
66
std::string
generateDisassembly
(
67
Addr
pc
,
const
loader::SymbolTable
*symtab)
const override
;
68
};
69
70
class
LoadReservedMicro
:
public
RiscvMicroInst
71
{
72
protected
:
73
Request::Flags
memAccessFlags
;
74
using
RiscvMicroInst::RiscvMicroInst
;
75
76
std::string
generateDisassembly
(
77
Addr
pc
,
const
loader::SymbolTable
*symtab)
const override
;
78
};
79
80
// store-cond
81
class
StoreCond
:
public
RiscvMacroInst
82
{
83
protected
:
84
using
RiscvMacroInst::RiscvMacroInst
;
85
86
std::string
generateDisassembly
(
87
Addr
pc
,
const
loader::SymbolTable
*symtab)
const override
;
88
};
89
90
class
StoreCondMicro
:
public
RiscvMicroInst
91
{
92
protected
:
93
Request::Flags
memAccessFlags
;
94
using
RiscvMicroInst::RiscvMicroInst
;
95
96
std::string
generateDisassembly
(
97
Addr
pc
,
const
loader::SymbolTable
*symtab)
const override
;
98
};
99
100
// AMOs
101
class
AtomicMemOp
:
public
RiscvMacroInst
102
{
103
protected
:
104
using
RiscvMacroInst::RiscvMacroInst
;
105
106
std::string
generateDisassembly
(
107
Addr
pc
,
const
loader::SymbolTable
*symtab)
const override
;
108
};
109
110
class
AtomicMemOpMicro
:
public
RiscvMicroInst
111
{
112
protected
:
113
Request::Flags
memAccessFlags
;
114
using
RiscvMicroInst::RiscvMicroInst
;
115
116
std::string
generateDisassembly
(
117
Addr
pc
,
const
loader::SymbolTable
*symtab)
const override
;
118
};
119
124
template
<
typename
T>
125
class
AtomicGenericOp
:
public
TypedAtomicOpFunctor
<T>
126
{
127
public
:
128
AtomicGenericOp
(T _a, std::function<
void
(T*,T)> _op)
129
:
a
(_a),
op
(_op) { }
130
AtomicOpFunctor
*
clone
() {
return
new
AtomicGenericOp<T>
(*
this
); }
131
void
execute
(T *
b
) {
op
(
b
,
a
); }
132
private
:
133
T
a
;
134
std::function<void(T*,T)>
op
;
135
};
136
137
}
// namespace RiscvISA
138
}
// namespace gem5
139
140
#endif // __ARCH_RISCV_INSTS_AMO_HH__
gem5::RiscvISA::MemFenceMicro::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition:
amo.cc:47
mem.hh
gem5::RiscvISA::AtomicGenericOp::execute
void execute(T *b)
Definition:
amo.hh:131
gem5::RiscvISA::StoreCondMicro::memAccessFlags
Request::Flags memAccessFlags
Definition:
amo.hh:93
gem5::AtomicOpFunctor
Definition:
amo.hh:43
gem5::RiscvISA::RiscvMicroInst::RiscvMicroInst
RiscvMicroInst(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Definition:
static_inst.hh:156
gem5::trace::InstRecord
Definition:
insttracer.hh:60
gem5::RiscvISA::RiscvMacroInst
Base class for all RISC-V Macroops.
Definition:
static_inst.hh:110
gem5::RiscvISA::RiscvMacroInst::RiscvMacroInst
RiscvMacroInst(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Definition:
static_inst.hh:115
gem5::RiscvISA::LoadReservedMicro::memAccessFlags
Request::Flags memAccessFlags
Definition:
amo.hh:73
gem5::RiscvISA::MemFenceMicro::execute
Fault execute(ExecContext *, trace::InstRecord *) const override
Definition:
amo.cc:55
gem5::loader::SymbolTable
Definition:
symtab.hh:64
gem5::RiscvISA::AtomicGenericOp::clone
AtomicOpFunctor * clone()
Definition:
amo.hh:130
gem5::RiscvISA::AtomicGenericOp::op
std::function< void(T *, T)> op
Definition:
amo.hh:134
gem5::TypedAtomicOpFunctor
Definition:
amo.hh:56
gem5::RiscvISA::AtomicGenericOp::AtomicGenericOp
AtomicGenericOp(T _a, std::function< void(T *, T)> _op)
Definition:
amo.hh:128
gem5::Flags< FlagsType >
gem5::RiscvISA::StoreCond
Definition:
amo.hh:81
gem5::ArmISA::b
Bitfield< 7 > b
Definition:
misc_types.hh:438
gem5::Fault
std::shared_ptr< FaultBase > Fault
Definition:
types.hh:248
gem5::RiscvISA::MemFenceMicro::MemFenceMicro
MemFenceMicro(ExtMachInst _machInst, OpClass __opClass)
Definition:
amo.hh:49
gem5::RiscvISA::pc
Bitfield< 4 > pc
Definition:
pra_constants.hh:243
gem5::RiscvISA::StoreCondMicro::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition:
amo.cc:109
gem5::RiscvISA::AtomicMemOpMicro::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition:
amo.cc:139
static_inst.hh
gem5::RiscvISA::LoadReserved::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition:
amo.cc:63
gem5::RiscvISA::AtomicMemOpMicro
Definition:
amo.hh:110
gem5::RiscvISA::LoadReservedMicro::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition:
amo.cc:80
static_inst.hh
gem5::RiscvISA::AtomicMemOp::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition:
amo.cc:121
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:147
gem5::RiscvISA::LoadReserved
Definition:
amo.hh:61
gem5::RiscvISA::AtomicGenericOp::a
T a
Definition:
amo.hh:133
gem5::X86ISA::ExtMachInst
Definition:
types.hh:212
gem5::RiscvISA::StoreCondMicro
Definition:
amo.hh:90
gem5::RiscvISA::MemFenceMicro
Definition:
amo.hh:46
gem5::RiscvISA::StoreCond::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition:
amo.cc:91
gem5::ExecContext
The ExecContext is an abstract base class the provides the interface used by the ISA to manipulate th...
Definition:
exec_context.hh:71
gem5::RiscvISA::AtomicGenericOp
A generic atomic op class.
Definition:
amo.hh:125
gem5::RiscvISA::RiscvMicroInst
Base class for all RISC-V Microops.
Definition:
static_inst.hh:153
gem5::RiscvISA::LoadReservedMicro
Definition:
amo.hh:70
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
gpu_translation_state.hh:37
gem5::RiscvISA::AtomicMemOp
Definition:
amo.hh:101
gem5::RiscvISA::AtomicMemOpMicro::memAccessFlags
Request::Flags memAccessFlags
Definition:
amo.hh:113
Generated on Sun Jul 30 2023 01:56:50 for gem5 by
doxygen
1.8.17