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 6218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6229 static const int kHeapObjectMapOffset = 0; | 6229 static const int kHeapObjectMapOffset = 0; |
6230 static const int kMapInstanceTypeAndBitFieldOffset = | 6230 static const int kMapInstanceTypeAndBitFieldOffset = |
6231 1 * kApiPointerSize + kApiIntSize; | 6231 1 * kApiPointerSize + kApiIntSize; |
6232 static const int kStringResourceOffset = 3 * kApiPointerSize; | 6232 static const int kStringResourceOffset = 3 * kApiPointerSize; |
6233 | 6233 |
6234 static const int kOddballKindOffset = 3 * kApiPointerSize; | 6234 static const int kOddballKindOffset = 3 * kApiPointerSize; |
6235 static const int kForeignAddressOffset = kApiPointerSize; | 6235 static const int kForeignAddressOffset = kApiPointerSize; |
6236 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; | 6236 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; |
6237 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; | 6237 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; |
6238 static const int kContextHeaderSize = 2 * kApiPointerSize; | 6238 static const int kContextHeaderSize = 2 * kApiPointerSize; |
6239 static const int kContextEmbedderDataIndex = 74; | 6239 static const int kContextEmbedderDataIndex = 76; |
6240 static const int kFullStringRepresentationMask = 0x07; | 6240 static const int kFullStringRepresentationMask = 0x07; |
6241 static const int kStringEncodingMask = 0x4; | 6241 static const int kStringEncodingMask = 0x4; |
6242 static const int kExternalTwoByteRepresentationTag = 0x02; | 6242 static const int kExternalTwoByteRepresentationTag = 0x02; |
6243 static const int kExternalOneByteRepresentationTag = 0x06; | 6243 static const int kExternalOneByteRepresentationTag = 0x06; |
6244 | 6244 |
6245 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; | 6245 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; |
6246 static const int kAmountOfExternalAllocatedMemoryOffset = | 6246 static const int kAmountOfExternalAllocatedMemoryOffset = |
6247 4 * kApiPointerSize; | 6247 4 * kApiPointerSize; |
6248 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = | 6248 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = |
6249 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; | 6249 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; |
(...skipping 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7541 */ | 7541 */ |
7542 | 7542 |
7543 | 7543 |
7544 } // namespace v8 | 7544 } // namespace v8 |
7545 | 7545 |
7546 | 7546 |
7547 #undef TYPE_CHECK | 7547 #undef TYPE_CHECK |
7548 | 7548 |
7549 | 7549 |
7550 #endif // V8_H_ | 7550 #endif // V8_H_ |
OLD | NEW |