| 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 6714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6725 static const int kHeapObjectMapOffset = 0; | 6725 static const int kHeapObjectMapOffset = 0; |
| 6726 static const int kMapInstanceTypeAndBitFieldOffset = | 6726 static const int kMapInstanceTypeAndBitFieldOffset = |
| 6727 1 * kApiPointerSize + kApiIntSize; | 6727 1 * kApiPointerSize + kApiIntSize; |
| 6728 static const int kStringResourceOffset = 3 * kApiPointerSize; | 6728 static const int kStringResourceOffset = 3 * kApiPointerSize; |
| 6729 | 6729 |
| 6730 static const int kOddballKindOffset = 3 * kApiPointerSize; | 6730 static const int kOddballKindOffset = 3 * kApiPointerSize; |
| 6731 static const int kForeignAddressOffset = kApiPointerSize; | 6731 static const int kForeignAddressOffset = kApiPointerSize; |
| 6732 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; | 6732 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; |
| 6733 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; | 6733 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; |
| 6734 static const int kContextHeaderSize = 2 * kApiPointerSize; | 6734 static const int kContextHeaderSize = 2 * kApiPointerSize; |
| 6735 static const int kContextEmbedderDataIndex = 77; | 6735 static const int kContextEmbedderDataIndex = 78; |
| 6736 static const int kFullStringRepresentationMask = 0x07; | 6736 static const int kFullStringRepresentationMask = 0x07; |
| 6737 static const int kStringEncodingMask = 0x4; | 6737 static const int kStringEncodingMask = 0x4; |
| 6738 static const int kExternalTwoByteRepresentationTag = 0x02; | 6738 static const int kExternalTwoByteRepresentationTag = 0x02; |
| 6739 static const int kExternalOneByteRepresentationTag = 0x06; | 6739 static const int kExternalOneByteRepresentationTag = 0x06; |
| 6740 | 6740 |
| 6741 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; | 6741 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; |
| 6742 static const int kAmountOfExternalAllocatedMemoryOffset = | 6742 static const int kAmountOfExternalAllocatedMemoryOffset = |
| 6743 4 * kApiPointerSize; | 6743 4 * kApiPointerSize; |
| 6744 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = | 6744 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = |
| 6745 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; | 6745 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; |
| (...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8090 */ | 8090 */ |
| 8091 | 8091 |
| 8092 | 8092 |
| 8093 } // namespace v8 | 8093 } // namespace v8 |
| 8094 | 8094 |
| 8095 | 8095 |
| 8096 #undef TYPE_CHECK | 8096 #undef TYPE_CHECK |
| 8097 | 8097 |
| 8098 | 8098 |
| 8099 #endif // V8_H_ | 8099 #endif // V8_H_ |
| OLD | NEW |