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 6100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6111 4 * kApiPointerSize; | 6111 4 * kApiPointerSize; |
6112 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = | 6112 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = |
6113 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; | 6113 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; |
6114 static const int kIsolateRootsOffset = | 6114 static const int kIsolateRootsOffset = |
6115 kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset + kApiInt64Size + | 6115 kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset + kApiInt64Size + |
6116 kApiPointerSize; | 6116 kApiPointerSize; |
6117 static const int kUndefinedValueRootIndex = 5; | 6117 static const int kUndefinedValueRootIndex = 5; |
6118 static const int kNullValueRootIndex = 7; | 6118 static const int kNullValueRootIndex = 7; |
6119 static const int kTrueValueRootIndex = 8; | 6119 static const int kTrueValueRootIndex = 8; |
6120 static const int kFalseValueRootIndex = 9; | 6120 static const int kFalseValueRootIndex = 9; |
6121 static const int kEmptyStringRootIndex = 153; | 6121 static const int kEmptyStringRootIndex = 154; |
6122 | 6122 |
6123 // The external allocation limit should be below 256 MB on all architectures | 6123 // The external allocation limit should be below 256 MB on all architectures |
6124 // to avoid that resource-constrained embedders run low on memory. | 6124 // to avoid that resource-constrained embedders run low on memory. |
6125 static const int kExternalAllocationLimit = 192 * 1024 * 1024; | 6125 static const int kExternalAllocationLimit = 192 * 1024 * 1024; |
6126 | 6126 |
6127 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 6127 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
6128 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 6128 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
6129 static const int kNodeStateMask = 0xf; | 6129 static const int kNodeStateMask = 0xf; |
6130 static const int kNodeStateIsWeakValue = 2; | 6130 static const int kNodeStateIsWeakValue = 2; |
6131 static const int kNodeStateIsPendingValue = 3; | 6131 static const int kNodeStateIsPendingValue = 3; |
(...skipping 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7407 */ | 7407 */ |
7408 | 7408 |
7409 | 7409 |
7410 } // namespace v8 | 7410 } // namespace v8 |
7411 | 7411 |
7412 | 7412 |
7413 #undef TYPE_CHECK | 7413 #undef TYPE_CHECK |
7414 | 7414 |
7415 | 7415 |
7416 #endif // V8_H_ | 7416 #endif // V8_H_ |
OLD | NEW |