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

Side by Side Diff: include/v8.h

Issue 1217943004: Vector ICs: Introduce an InstanceType for the type feedback vector. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Improved printer. Created 5 years, 5 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/factory.h » ('j') | src/heap/heap.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 6973 matching lines...) Expand 10 before | Expand all | Expand 10 after
6984 6984
6985 static const int kNodeClassIdOffset = 1 * kApiPointerSize; 6985 static const int kNodeClassIdOffset = 1 * kApiPointerSize;
6986 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; 6986 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3;
6987 static const int kNodeStateMask = 0x7; 6987 static const int kNodeStateMask = 0x7;
6988 static const int kNodeStateIsWeakValue = 2; 6988 static const int kNodeStateIsWeakValue = 2;
6989 static const int kNodeStateIsPendingValue = 3; 6989 static const int kNodeStateIsPendingValue = 3;
6990 static const int kNodeStateIsNearDeathValue = 4; 6990 static const int kNodeStateIsNearDeathValue = 4;
6991 static const int kNodeIsIndependentShift = 3; 6991 static const int kNodeIsIndependentShift = 3;
6992 static const int kNodeIsPartiallyDependentShift = 4; 6992 static const int kNodeIsPartiallyDependentShift = 4;
6993 6993
6994 static const int kJSObjectType = 0xbe; 6994 static const int kJSObjectType = 0xbf;
6995 static const int kFirstNonstringType = 0x80; 6995 static const int kFirstNonstringType = 0x80;
6996 static const int kOddballType = 0x83; 6996 static const int kOddballType = 0x83;
6997 static const int kForeignType = 0x87; 6997 static const int kForeignType = 0x87;
6998 6998
6999 static const int kUndefinedOddballKind = 5; 6999 static const int kUndefinedOddballKind = 5;
7000 static const int kNullOddballKind = 3; 7000 static const int kNullOddballKind = 3;
7001 7001
7002 static const uint32_t kNumIsolateDataSlots = 4; 7002 static const uint32_t kNumIsolateDataSlots = 4;
7003 7003
7004 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); 7004 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate);
(...skipping 1356 matching lines...) Expand 10 before | Expand all | Expand 10 after
8361 */ 8361 */
8362 8362
8363 8363
8364 } // namespace v8 8364 } // namespace v8
8365 8365
8366 8366
8367 #undef TYPE_CHECK 8367 #undef TYPE_CHECK
8368 8368
8369 8369
8370 #endif // V8_H_ 8370 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/factory.h » ('j') | src/heap/heap.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698