gem5
v20.0.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
+
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
m
n
o
p
r
s
t
u
v
w
x
+
Enumerations
a
b
c
d
e
f
i
l
m
o
p
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
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
+
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
+
Enumerations
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
v
w
+
Enumerator
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
+
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
sim
vptr.hh
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
#ifndef __SIM_VPTR_HH__
30
#define __SIM_VPTR_HH__
31
32
#include "
mem/port_proxy.hh
"
33
34
class
ThreadContext
;
35
36
template
<
class
T>
37
class
VPtr
38
{
39
public
:
40
typedef
T
Type
;
41
42
protected
:
43
ThreadContext
*
tc
;
44
Addr
ptr
;
45
Addr
buffer
[(
sizeof
(T)-1)/
sizeof
(
Addr
) + 1];
46
47
public
:
48
explicit
VPtr
(
ThreadContext
*_tc,
Addr
p
= 0)
49
:
tc
(_tc),
ptr
(
p
)
50
{
51
refresh
();
52
}
53
54
template
<
class
U>
55
VPtr
(
const
VPtr<U>
&vp)
56
:
tc
(vp.
tc
),
ptr
(vp.
ptr
)
57
{
58
refresh
();
59
}
60
61
~VPtr
()
62
{}
63
64
void
65
refresh
()
66
{
67
if
(!
ptr
)
68
return
;
69
70
PortProxy
&proxy =
tc
->
getVirtProxy
();
71
proxy.
readBlob
(
ptr
,
buffer
,
sizeof
(T));
72
}
73
74
bool
75
operator!
()
const
76
{
77
return
ptr
== 0;
78
}
79
80
VPtr<T>
81
operator+
(
int
offset
)
82
{
83
return
VPtr<T>
(
tc
,
ptr
+
offset
);
84
}
85
86
const
VPtr<T>
&
87
operator+=
(
int
offset
)
88
{
89
ptr
+=
offset
;
90
refresh
();
91
92
return
*
this
;
93
}
94
95
const
VPtr<T>
&
96
operator=
(
Addr
p
)
97
{
98
ptr
=
p
;
99
refresh
();
100
101
return
*
this
;
102
}
103
104
template
<
class
U>
105
const
VPtr<T>
&
106
operator=
(
const
VPtr<U>
&vp)
107
{
108
tc
= vp.
tc
;
109
ptr
= vp.
ptr
;
110
refresh
();
111
112
return
*
this
;
113
}
114
115
operator
T *()
116
{
117
return
(T *)
buffer
;
118
}
119
120
T *
121
operator->
()
122
{
123
return
(T *)
buffer
;
124
}
125
126
T &
127
operator*
()
128
{
129
return
*(T *)
buffer
;
130
}
131
};
132
133
#endif // __SIM_VPTR_HH__
VPtr::operator->
T * operator->()
Definition:
vptr.hh:121
VPtr::operator!
bool operator!() const
Definition:
vptr.hh:75
VPtr::operator+=
const VPtr< T > & operator+=(int offset)
Definition:
vptr.hh:87
VPtr::operator+
VPtr< T > operator+(int offset)
Definition:
vptr.hh:81
VPtr::refresh
void refresh()
Definition:
vptr.hh:65
VPtr::operator*
T & operator*()
Definition:
vptr.hh:127
ThreadContext::getVirtProxy
virtual PortProxy & getVirtProxy()=0
ArmISA::offset
Bitfield< 23, 0 > offset
Definition:
types.hh:152
VPtr::operator=
const VPtr< T > & operator=(Addr p)
Definition:
vptr.hh:96
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Definition:
thread_context.hh:91
VPtr::VPtr
VPtr(ThreadContext *_tc, Addr p=0)
Definition:
vptr.hh:48
port_proxy.hh
PortProxy Object Declaration.
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:140
VPtr::Type
T Type
Definition:
vptr.hh:40
PortProxy::readBlob
void readBlob(Addr addr, void *p, int size) const
Higher level interfaces based on the above.
Definition:
port_proxy.hh:177
VPtr::buffer
Addr buffer[(sizeof(T) -1)/sizeof(Addr)+1]
Definition:
vptr.hh:45
PortProxy
This object is a proxy for a port or other object which implements the functional response protocol...
Definition:
port_proxy.hh:80
VPtr
Definition:
vptr.hh:37
VPtr::VPtr
VPtr(const VPtr< U > &vp)
Definition:
vptr.hh:55
VPtr::ptr
Addr ptr
Definition:
vptr.hh:44
VPtr::operator=
const VPtr< T > & operator=(const VPtr< U > &vp)
Definition:
vptr.hh:106
MipsISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:323
VPtr::tc
ThreadContext * tc
Definition:
vptr.hh:43
VPtr::~VPtr
~VPtr()
Definition:
vptr.hh:61
Generated on Thu May 28 2020 16:21:35 for gem5 by
doxygen
1.8.13