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

Side by Side Diff: include/v8.h

Issue 1558113002: Add UseCounters for various standards-related code paths (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix accidental redefinition Created 4 years, 11 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/heap/heap.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 5427 matching lines...) Expand 10 before | Expand all | Expand 10 after
5438 kMarkDequeOverflow = 3, 5438 kMarkDequeOverflow = 3,
5439 kStoreBufferOverflow = 4, 5439 kStoreBufferOverflow = 4,
5440 kSlotsBufferOverflow = 5, 5440 kSlotsBufferOverflow = 5,
5441 kObjectObserve = 6, 5441 kObjectObserve = 6,
5442 kForcedGC = 7, 5442 kForcedGC = 7,
5443 kSloppyMode = 8, 5443 kSloppyMode = 8,
5444 kStrictMode = 9, 5444 kStrictMode = 9,
5445 kStrongMode = 10, 5445 kStrongMode = 10,
5446 kRegExpPrototypeStickyGetter = 11, 5446 kRegExpPrototypeStickyGetter = 11,
5447 kRegExpPrototypeToString = 12, 5447 kRegExpPrototypeToString = 12,
5448 kRegExpPrototypeUnicodeGetter = 13,
5449 kIntlV8Parse = 14,
5450 kIntlPattern = 15,
5451 kIntlResolved = 16,
5452 kPromiseChain = 17,
5453 kPromiseAccept = 18,
5454 kPromiseDefer = 19,
5448 kUseCounterFeatureCount // This enum value must be last. 5455 kUseCounterFeatureCount // This enum value must be last.
5449 }; 5456 };
5450 5457
5451 typedef void (*UseCounterCallback)(Isolate* isolate, 5458 typedef void (*UseCounterCallback)(Isolate* isolate,
5452 UseCounterFeature feature); 5459 UseCounterFeature feature);
5453 5460
5454 5461
5455 /** 5462 /**
5456 * Creates a new isolate. Does not change the currently entered 5463 * Creates a new isolate. Does not change the currently entered
5457 * isolate. 5464 * isolate.
(...skipping 3047 matching lines...) Expand 10 before | Expand all | Expand 10 after
8505 */ 8512 */
8506 8513
8507 8514
8508 } // namespace v8 8515 } // namespace v8
8509 8516
8510 8517
8511 #undef TYPE_CHECK 8518 #undef TYPE_CHECK
8512 8519
8513 8520
8514 #endif // INCLUDE_V8_H_ 8521 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698