gem5
v21.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
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
cpu
pred
ras.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2004-2005 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
#include "
cpu/pred/ras.hh
"
30
31
namespace
gem5
32
{
33
34
namespace
branch_prediction
35
{
36
37
void
38
ReturnAddrStack::init
(
unsigned
_numEntries)
39
{
40
numEntries
= _numEntries;
41
addrStack
.resize(
numEntries
);
42
reset
();
43
}
44
45
void
46
ReturnAddrStack::reset
()
47
{
48
usedEntries
= 0;
49
tos
= 0;
50
for
(
unsigned
i
= 0;
i
<
numEntries
; ++
i
)
51
addrStack
[
i
].set(0);
52
}
53
54
void
55
ReturnAddrStack::push
(
const
TheISA::PCState
&return_addr)
56
{
57
incrTos
();
58
59
addrStack
[
tos
] = return_addr;
60
61
if
(
usedEntries
!=
numEntries
) {
62
++
usedEntries
;
63
}
64
}
65
66
void
67
ReturnAddrStack::pop
()
68
{
69
if
(
usedEntries
> 0) {
70
--
usedEntries
;
71
}
72
73
decrTos
();
74
}
75
76
void
77
ReturnAddrStack::restore
(
unsigned
top_entry_idx,
78
const
TheISA::PCState
&restored)
79
{
80
tos
= top_entry_idx;
81
82
addrStack
[
tos
] = restored;
83
84
if
(
usedEntries
!=
numEntries
) {
85
++
usedEntries
;
86
}
87
}
88
89
}
// namespace branch_prediction
90
}
// namespace gem5
gem5::branch_prediction::ReturnAddrStack::init
void init(unsigned numEntries)
Initializes RAS with a specified number of entries.
Definition:
ras.cc:38
gem5::branch_prediction::ReturnAddrStack::addrStack
std::vector< TheISA::PCState > addrStack
The RAS itself.
Definition:
ras.hh:94
gem5::branch_prediction::ReturnAddrStack::pop
void pop()
Pops the top address from the RAS.
Definition:
ras.cc:67
gem5::ArmISA::i
Bitfield< 7 > i
Definition:
misc_types.hh:66
gem5::branch_prediction::ReturnAddrStack::push
void push(const TheISA::PCState &return_addr)
Pushes an address onto the RAS.
Definition:
ras.cc:55
gem5::branch_prediction::ReturnAddrStack::restore
void restore(unsigned top_entry_idx, const TheISA::PCState &restored)
Changes index to the top of the RAS, and replaces the top address with a new target.
Definition:
ras.cc:77
gem5::MipsISA::PCState
GenericISA::DelaySlotPCState< 4 > PCState
Definition:
pcstate.hh:40
gem5::branch_prediction::ReturnAddrStack::numEntries
unsigned numEntries
The number of entries in the RAS.
Definition:
ras.hh:97
gem5::branch_prediction::ReturnAddrStack::reset
void reset()
Definition:
ras.cc:46
gem5::branch_prediction::ReturnAddrStack::tos
unsigned tos
The top of stack index.
Definition:
ras.hh:103
ras.hh
gem5::branch_prediction::ReturnAddrStack::usedEntries
unsigned usedEntries
The number of used entries in the RAS.
Definition:
ras.hh:100
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
decoder.cc:40
gem5::branch_prediction::ReturnAddrStack::incrTos
void incrTos()
Increments the top of stack index.
Definition:
ras.hh:86
gem5::branch_prediction::ReturnAddrStack::decrTos
void decrTos()
Decrements the top of stack index.
Definition:
ras.hh:90
Generated on Wed Jul 28 2021 12:10:24 for gem5 by
doxygen
1.8.17