| 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 const int kWordSizeLog2 = 2; | 290 const int kWordSizeLog2 = 2; |
| 291 const uword kUwordMax = kMaxUint32; | 291 const uword kUwordMax = kMaxUint32; |
| 292 #else | 292 #else |
| 293 const int kWordSizeLog2 = 3; | 293 const int kWordSizeLog2 = 3; |
| 294 const uword kUwordMax = kMaxUint64; | 294 const uword kUwordMax = kMaxUint64; |
| 295 #endif | 295 #endif |
| 296 | 296 |
| 297 // Bit sizes. | 297 // Bit sizes. |
| 298 const int kBitsPerByte = 8; | 298 const int kBitsPerByte = 8; |
| 299 const int kBitsPerByteLog2 = 3; | 299 const int kBitsPerByteLog2 = 3; |
| 300 const int kBitsPerInt32 = sizeof(int32_t) * kBitsPerByte; |
| 300 const int kBitsPerWord = kWordSize * kBitsPerByte; | 301 const int kBitsPerWord = kWordSize * kBitsPerByte; |
| 301 | 302 |
| 302 // System-wide named constants. | 303 // System-wide named constants. |
| 303 const intptr_t KB = 1024; | 304 const intptr_t KB = 1024; |
| 304 const intptr_t KBLog2 = 10; | 305 const intptr_t KBLog2 = 10; |
| 305 const intptr_t MB = KB * KB; | 306 const intptr_t MB = KB * KB; |
| 306 const intptr_t MBLog2 = KBLog2 + KBLog2; | 307 const intptr_t MBLog2 = KBLog2 + KBLog2; |
| 307 const intptr_t GB = MB * KB; | 308 const intptr_t GB = MB * KB; |
| 308 const intptr_t GBLog2 = MBLog2 + KBLog2; | 309 const intptr_t GBLog2 = MBLog2 + KBLog2; |
| 309 | 310 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 // N.B.: As the GCC manual states, "[s]ince non-static C++ methods | 502 // N.B.: As the GCC manual states, "[s]ince non-static C++ methods |
| 502 // have an implicit 'this' argument, the arguments of such methods | 503 // have an implicit 'this' argument, the arguments of such methods |
| 503 // should be counted from two, not one." | 504 // should be counted from two, not one." |
| 504 #define PRINTF_ATTRIBUTE(string_index, first_to_check) \ | 505 #define PRINTF_ATTRIBUTE(string_index, first_to_check) \ |
| 505 __attribute__((__format__(__printf__, string_index, first_to_check))) | 506 __attribute__((__format__(__printf__, string_index, first_to_check))) |
| 506 #else | 507 #else |
| 507 #define PRINTF_ATTRIBUTE(string_index, first_to_check) | 508 #define PRINTF_ATTRIBUTE(string_index, first_to_check) |
| 508 #endif | 509 #endif |
| 509 | 510 |
| 510 #endif // PLATFORM_GLOBALS_H_ | 511 #endif // PLATFORM_GLOBALS_H_ |
| OLD | NEW |