Ruby: Use uint32_t instead of uint32 everywhere
[gem5.git] / src / mem / ruby / common / Address.hh
1 /*
2 * Copyright (c) 1999 Mark D. Hill and David A. Wood
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 __MEM_RUBY_COMMON_ADDRESS_HH__
30 #define __MEM_RUBY_COMMON_ADDRESS_HH__
31
32 #include <cassert>
33 #include <iomanip>
34 #include <iostream>
35
36 #include "base/hashmap.hh"
37 #include "mem/ruby/common/TypeDefines.hh"
38
39 const int ADDRESS_WIDTH = 64; // address width in bytes
40
41 class Address;
42 typedef Address PhysAddress;
43 typedef Address VirtAddress;
44
45 class Address
46 {
47 public:
48 Address()
49 : m_address(0)
50 { }
51
52 explicit
53 Address(physical_address_t address)
54 : m_address(address)
55 { }
56
57 Address(const Address& obj);
58 Address& operator=(const Address& obj);
59
60 void setAddress(physical_address_t address) { m_address = address; }
61 physical_address_t getAddress() const {return m_address;}
62 // selects bits inclusive
63 physical_address_t bitSelect(int small, int big) const;
64 physical_address_t bitRemove(int small, int big) const;
65 physical_address_t maskLowOrderBits(int number) const;
66 physical_address_t maskHighOrderBits(int number) const;
67 physical_address_t shiftLowOrderBits(int number) const;
68
69 physical_address_t getLineAddress() const;
70 physical_address_t getOffset() const;
71 void makeLineAddress();
72 void makeNextStrideAddress(int stride);
73
74 int getBankSetNum() const;
75 int getBankSetDist() const;
76
77 Index memoryModuleIndex() const;
78
79 void print(std::ostream& out) const;
80 void output(std::ostream& out) const;
81 void input(std::istream& in);
82
83 void
84 setOffset(int offset)
85 {
86 // first, zero out the offset bits
87 makeLineAddress();
88 m_address |= (physical_address_t) offset;
89 }
90
91 private:
92 physical_address_t m_address;
93 };
94
95 inline Address
96 line_address(const Address& addr)
97 {
98 Address temp(addr);
99 temp.makeLineAddress();
100 return temp;
101 }
102
103 inline bool
104 operator<(const Address& obj1, const Address& obj2)
105 {
106 return obj1.getAddress() < obj2.getAddress();
107 }
108
109 inline std::ostream&
110 operator<<(std::ostream& out, const Address& obj)
111 {
112 obj.print(out);
113 out << std::flush;
114 return out;
115 }
116
117 inline bool
118 operator==(const Address& obj1, const Address& obj2)
119 {
120 return (obj1.getAddress() == obj2.getAddress());
121 }
122
123 inline bool
124 operator!=(const Address& obj1, const Address& obj2)
125 {
126 return (obj1.getAddress() != obj2.getAddress());
127 }
128
129 // rips bits inclusive
130 inline physical_address_t
131 Address::bitSelect(int small, int big) const
132 {
133 physical_address_t mask;
134 assert((unsigned)big >= (unsigned)small);
135
136 if (big >= ADDRESS_WIDTH - 1) {
137 return (m_address >> small);
138 } else {
139 mask = ~((physical_address_t)~0 << (big + 1));
140 // FIXME - this is slow to manipulate a 64-bit number using 32-bits
141 physical_address_t partial = (m_address & mask);
142 return (partial >> small);
143 }
144 }
145
146 // removes bits inclusive
147 inline physical_address_t
148 Address::bitRemove(int small, int big) const
149 {
150 physical_address_t mask;
151 assert((unsigned)big >= (unsigned)small);
152
153 if (small >= ADDRESS_WIDTH - 1) {
154 return m_address;
155 } else if (big >= ADDRESS_WIDTH - 1) {
156 mask = (physical_address_t)~0 >> small;
157 return (m_address & mask);
158 } else if (small == 0) {
159 mask = (physical_address_t)~0 << big;
160 return (m_address & mask);
161 } else {
162 mask = ~((physical_address_t)~0 << small);
163 physical_address_t lower_bits = m_address & mask;
164 mask = (physical_address_t)~0 << (big + 1);
165 physical_address_t higher_bits = m_address & mask;
166
167 // Shift the valid high bits over the removed section
168 higher_bits = higher_bits >> (big - small + 1);
169 return (higher_bits | lower_bits);
170 }
171 }
172
173 inline physical_address_t
174 Address::maskLowOrderBits(int number) const
175 {
176 physical_address_t mask;
177
178 if (number >= ADDRESS_WIDTH - 1) {
179 mask = ~0;
180 } else {
181 mask = (physical_address_t)~0 << number;
182 }
183 return (m_address & mask);
184 }
185
186 inline physical_address_t
187 Address::maskHighOrderBits(int number) const
188 {
189 physical_address_t mask;
190
191 if (number >= ADDRESS_WIDTH - 1) {
192 mask = ~0;
193 } else {
194 mask = (physical_address_t)~0 >> number;
195 }
196 return (m_address & mask);
197 }
198
199 inline physical_address_t
200 Address::shiftLowOrderBits(int number) const
201 {
202 return (m_address >> number);
203 }
204
205 __hash_namespace_begin
206 template <> struct hash<Address>
207 {
208 size_t
209 operator()(const Address &s) const
210 {
211 return (size_t)s.getAddress();
212 }
213 };
214 __hash_namespace_end
215
216 namespace std {
217 template <> struct equal_to<Address>
218 {
219 bool
220 operator()(const Address& s1, const Address& s2) const
221 {
222 return s1 == s2;
223 }
224 };
225 } // namespace std
226
227 #endif // __MEM_RUBY_COMMON_ADDRESS_HH__