| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 class Debugger; | 124 class Debugger; |
| 125 class DebugInfo; | 125 class DebugInfo; |
| 126 class Descriptor; | 126 class Descriptor; |
| 127 class DescriptorArray; | 127 class DescriptorArray; |
| 128 class Expression; | 128 class Expression; |
| 129 class ExternalReference; | 129 class ExternalReference; |
| 130 class FixedArray; | 130 class FixedArray; |
| 131 class FunctionEntry; | 131 class FunctionEntry; |
| 132 class FunctionLiteral; | 132 class FunctionLiteral; |
| 133 class FunctionTemplateInfo; | 133 class FunctionTemplateInfo; |
| 134 class NumberDictionary; | 134 class SeededNumberDictionary; |
| 135 class UnseededNumberDictionary; |
| 135 class StringDictionary; | 136 class StringDictionary; |
| 136 template <typename T> class Handle; | 137 template <typename T> class Handle; |
| 137 class Heap; | 138 class Heap; |
| 138 class HeapObject; | 139 class HeapObject; |
| 139 class IC; | 140 class IC; |
| 140 class InterceptorInfo; | 141 class InterceptorInfo; |
| 141 class IterationStatement; | 142 class IterationStatement; |
| 142 class JSArray; | 143 class JSArray; |
| 143 class JSFunction; | 144 class JSFunction; |
| 144 class JSObject; | 145 class JSObject; |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 static const uint32_t kNaNOrInfinityLowerBoundUpper32 = 0x7FF00000; | 507 static const uint32_t kNaNOrInfinityLowerBoundUpper32 = 0x7FF00000; |
| 507 | 508 |
| 508 const uint64_t kHoleNanInt64 = | 509 const uint64_t kHoleNanInt64 = |
| 509 (static_cast<uint64_t>(kHoleNanUpper32) << 32) | kHoleNanLower32; | 510 (static_cast<uint64_t>(kHoleNanUpper32) << 32) | kHoleNanLower32; |
| 510 const uint64_t kLastNonNaNInt64 = | 511 const uint64_t kLastNonNaNInt64 = |
| 511 (static_cast<uint64_t>(kNaNOrInfinityLowerBoundUpper32) << 32); | 512 (static_cast<uint64_t>(kNaNOrInfinityLowerBoundUpper32) << 32); |
| 512 | 513 |
| 513 } } // namespace v8::internal | 514 } } // namespace v8::internal |
| 514 | 515 |
| 515 #endif // V8_V8GLOBALS_H_ | 516 #endif // V8_V8GLOBALS_H_ |
| OLD | NEW |