| 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/atomic-utils.h" | 10 #include "src/base/atomic-utils.h" |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 V(Array_New) \ | 539 V(Array_New) \ |
| 540 V(BooleanObject_BooleanValue) \ | 540 V(BooleanObject_BooleanValue) \ |
| 541 V(BooleanObject_New) \ | 541 V(BooleanObject_New) \ |
| 542 V(Context_New) \ | 542 V(Context_New) \ |
| 543 V(Context_NewRemoteContext) \ | 543 V(Context_NewRemoteContext) \ |
| 544 V(DataView_New) \ | 544 V(DataView_New) \ |
| 545 V(Date_DateTimeConfigurationChangeNotification) \ | 545 V(Date_DateTimeConfigurationChangeNotification) \ |
| 546 V(Date_New) \ | 546 V(Date_New) \ |
| 547 V(Date_NumberValue) \ | 547 V(Date_NumberValue) \ |
| 548 V(Debug_Call) \ | 548 V(Debug_Call) \ |
| 549 V(Debug_GetMirror) \ | |
| 550 V(Error_New) \ | 549 V(Error_New) \ |
| 551 V(External_New) \ | 550 V(External_New) \ |
| 552 V(Float32Array_New) \ | 551 V(Float32Array_New) \ |
| 553 V(Float64Array_New) \ | 552 V(Float64Array_New) \ |
| 554 V(Function_Call) \ | 553 V(Function_Call) \ |
| 555 V(Function_New) \ | 554 V(Function_New) \ |
| 556 V(Function_NewInstance) \ | 555 V(Function_NewInstance) \ |
| 557 V(FunctionTemplate_GetFunction) \ | 556 V(FunctionTemplate_GetFunction) \ |
| 558 V(FunctionTemplate_New) \ | 557 V(FunctionTemplate_New) \ |
| 559 V(FunctionTemplate_NewRemoteInstance) \ | 558 V(FunctionTemplate_NewRemoteInstance) \ |
| (...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 | 1332 |
| 1334 explicit Counters(Isolate* isolate); | 1333 explicit Counters(Isolate* isolate); |
| 1335 | 1334 |
| 1336 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1335 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 1337 }; | 1336 }; |
| 1338 | 1337 |
| 1339 } // namespace internal | 1338 } // namespace internal |
| 1340 } // namespace v8 | 1339 } // namespace v8 |
| 1341 | 1340 |
| 1342 #endif // V8_COUNTERS_H_ | 1341 #endif // V8_COUNTERS_H_ |
| OLD | NEW |