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

Side by Side Diff: include/v8.h

Issue 2419513002: [ic] Support data handlers that represent loads from prototypes. (Closed)
Patch Set: Rebasing Created 4 years, 2 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/ast-types.cc » ('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 8285 matching lines...) Expand 10 before | Expand all | Expand 10 after
8296 static const int kNodeClassIdOffset = 1 * kApiPointerSize; 8296 static const int kNodeClassIdOffset = 1 * kApiPointerSize;
8297 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; 8297 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3;
8298 static const int kNodeStateMask = 0x7; 8298 static const int kNodeStateMask = 0x7;
8299 static const int kNodeStateIsWeakValue = 2; 8299 static const int kNodeStateIsWeakValue = 2;
8300 static const int kNodeStateIsPendingValue = 3; 8300 static const int kNodeStateIsPendingValue = 3;
8301 static const int kNodeStateIsNearDeathValue = 4; 8301 static const int kNodeStateIsNearDeathValue = 4;
8302 static const int kNodeIsIndependentShift = 3; 8302 static const int kNodeIsIndependentShift = 3;
8303 static const int kNodeIsPartiallyDependentShift = 4; 8303 static const int kNodeIsPartiallyDependentShift = 4;
8304 static const int kNodeIsActiveShift = 4; 8304 static const int kNodeIsActiveShift = 4;
8305 8305
8306 static const int kJSObjectType = 0xba; 8306 static const int kJSObjectType = 0xbb;
8307 static const int kJSApiObjectType = 0xb9; 8307 static const int kJSApiObjectType = 0xba;
8308 static const int kFirstNonstringType = 0x80; 8308 static const int kFirstNonstringType = 0x80;
8309 static const int kOddballType = 0x83; 8309 static const int kOddballType = 0x83;
8310 static const int kForeignType = 0x87; 8310 static const int kForeignType = 0x87;
8311 8311
8312 static const int kUndefinedOddballKind = 5; 8312 static const int kUndefinedOddballKind = 5;
8313 static const int kNullOddballKind = 3; 8313 static const int kNullOddballKind = 3;
8314 8314
8315 static const uint32_t kNumIsolateDataSlots = 4; 8315 static const uint32_t kNumIsolateDataSlots = 4;
8316 8316
8317 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); 8317 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate);
(...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after
9665 */ 9665 */
9666 9666
9667 9667
9668 } // namespace v8 9668 } // namespace v8
9669 9669
9670 9670
9671 #undef TYPE_CHECK 9671 #undef TYPE_CHECK
9672 9672
9673 9673
9674 #endif // INCLUDE_V8_H_ 9674 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/ast/ast-types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698