OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #ifndef PLATFORM_GLOBALS_H_ | 5 #ifndef PLATFORM_GLOBALS_H_ |
6 #define PLATFORM_GLOBALS_H_ | 6 #define PLATFORM_GLOBALS_H_ |
7 | 7 |
8 // __STDC_FORMAT_MACROS has to be defined before including <inttypes.h> to | 8 // __STDC_FORMAT_MACROS has to be defined before including <inttypes.h> to |
9 // enable platform independent printf format specifiers. | 9 // enable platform independent printf format specifiers. |
10 #ifndef __STDC_FORMAT_MACROS | 10 #ifndef __STDC_FORMAT_MACROS |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 const uword kUwordMax = kMaxUint32; | 292 const uword kUwordMax = kMaxUint32; |
293 #else | 293 #else |
294 const int kWordSizeLog2 = 3; | 294 const int kWordSizeLog2 = 3; |
295 const uword kUwordMax = kMaxUint64; | 295 const uword kUwordMax = kMaxUint64; |
296 #endif | 296 #endif |
297 | 297 |
298 // Bit sizes. | 298 // Bit sizes. |
299 const int kBitsPerByte = 8; | 299 const int kBitsPerByte = 8; |
300 const int kBitsPerByteLog2 = 3; | 300 const int kBitsPerByteLog2 = 3; |
301 const int kBitsPerWord = kWordSize * kBitsPerByte; | 301 const int kBitsPerWord = kWordSize * kBitsPerByte; |
| 302 const int kBitsPerWordLog2 = kWordSizeLog2 + kBitsPerByteLog2; |
302 | 303 |
303 // System-wide named constants. | 304 // System-wide named constants. |
304 const intptr_t KB = 1024; | 305 const intptr_t KB = 1024; |
305 const intptr_t KBLog2 = 10; | 306 const intptr_t KBLog2 = 10; |
306 const intptr_t MB = KB * KB; | 307 const intptr_t MB = KB * KB; |
307 const intptr_t MBLog2 = KBLog2 + KBLog2; | 308 const intptr_t MBLog2 = KBLog2 + KBLog2; |
308 const intptr_t GB = MB * KB; | 309 const intptr_t GB = MB * KB; |
309 const intptr_t GBLog2 = MBLog2 + KBLog2; | 310 const intptr_t GBLog2 = MBLog2 + KBLog2; |
310 | 311 |
311 const intptr_t KBInWords = KB >> kWordSizeLog2; | 312 const intptr_t KBInWords = KB >> kWordSizeLog2; |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 // N.B.: As the GCC manual states, "[s]ince non-static C++ methods | 512 // N.B.: As the GCC manual states, "[s]ince non-static C++ methods |
512 // have an implicit 'this' argument, the arguments of such methods | 513 // have an implicit 'this' argument, the arguments of such methods |
513 // should be counted from two, not one." | 514 // should be counted from two, not one." |
514 #define PRINTF_ATTRIBUTE(string_index, first_to_check) \ | 515 #define PRINTF_ATTRIBUTE(string_index, first_to_check) \ |
515 __attribute__((__format__(__printf__, string_index, first_to_check))) | 516 __attribute__((__format__(__printf__, string_index, first_to_check))) |
516 #else | 517 #else |
517 #define PRINTF_ATTRIBUTE(string_index, first_to_check) | 518 #define PRINTF_ATTRIBUTE(string_index, first_to_check) |
518 #endif | 519 #endif |
519 | 520 |
520 #endif // PLATFORM_GLOBALS_H_ | 521 #endif // PLATFORM_GLOBALS_H_ |
OLD | NEW |