gem5
v22.0.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
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
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
sparc
insts
micro.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2006-2007 The Regents of The University of Michigan
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions are
7
* met: redistributions of source code must retain the above copyright
8
* notice, this list of conditions and the following disclaimer;
9
* redistributions in binary form must reproduce the above copyright
10
* notice, this list of conditions and the following disclaimer in the
11
* documentation and/or other materials provided with the distribution;
12
* neither the name of the copyright holders nor the names of its
13
* contributors may be used to endorse or promote products derived from
14
* this software without specific prior written permission.
15
*
16
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
*/
28
29
#ifndef __ARCH_SPARC_INSTS_MICRO_HH__
30
#define __ARCH_SPARC_INSTS_MICRO_HH__
31
32
#include "
arch/sparc/insts/static_inst.hh
"
33
34
namespace
gem5
35
{
36
37
namespace
SparcISA
38
{
39
40
class
SparcMacroInst
:
public
SparcStaticInst
41
{
42
protected
:
43
const
uint32_t
numMicroops
;
44
45
// Constructor.
46
SparcMacroInst
(
const
char
*mnem,
ExtMachInst
_machInst,
47
OpClass __opClass, uint32_t _numMicroops) :
48
SparcStaticInst
(mnem, _machInst, __opClass),
49
numMicroops
(_numMicroops)
50
{
51
assert(
numMicroops
);
52
microops
=
new
StaticInstPtr
[
numMicroops
];
53
flags
[IsMacroop] =
true
;
54
}
55
56
~SparcMacroInst
()
57
{
58
delete
[]
microops
;
59
}
60
61
std::string
generateDisassembly
(
62
Addr
pc
,
const
loader::SymbolTable
*symtab)
const override
;
63
64
StaticInstPtr
*
microops
;
65
66
StaticInstPtr
67
fetchMicroop
(
MicroPC
upc)
const override
68
{
69
assert(upc <
numMicroops
);
70
return
microops
[upc];
71
}
72
73
Fault
74
execute
(
ExecContext
*,
Trace::InstRecord
*)
const override
75
{
76
panic
(
"Tried to execute a macroop directly!\n"
);
77
}
78
79
Fault
80
initiateAcc
(
ExecContext
*,
Trace::InstRecord
*)
const override
81
{
82
panic
(
"Tried to execute a macroop directly!\n"
);
83
}
84
85
Fault
86
completeAcc
(
PacketPtr
,
ExecContext
*,
Trace::InstRecord
*)
const override
87
{
88
panic
(
"Tried to execute a macroop directly!\n"
);
89
}
90
};
91
92
class
SparcMicroInst
:
public
SparcStaticInst
93
{
94
protected
:
95
// Constructor.
96
SparcMicroInst
(
const
char
*mnem,
ExtMachInst
_machInst,
97
OpClass __opClass) :
98
SparcStaticInst
(mnem, _machInst, __opClass)
99
{
100
flags
[IsMicroop] =
true
;
101
}
102
103
void
104
advancePC
(
PCStateBase
&pc_state)
const override
105
{
106
auto
&spc = pc_state.
as
<
PCState
>();
107
if
(
flags
[IsLastMicroop])
108
spc.
uEnd
();
109
else
110
spc.uAdvance();
111
}
112
113
void
114
advancePC
(
ThreadContext
*tc)
const override
115
{
116
PCState
pc
= tc->
pcState
().
as
<
PCState
>();
117
if
(
flags
[IsLastMicroop])
118
pc
.uEnd();
119
else
120
pc
.uAdvance();
121
tc->
pcState
(
pc
);
122
}
123
};
124
125
class
SparcDelayedMicroInst
:
public
SparcMicroInst
126
{
127
protected
:
128
// Constructor.
129
SparcDelayedMicroInst
(
const
char
*mnem,
ExtMachInst
_machInst,
130
OpClass __opClass) :
131
SparcMicroInst
(mnem, _machInst, __opClass)
132
{
133
flags
[IsDelayedCommit] =
true
;
134
}
135
};
136
137
}
// namespace SparcISA
138
}
// namespace gem5
139
140
#endif // __ARCH_SPARC_INSTS_MICRO_HH__
gem5::SparcISA::SparcMicroInst::SparcMicroInst
SparcMicroInst(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Definition:
micro.hh:96
gem5::SparcISA::SparcStaticInst
Base class for all SPARC static instructions.
Definition:
static_inst.hh:93
gem5::SparcISA::SparcMacroInst
Definition:
micro.hh:40
gem5::SparcISA::ExtMachInst
uint64_t ExtMachInst
Definition:
types.hh:42
gem5::PCStateBase::as
Target & as()
Definition:
pcstate.hh:72
gem5::ThreadContext::pcState
virtual const PCStateBase & pcState() const =0
gem5::loader::SymbolTable
Definition:
symtab.hh:65
gem5::SparcISA::SparcMacroInst::microops
StaticInstPtr * microops
Definition:
micro.hh:64
gem5::SparcISA::SparcMacroInst::SparcMacroInst
SparcMacroInst(const char *mnem, ExtMachInst _machInst, OpClass __opClass, uint32_t _numMicroops)
Definition:
micro.hh:46
gem5::SparcISA::SparcMacroInst::execute
Fault execute(ExecContext *, Trace::InstRecord *) const override
Definition:
micro.hh:74
gem5::SparcISA::SparcMicroInst::advancePC
void advancePC(ThreadContext *tc) const override
Definition:
micro.hh:114
gem5::RefCountingPtr< StaticInst >
gem5::SparcISA::SparcMacroInst::fetchMicroop
StaticInstPtr fetchMicroop(MicroPC upc) const override
Return the microop that goes with a particular micropc.
Definition:
micro.hh:67
gem5::SparcISA::SparcMacroInst::numMicroops
const uint32_t numMicroops
Definition:
micro.hh:43
gem5::MicroPC
uint16_t MicroPC
Definition:
types.hh:149
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:94
gem5::Fault
std::shared_ptr< FaultBase > Fault
Definition:
types.hh:248
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition:
packet.hh:291
gem5::SparcISA::SparcMacroInst::~SparcMacroInst
~SparcMacroInst()
Definition:
micro.hh:56
gem5::SparcISA::SparcMacroInst::initiateAcc
Fault initiateAcc(ExecContext *, Trace::InstRecord *) const override
Definition:
micro.hh:80
gem5::StaticInst::flags
std::bitset< Num_Flags > flags
Flag values for this instruction.
Definition:
static_inst.hh:103
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:147
gem5::SparcISA::SparcDelayedMicroInst
Definition:
micro.hh:125
gem5::SparcISA::SparcMicroInst::advancePC
void advancePC(PCStateBase &pc_state) const override
Definition:
micro.hh:104
gem5::SparcISA::SparcMicroInst
Definition:
micro.hh:92
static_inst.hh
gem5::GenericISA::DelaySlotUPCState
Definition:
pcstate.hh:530
gem5::MipsISA::pc
Bitfield< 4 > pc
Definition:
pra_constants.hh:243
gem5::SparcISA::SparcDelayedMicroInst::SparcDelayedMicroInst
SparcDelayedMicroInst(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Definition:
micro.hh:129
gem5::ExecContext
The ExecContext is an abstract base class the provides the interface used by the ISA to manipulate th...
Definition:
exec_context.hh:73
gem5::SparcISA::SparcMacroInst::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition:
micro.cc:38
gem5::Trace::InstRecord
Definition:
insttracer.hh:61
gem5::PCStateBase
Definition:
pcstate.hh:57
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
gpu_translation_state.hh:37
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition:
logging.hh:178
gem5::SparcISA::SparcMacroInst::completeAcc
Fault completeAcc(PacketPtr, ExecContext *, Trace::InstRecord *) const override
Definition:
micro.hh:86
gem5::GenericISA::DelaySlotUPCState::uEnd
void uEnd()
Definition:
pcstate.hh:578
Generated on Wed Jul 13 2022 10:39:12 for gem5 by
doxygen
1.8.17