Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(789)

Side by Side Diff: include/v8.h

Issue 1135493006: Revert of [strong] Object literals create strong objects (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/ast.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 6655 matching lines...) Expand 10 before | Expand all | Expand 10 after
6666 static const int kHeapObjectMapOffset = 0; 6666 static const int kHeapObjectMapOffset = 0;
6667 static const int kMapInstanceTypeAndBitFieldOffset = 6667 static const int kMapInstanceTypeAndBitFieldOffset =
6668 1 * kApiPointerSize + kApiIntSize; 6668 1 * kApiPointerSize + kApiIntSize;
6669 static const int kStringResourceOffset = 3 * kApiPointerSize; 6669 static const int kStringResourceOffset = 3 * kApiPointerSize;
6670 6670
6671 static const int kOddballKindOffset = 3 * kApiPointerSize; 6671 static const int kOddballKindOffset = 3 * kApiPointerSize;
6672 static const int kForeignAddressOffset = kApiPointerSize; 6672 static const int kForeignAddressOffset = kApiPointerSize;
6673 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; 6673 static const int kJSObjectHeaderSize = 3 * kApiPointerSize;
6674 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; 6674 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize;
6675 static const int kContextHeaderSize = 2 * kApiPointerSize; 6675 static const int kContextHeaderSize = 2 * kApiPointerSize;
6676 static const int kContextEmbedderDataIndex = 78; 6676 static const int kContextEmbedderDataIndex = 77;
6677 static const int kFullStringRepresentationMask = 0x07; 6677 static const int kFullStringRepresentationMask = 0x07;
6678 static const int kStringEncodingMask = 0x4; 6678 static const int kStringEncodingMask = 0x4;
6679 static const int kExternalTwoByteRepresentationTag = 0x02; 6679 static const int kExternalTwoByteRepresentationTag = 0x02;
6680 static const int kExternalOneByteRepresentationTag = 0x06; 6680 static const int kExternalOneByteRepresentationTag = 0x06;
6681 6681
6682 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; 6682 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize;
6683 static const int kAmountOfExternalAllocatedMemoryOffset = 6683 static const int kAmountOfExternalAllocatedMemoryOffset =
6684 4 * kApiPointerSize; 6684 4 * kApiPointerSize;
6685 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = 6685 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset =
6686 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; 6686 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size;
(...skipping 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after
8022 */ 8022 */
8023 8023
8024 8024
8025 } // namespace v8 8025 } // namespace v8
8026 8026
8027 8027
8028 #undef TYPE_CHECK 8028 #undef TYPE_CHECK
8029 8029
8030 8030
8031 #endif // V8_H_ 8031 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/ast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698