| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** \mainpage V8 API Reference Guide | 5 /** \mainpage V8 API Reference Guide |
| 6 * | 6 * |
| 7 * V8 is Google's open source JavaScript engine. | 7 * V8 is Google's open source JavaScript engine. |
| 8 * | 8 * |
| 9 * This set of documents provides reference material generated from the | 9 * This set of documents provides reference material generated from the |
| 10 * V8 header file, include/v8.h. | 10 * V8 header file, include/v8.h. |
| (...skipping 5891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5902 static const int kHeapObjectMapOffset = 0; | 5902 static const int kHeapObjectMapOffset = 0; |
| 5903 static const int kMapInstanceTypeAndBitFieldOffset = | 5903 static const int kMapInstanceTypeAndBitFieldOffset = |
| 5904 1 * kApiPointerSize + kApiIntSize; | 5904 1 * kApiPointerSize + kApiIntSize; |
| 5905 static const int kStringResourceOffset = 3 * kApiPointerSize; | 5905 static const int kStringResourceOffset = 3 * kApiPointerSize; |
| 5906 | 5906 |
| 5907 static const int kOddballKindOffset = 3 * kApiPointerSize; | 5907 static const int kOddballKindOffset = 3 * kApiPointerSize; |
| 5908 static const int kForeignAddressOffset = kApiPointerSize; | 5908 static const int kForeignAddressOffset = kApiPointerSize; |
| 5909 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; | 5909 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; |
| 5910 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; | 5910 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; |
| 5911 static const int kContextHeaderSize = 2 * kApiPointerSize; | 5911 static const int kContextHeaderSize = 2 * kApiPointerSize; |
| 5912 static const int kContextEmbedderDataIndex = 95; | 5912 static const int kContextEmbedderDataIndex = 76; |
| 5913 static const int kFullStringRepresentationMask = 0x07; | 5913 static const int kFullStringRepresentationMask = 0x07; |
| 5914 static const int kStringEncodingMask = 0x4; | 5914 static const int kStringEncodingMask = 0x4; |
| 5915 static const int kExternalTwoByteRepresentationTag = 0x02; | 5915 static const int kExternalTwoByteRepresentationTag = 0x02; |
| 5916 static const int kExternalOneByteRepresentationTag = 0x06; | 5916 static const int kExternalOneByteRepresentationTag = 0x06; |
| 5917 | 5917 |
| 5918 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; | 5918 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; |
| 5919 static const int kAmountOfExternalAllocatedMemoryOffset = | 5919 static const int kAmountOfExternalAllocatedMemoryOffset = |
| 5920 4 * kApiPointerSize; | 5920 4 * kApiPointerSize; |
| 5921 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = | 5921 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = |
| 5922 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; | 5922 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; |
| (...skipping 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7047 */ | 7047 */ |
| 7048 | 7048 |
| 7049 | 7049 |
| 7050 } // namespace v8 | 7050 } // namespace v8 |
| 7051 | 7051 |
| 7052 | 7052 |
| 7053 #undef TYPE_CHECK | 7053 #undef TYPE_CHECK |
| 7054 | 7054 |
| 7055 | 7055 |
| 7056 #endif // V8_H_ | 7056 #endif // V8_H_ |
| OLD | NEW |