OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 // Compare function to compare the object pointer value of two | 146 // Compare function to compare the object pointer value of two |
147 // handlified objects. The handles are passed as pointers to the | 147 // handlified objects. The handles are passed as pointers to the |
148 // handles. | 148 // handles. |
149 template<typename T> class Handle; // Forward declaration. | 149 template<typename T> class Handle; // Forward declaration. |
150 template <typename T> | 150 template <typename T> |
151 int HandleObjectPointerCompare(const Handle<T>* a, const Handle<T>* b) { | 151 int HandleObjectPointerCompare(const Handle<T>* a, const Handle<T>* b) { |
152 return Compare<T*>(*(*a), *(*b)); | 152 return Compare<T*>(*(*a), *(*b)); |
153 } | 153 } |
154 | 154 |
155 | 155 |
156 template<typename int_type> | 156 // Returns the smallest power of two which is >= x. If you pass in a |
157 inline int RoundUpToPowerOf2(int_type x_argument) { | 157 // number that is already a power of two, it is returned as is. |
158 uintptr_t x = static_cast<uintptr_t>(x_argument); | 158 // Implementation is from "Hacker's Delight" by Henry S. Warren, Jr., |
| 159 // figure 3-3, page 48, where the function is called clp2. |
| 160 inline uint32_t RoundUpToPowerOf2(uint32_t x) { |
159 ASSERT(x <= 0x80000000u); | 161 ASSERT(x <= 0x80000000u); |
160 x = x - 1; | 162 x = x - 1; |
161 x = x | (x >> 1); | 163 x = x | (x >> 1); |
162 x = x | (x >> 2); | 164 x = x | (x >> 2); |
163 x = x | (x >> 4); | 165 x = x | (x >> 4); |
164 x = x | (x >> 8); | 166 x = x | (x >> 8); |
165 x = x | (x >> 16); | 167 x = x | (x >> 16); |
166 return static_cast<int_type>(x + 1); | 168 return x + 1; |
167 } | 169 } |
168 | 170 |
169 | 171 |
170 inline uint32_t RoundDownToPowerOf2(uint32_t x) { | 172 inline uint32_t RoundDownToPowerOf2(uint32_t x) { |
171 uint32_t rounded_up = RoundUpToPowerOf2(x); | 173 uint32_t rounded_up = RoundUpToPowerOf2(x); |
172 if (rounded_up > x) return rounded_up >> 1; | 174 if (rounded_up > x) return rounded_up >> 1; |
173 return rounded_up; | 175 return rounded_up; |
174 } | 176 } |
175 | 177 |
176 | 178 |
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
940 ASSERT(element < static_cast<int>(sizeof(T) * CHAR_BIT)); | 942 ASSERT(element < static_cast<int>(sizeof(T) * CHAR_BIT)); |
941 return 1 << element; | 943 return 1 << element; |
942 } | 944 } |
943 | 945 |
944 T bits_; | 946 T bits_; |
945 }; | 947 }; |
946 | 948 |
947 } } // namespace v8::internal | 949 } } // namespace v8::internal |
948 | 950 |
949 #endif // V8_UTILS_H_ | 951 #endif // V8_UTILS_H_ |
OLD | NEW |