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 6900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6911 static const int kHeapObjectMapOffset = 0; | 6911 static const int kHeapObjectMapOffset = 0; |
6912 static const int kMapInstanceTypeAndBitFieldOffset = | 6912 static const int kMapInstanceTypeAndBitFieldOffset = |
6913 1 * kApiPointerSize + kApiIntSize; | 6913 1 * kApiPointerSize + kApiIntSize; |
6914 static const int kStringResourceOffset = 3 * kApiPointerSize; | 6914 static const int kStringResourceOffset = 3 * kApiPointerSize; |
6915 | 6915 |
6916 static const int kOddballKindOffset = 3 * kApiPointerSize; | 6916 static const int kOddballKindOffset = 3 * kApiPointerSize; |
6917 static const int kForeignAddressOffset = kApiPointerSize; | 6917 static const int kForeignAddressOffset = kApiPointerSize; |
6918 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; | 6918 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; |
6919 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; | 6919 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; |
6920 static const int kContextHeaderSize = 2 * kApiPointerSize; | 6920 static const int kContextHeaderSize = 2 * kApiPointerSize; |
6921 static const int kContextEmbedderDataIndex = 86; | 6921 static const int kContextEmbedderDataIndex = 83; |
6922 static const int kFullStringRepresentationMask = 0x07; | 6922 static const int kFullStringRepresentationMask = 0x07; |
6923 static const int kStringEncodingMask = 0x4; | 6923 static const int kStringEncodingMask = 0x4; |
6924 static const int kExternalTwoByteRepresentationTag = 0x02; | 6924 static const int kExternalTwoByteRepresentationTag = 0x02; |
6925 static const int kExternalOneByteRepresentationTag = 0x06; | 6925 static const int kExternalOneByteRepresentationTag = 0x06; |
6926 | 6926 |
6927 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; | 6927 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; |
6928 static const int kAmountOfExternalAllocatedMemoryOffset = | 6928 static const int kAmountOfExternalAllocatedMemoryOffset = |
6929 4 * kApiPointerSize; | 6929 4 * kApiPointerSize; |
6930 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = | 6930 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = |
6931 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; | 6931 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; |
(...skipping 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8317 */ | 8317 */ |
8318 | 8318 |
8319 | 8319 |
8320 } // namespace v8 | 8320 } // namespace v8 |
8321 | 8321 |
8322 | 8322 |
8323 #undef TYPE_CHECK | 8323 #undef TYPE_CHECK |
8324 | 8324 |
8325 | 8325 |
8326 #endif // V8_H_ | 8326 #endif // V8_H_ |
OLD | NEW |