OLD | NEW |
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 #ifndef V8_COUNTERS_H_ | 5 #ifndef V8_COUNTERS_H_ |
6 #define V8_COUNTERS_H_ | 6 #define V8_COUNTERS_H_ |
7 | 7 |
8 #include "include/v8.h" | 8 #include "include/v8.h" |
9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
10 #include "src/base/platform/elapsed-timer.h" | 10 #include "src/base/platform/elapsed-timer.h" |
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 | 524 |
525 #define FOR_EACH_API_COUNTER(V) \ | 525 #define FOR_EACH_API_COUNTER(V) \ |
526 V(ArrayBuffer_Cast) \ | 526 V(ArrayBuffer_Cast) \ |
527 V(ArrayBuffer_Neuter) \ | 527 V(ArrayBuffer_Neuter) \ |
528 V(ArrayBuffer_New) \ | 528 V(ArrayBuffer_New) \ |
529 V(Array_CloneElementAt) \ | 529 V(Array_CloneElementAt) \ |
530 V(Array_New) \ | 530 V(Array_New) \ |
531 V(BooleanObject_BooleanValue) \ | 531 V(BooleanObject_BooleanValue) \ |
532 V(BooleanObject_New) \ | 532 V(BooleanObject_New) \ |
533 V(Context_New) \ | 533 V(Context_New) \ |
| 534 V(Context_NewRemoteContext) \ |
534 V(DataView_New) \ | 535 V(DataView_New) \ |
535 V(Date_DateTimeConfigurationChangeNotification) \ | 536 V(Date_DateTimeConfigurationChangeNotification) \ |
536 V(Date_New) \ | 537 V(Date_New) \ |
537 V(Date_NumberValue) \ | 538 V(Date_NumberValue) \ |
538 V(Debug_Call) \ | 539 V(Debug_Call) \ |
539 V(Debug_GetMirror) \ | 540 V(Debug_GetMirror) \ |
540 V(Error_New) \ | 541 V(Error_New) \ |
541 V(External_New) \ | 542 V(External_New) \ |
542 V(Float32Array_New) \ | 543 V(Float32Array_New) \ |
543 V(Float64Array_New) \ | 544 V(Float64Array_New) \ |
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1234 | 1235 |
1235 explicit Counters(Isolate* isolate); | 1236 explicit Counters(Isolate* isolate); |
1236 | 1237 |
1237 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1238 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
1238 }; | 1239 }; |
1239 | 1240 |
1240 } // namespace internal | 1241 } // namespace internal |
1241 } // namespace v8 | 1242 } // namespace v8 |
1242 | 1243 |
1243 #endif // V8_COUNTERS_H_ | 1244 #endif // V8_COUNTERS_H_ |
OLD | NEW |