gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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:
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 
62  {}
63 
64  void
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>
82  {
83  return VPtr<T>(tc, ptr + offset);
84  }
85 
86  const VPtr<T> &
88  {
89  ptr += offset;
90  refresh();
91 
92  return *this;
93  }
94 
95  const VPtr<T> &
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 *
122  {
123  return (T *)buffer;
124  }
125 
126  T &
128  {
129  return *(T *)buffer;
130  }
131 };
132 
133 #endif // __SIM_VPTR_HH__
T * operator->()
Definition: vptr.hh:121
bool operator!() const
Definition: vptr.hh:75
const VPtr< T > & operator+=(int offset)
Definition: vptr.hh:87
VPtr< T > operator+(int offset)
Definition: vptr.hh:81
void refresh()
Definition: vptr.hh:65
T & operator*()
Definition: vptr.hh:127
virtual PortProxy & getVirtProxy()=0
Bitfield< 23, 0 > offset
Definition: types.hh:152
const VPtr< T > & operator=(Addr p)
Definition: vptr.hh:96
ThreadContext is the external interface to all thread state for anything outside of the CPU...
VPtr(ThreadContext *_tc, Addr p=0)
Definition: vptr.hh:48
PortProxy Object Declaration.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
T Type
Definition: vptr.hh:40
void readBlob(Addr addr, void *p, int size) const
Higher level interfaces based on the above.
Definition: port_proxy.hh:177
Addr buffer[(sizeof(T) -1)/sizeof(Addr)+1]
Definition: vptr.hh:45
This object is a proxy for a port or other object which implements the functional response protocol...
Definition: port_proxy.hh:80
Definition: vptr.hh:37
VPtr(const VPtr< U > &vp)
Definition: vptr.hh:55
Addr ptr
Definition: vptr.hh:44
const VPtr< T > & operator=(const VPtr< U > &vp)
Definition: vptr.hh:106
Bitfield< 0 > p
ThreadContext * tc
Definition: vptr.hh:43
~VPtr()
Definition: vptr.hh:61

Generated on Thu May 28 2020 16:21:35 for gem5 by doxygen 1.8.13