gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups 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  * Authors: Nathan Binkert
29  */
30 
31 #ifndef __ARCH_ALPHA_VPTR_HH__
32 #define __ARCH_ALPHA_VPTR_HH__
33 
35 
36 class ThreadContext;
37 
38 template <class T>
39 class VPtr
40 {
41  public:
42  typedef T Type;
43 
44  protected:
47  Addr buffer[(sizeof(T)-1)/sizeof(Addr) + 1];
48 
49  public:
50  explicit VPtr(ThreadContext *_tc, Addr p = 0)
51  : tc(_tc), ptr(p)
52  {
53  refresh();
54  }
55 
56  template <class U>
57  VPtr(const VPtr<U> &vp)
58  : tc(vp.tc), ptr(vp.ptr)
59  {
60  refresh();
61  }
62 
64  {}
65 
66  void
68  {
69  if (!ptr)
70  return;
71 
73  proxy.readBlob(ptr, buffer, sizeof(T));
74  }
75 
76  bool
77  operator!() const
78  {
79  return ptr == 0;
80  }
81 
82  VPtr<T>
84  {
85  return VPtr<T>(tc, ptr + offset);
86  }
87 
88  const VPtr<T> &
90  {
91  ptr += offset;
92  refresh();
93 
94  return *this;
95  }
96 
97  const VPtr<T> &
99  {
100  ptr = p;
101  refresh();
102 
103  return *this;
104  }
105 
106  template <class U>
107  const VPtr<T> &
108  operator=(const VPtr<U> &vp)
109  {
110  tc = vp.tc;
111  ptr = vp.ptr;
112  refresh();
113 
114  return *this;
115  }
116 
117  operator T *()
118  {
119  return (T *)buffer;
120  }
121 
122  T *
124  {
125  return (T *)buffer;
126  }
127 
128  T &
130  {
131  return *(T *)buffer;
132  }
133 };
134 
135 #endif // __ARCH_ALPHA_VPTR_HH__
A TranslatingPortProxy in FS mode translates a virtual address to a physical address and then calls t...
T * operator->()
Definition: vptr.hh:123
const VPtr< T > & operator+=(int offset)
Definition: vptr.hh:89
Addr buffer[(sizeof(T)-1)/sizeof(Addr)+1]
Definition: vptr.hh:47
VPtr< T > operator+(int offset)
Definition: vptr.hh:83
void refresh()
Definition: vptr.hh:67
T & operator*()
Definition: vptr.hh:129
Bitfield< 23, 0 > offset
Definition: types.hh:149
const VPtr< T > & operator=(Addr p)
Definition: vptr.hh:98
ThreadContext is the external interface to all thread state for anything outside of the CPU...
VPtr(ThreadContext *_tc, Addr p=0)
Definition: vptr.hh:50
virtual void readBlob(Addr addr, uint8_t *p, int size) const
Version of readblob that translates virt->phys and deals with page boundries.
bool operator!() const
Definition: vptr.hh:77
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
T Type
Definition: vptr.hh:42
virtual FSTranslatingPortProxy & getVirtProxy()=0
TranslatingPortProxy Object Declaration for FS.
Definition: vptr.hh:39
VPtr(const VPtr< U > &vp)
Definition: vptr.hh:57
Addr ptr
Definition: vptr.hh:46
const VPtr< T > & operator=(const VPtr< U > &vp)
Definition: vptr.hh:108
Bitfield< 0 > p
ThreadContext * tc
Definition: vptr.hh:45
~VPtr()
Definition: vptr.hh:63

Generated on Fri Jun 9 2017 13:03:52 for gem5 by doxygen 1.8.6