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

Side by Side Diff: include/v8.h

Issue 2788413004: [inspector] cache stack frame for call sites (Closed)
Patch Set: rebased Created 3 years, 8 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/api.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 8637 matching lines...) Expand 10 before | Expand all | Expand 10 after
8648 8648
8649 static const int kNodeClassIdOffset = 1 * kApiPointerSize; 8649 static const int kNodeClassIdOffset = 1 * kApiPointerSize;
8650 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; 8650 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3;
8651 static const int kNodeStateMask = 0x7; 8651 static const int kNodeStateMask = 0x7;
8652 static const int kNodeStateIsWeakValue = 2; 8652 static const int kNodeStateIsWeakValue = 2;
8653 static const int kNodeStateIsPendingValue = 3; 8653 static const int kNodeStateIsPendingValue = 3;
8654 static const int kNodeStateIsNearDeathValue = 4; 8654 static const int kNodeStateIsNearDeathValue = 4;
8655 static const int kNodeIsIndependentShift = 3; 8655 static const int kNodeIsIndependentShift = 3;
8656 static const int kNodeIsActiveShift = 4; 8656 static const int kNodeIsActiveShift = 4;
8657 8657
8658 static const int kJSApiObjectType = 0xbb; 8658 static const int kJSApiObjectType = 0xbc;
8659 static const int kJSObjectType = 0xbc; 8659 static const int kJSObjectType = 0xbd;
Yang 2017/04/12 15:25:35 You don't have to make this change (and therefore
8660 static const int kFirstNonstringType = 0x80; 8660 static const int kFirstNonstringType = 0x80;
8661 static const int kOddballType = 0x82; 8661 static const int kOddballType = 0x82;
8662 static const int kForeignType = 0x86; 8662 static const int kForeignType = 0x86;
8663 8663
8664 static const int kUndefinedOddballKind = 5; 8664 static const int kUndefinedOddballKind = 5;
8665 static const int kNullOddballKind = 3; 8665 static const int kNullOddballKind = 3;
8666 8666
8667 static const uint32_t kNumIsolateDataSlots = 4; 8667 static const uint32_t kNumIsolateDataSlots = 4;
8668 8668
8669 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); 8669 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate);
(...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after
10000 */ 10000 */
10001 10001
10002 10002
10003 } // namespace v8 10003 } // namespace v8
10004 10004
10005 10005
10006 #undef TYPE_CHECK 10006 #undef TYPE_CHECK
10007 10007
10008 10008
10009 #endif // INCLUDE_V8_H_ 10009 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698