OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 typedef uint16_t uc16; | 73 typedef uint16_t uc16; |
74 typedef signed int uc32; | 74 typedef signed int uc32; |
75 | 75 |
76 #ifndef ARM | 76 #ifndef ARM |
77 #define CAN_READ_UNALIGNED 1 | 77 #define CAN_READ_UNALIGNED 1 |
78 #endif | 78 #endif |
79 | 79 |
80 // ----------------------------------------------------------------------------- | 80 // ----------------------------------------------------------------------------- |
81 // Constants | 81 // Constants |
82 | 82 |
83 #ifdef DEBUG | |
84 const bool kDebug = true; | |
85 #else | |
86 const bool kDebug = false; | |
87 #endif // DEBUG | |
88 | |
89 const int KB = 1024; | 83 const int KB = 1024; |
90 const int MB = KB * KB; | 84 const int MB = KB * KB; |
91 const int GB = KB * KB * KB; | 85 const int GB = KB * KB * KB; |
92 const int kMaxInt = 0x7FFFFFFF; | 86 const int kMaxInt = 0x7FFFFFFF; |
93 const int kMinInt = -kMaxInt - 1; | 87 const int kMinInt = -kMaxInt - 1; |
94 | 88 |
95 const int kCharSize = sizeof(char); // NOLINT | 89 const int kCharSize = sizeof(char); // NOLINT |
96 const int kShortSize = sizeof(short); // NOLINT | 90 const int kShortSize = sizeof(short); // NOLINT |
97 const int kIntSize = sizeof(int); // NOLINT | 91 const int kIntSize = sizeof(int); // NOLINT |
98 const int kDoubleSize = sizeof(double); // NOLINT | 92 const int kDoubleSize = sizeof(double); // NOLINT |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
509 | 503 |
510 Dest dest; | 504 Dest dest; |
511 memcpy(&dest, &source, sizeof(dest)); | 505 memcpy(&dest, &source, sizeof(dest)); |
512 return dest; | 506 return dest; |
513 } | 507 } |
514 | 508 |
515 | 509 |
516 } } // namespace v8::internal | 510 } } // namespace v8::internal |
517 | 511 |
518 #endif // V8_GLOBALS_H_ | 512 #endif // V8_GLOBALS_H_ |
OLD | NEW |