OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 const int MB = KB * KB; | 235 const int MB = KB * KB; |
236 const int GB = KB * KB * KB; | 236 const int GB = KB * KB * KB; |
237 const int kMaxInt = 0x7FFFFFFF; | 237 const int kMaxInt = 0x7FFFFFFF; |
238 const int kMinInt = -kMaxInt - 1; | 238 const int kMinInt = -kMaxInt - 1; |
239 | 239 |
240 const uint32_t kMaxUInt32 = 0xFFFFFFFFu; | 240 const uint32_t kMaxUInt32 = 0xFFFFFFFFu; |
241 | 241 |
242 const int kCharSize = sizeof(char); // NOLINT | 242 const int kCharSize = sizeof(char); // NOLINT |
243 const int kShortSize = sizeof(short); // NOLINT | 243 const int kShortSize = sizeof(short); // NOLINT |
244 const int kIntSize = sizeof(int); // NOLINT | 244 const int kIntSize = sizeof(int); // NOLINT |
| 245 const int kInt32Size = sizeof(int32_t); // NOLINT |
| 246 const int kInt64Size = sizeof(int64_t); // NOLINT |
245 const int kDoubleSize = sizeof(double); // NOLINT | 247 const int kDoubleSize = sizeof(double); // NOLINT |
246 const int kIntptrSize = sizeof(intptr_t); // NOLINT | 248 const int kIntptrSize = sizeof(intptr_t); // NOLINT |
247 const int kPointerSize = sizeof(void*); // NOLINT | 249 const int kPointerSize = sizeof(void*); // NOLINT |
248 const int kRegisterSize = kPointerSize; | 250 const int kRegisterSize = kPointerSize; |
249 const int kPCOnStackSize = kRegisterSize; | 251 const int kPCOnStackSize = kRegisterSize; |
250 const int kFPOnStackSize = kRegisterSize; | 252 const int kFPOnStackSize = kRegisterSize; |
251 | 253 |
252 const int kDoubleSizeLog2 = 3; | 254 const int kDoubleSizeLog2 = 3; |
253 | 255 |
254 // Size of the state of a the random number generator. | 256 // Size of the state of a the random number generator. |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 // the backend, so both modes are represented by the kStrictMode value. | 445 // the backend, so both modes are represented by the kStrictMode value. |
444 enum StrictModeFlag { | 446 enum StrictModeFlag { |
445 kNonStrictMode, | 447 kNonStrictMode, |
446 kStrictMode | 448 kStrictMode |
447 }; | 449 }; |
448 | 450 |
449 | 451 |
450 } } // namespace v8::internal | 452 } } // namespace v8::internal |
451 | 453 |
452 #endif // V8_GLOBALS_H_ | 454 #endif // V8_GLOBALS_H_ |
OLD | NEW |