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

Side by Side Diff: include/v8.h

Issue 1131783003: Embedded constant pools. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address remaining comments. 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/arm/assembler-arm.h » ('j') | src/arm/assembler-arm.cc » ('J')
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 6687 matching lines...) Expand 10 before | Expand all | Expand 10 after
6698 6698
6699 static const int kNodeClassIdOffset = 1 * kApiPointerSize; 6699 static const int kNodeClassIdOffset = 1 * kApiPointerSize;
6700 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; 6700 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3;
6701 static const int kNodeStateMask = 0x7; 6701 static const int kNodeStateMask = 0x7;
6702 static const int kNodeStateIsWeakValue = 2; 6702 static const int kNodeStateIsWeakValue = 2;
6703 static const int kNodeStateIsPendingValue = 3; 6703 static const int kNodeStateIsPendingValue = 3;
6704 static const int kNodeStateIsNearDeathValue = 4; 6704 static const int kNodeStateIsNearDeathValue = 4;
6705 static const int kNodeIsIndependentShift = 3; 6705 static const int kNodeIsIndependentShift = 3;
6706 static const int kNodeIsPartiallyDependentShift = 4; 6706 static const int kNodeIsPartiallyDependentShift = 4;
6707 6707
6708 static const int kJSObjectType = 0xbe; 6708 static const int kJSObjectType = 0xbd;
6709 static const int kFirstNonstringType = 0x80; 6709 static const int kFirstNonstringType = 0x80;
6710 static const int kOddballType = 0x83; 6710 static const int kOddballType = 0x83;
6711 static const int kForeignType = 0x86; 6711 static const int kForeignType = 0x86;
6712 6712
6713 static const int kUndefinedOddballKind = 5; 6713 static const int kUndefinedOddballKind = 5;
6714 static const int kNullOddballKind = 3; 6714 static const int kNullOddballKind = 3;
6715 6715
6716 static const uint32_t kNumIsolateDataSlots = 4; 6716 static const uint32_t kNumIsolateDataSlots = 4;
6717 6717
6718 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); 6718 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate);
(...skipping 1302 matching lines...) Expand 10 before | Expand all | Expand 10 after
8021 */ 8021 */
8022 8022
8023 8023
8024 } // namespace v8 8024 } // namespace v8
8025 8025
8026 8026
8027 #undef TYPE_CHECK 8027 #undef TYPE_CHECK
8028 8028
8029 8029
8030 #endif // V8_H_ 8030 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.h » ('j') | src/arm/assembler-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698