gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pagetable.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002-2005 The Regents of The University of Michigan
3  * Copyright (c) 2007 MIPS Technologies, Inc.
4  * Copyright (c) 2007-2008 The Florida State University
5  * Copyright (c) 2009 The University of Edinburgh
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are
10  * met: redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer;
12  * redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution;
15  * neither the name of the copyright holders nor the names of its
16  * contributors may be used to endorse or promote products derived from
17  * this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  *
31  * Authors: Nathan Binkert
32  * Steve Reinhardt
33  * Jaidev Patwardhan
34  * Stephen Hines
35  * Timothy M. Jones
36  */
37 
38 #ifndef __ARCH_POWER_PAGETABLE_H__
39 #define __ARCH_POWER_PAGETABLE_H__
40 
41 #include "arch/power/isa_traits.hh"
42 #include "arch/power/utility.hh"
43 #include "arch/power/vtophys.hh"
44 
45 namespace PowerISA {
46 
47 struct VAddr
48 {
49  static const int ImplBits = 43;
50  static const Addr ImplMask = (ULL(1) << ImplBits) - 1;
51  static const Addr UnImplMask = ~ImplMask;
52 
54 
56  : addr(a)
57  {}
58 
59  operator Addr() const
60  {
61  return addr;
62  }
63 
64  const VAddr
66  {
67  addr = a;
68  return *this;
69  }
70 
71  Addr
72  vpn() const
73  {
74  return (addr & ImplMask) >> PageShift;
75  }
76 
77  Addr
78  page() const
79  {
80  return addr & Page_Mask;
81  }
82 
83  Addr
84  offset() const
85  {
86  return addr & PageOffset;
87  }
88 
89  Addr
90  level3() const
91  {
92  return PowerISA::PteAddr(addr >> PageShift);
93  }
94 
95  Addr
96  level2() const
97  {
99  }
100 
101  Addr
102  level1() const
103  {
104  return PowerISA::PteAddr(addr >> (2 * NPtePageShift + PageShift));
105  }
106 };
107 
108 // ITB/DTB page table entry
109 struct PTE
110 {
111  // What parts of the VAddr (from bits 28..11) should be used in
112  // translation (includes Mask and MaskX from PageMask)
114 
115  // Virtual Page Number (/2) (Includes VPN2 + VPN2X .. bits 31..11
116  // from EntryHi)
118 
119  // Address Space ID (8 bits) // Lower 8 bits of EntryHi
120  uint8_t asid;
121 
122  // Global Bit - Obtained by an *AND* of EntryLo0 and EntryLo1 G bit
123  bool G;
124 
125  /* Contents of Entry Lo0 */
126  Addr PFN0; // Physical Frame Number - Even
127  bool D0; // Even entry Dirty Bit
128  bool V0; // Even entry Valid Bit
129  uint8_t C0; // Cache Coherency Bits - Even
130 
131  /* Contents of Entry Lo1 */
132  Addr PFN1; // Physical Frame Number - Odd
133  bool D1; // Odd entry Dirty Bit
134  bool V1; // Odd entry Valid Bit
135  uint8_t C1; // Cache Coherency Bits (3 bits)
136 
137  // The next few variables are put in as optimizations to reduce TLB
138  // lookup overheads. For a given Mask, what is the address shift amount
139  // and what is the OffsetMask
142 
143  bool
145  {
146  return (V0 | V1);
147  };
148 
149  void serialize(CheckpointOut &cp) const;
150  void unserialize(CheckpointIn &cp);
151 };
152 
153 } // namespace PowerISA
154 
155 #endif // __ARCH_POWER_PAGETABLE_H__
156 
Addr PteAddr(Addr a)
Definition: vtophys.hh:50
uint8_t C0
Definition: pagetable.hh:129
const VAddr & operator=(Addr a)
Definition: pagetable.hh:65
void serialize(CheckpointOut &cp) const
Definition: pagetable.cc:46
VAddr(Addr a)
Definition: pagetable.hh:55
Addr level2() const
Definition: pagetable.hh:96
uint8_t asid
Definition: pagetable.hh:120
Addr offset() const
Definition: pagetable.hh:84
bool Valid()
Definition: pagetable.hh:144
const Addr PageOffset
Definition: isa_traits.hh:57
static const Addr ImplMask
Definition: pagetable.hh:50
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
#define ULL(N)
uint64_t constant
Definition: types.hh:50
Bitfield< 5 > a
Definition: pagetable.hh:90
const Addr NPtePageShift
Definition: isa_traits.hh:60
Addr page() const
Definition: pagetable.hh:78
Addr vpn() const
Definition: pagetable.hh:72
uint8_t C1
Definition: pagetable.hh:135
const Addr Page_Mask
Definition: isa_traits.hh:56
std::ostream CheckpointOut
Definition: serialize.hh:67
int AddrShiftAmount
Definition: pagetable.hh:140
static const int ImplBits
Definition: pagetable.hh:49
const Addr PageShift
Definition: isa_traits.hh:54
void unserialize(CheckpointIn &cp)
Definition: pagetable.cc:65
static const Addr UnImplMask
Definition: pagetable.hh:51
Addr level1() const
Definition: pagetable.hh:102
Addr level3() const
Definition: pagetable.hh:90

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