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 556 matching lines...) Loading... |
567 V(Map_Clear) \ | 567 V(Map_Clear) \ |
568 V(Map_Delete) \ | 568 V(Map_Delete) \ |
569 V(Map_Get) \ | 569 V(Map_Get) \ |
570 V(Map_Has) \ | 570 V(Map_Has) \ |
571 V(Map_New) \ | 571 V(Map_New) \ |
572 V(Map_Set) \ | 572 V(Map_Set) \ |
573 V(Message_GetEndColumn) \ | 573 V(Message_GetEndColumn) \ |
574 V(Message_GetLineNumber) \ | 574 V(Message_GetLineNumber) \ |
575 V(Message_GetSourceLine) \ | 575 V(Message_GetSourceLine) \ |
576 V(Message_GetStartColumn) \ | 576 V(Message_GetStartColumn) \ |
| 577 V(Module_FinishDynamicImportSuccess) \ |
| 578 V(Module_FinishDynamicImportFailure) \ |
577 V(Module_Evaluate) \ | 579 V(Module_Evaluate) \ |
578 V(Module_Instantiate) \ | 580 V(Module_Instantiate) \ |
579 V(NumberObject_New) \ | 581 V(NumberObject_New) \ |
580 V(NumberObject_NumberValue) \ | 582 V(NumberObject_NumberValue) \ |
581 V(Object_CallAsConstructor) \ | 583 V(Object_CallAsConstructor) \ |
582 V(Object_CallAsFunction) \ | 584 V(Object_CallAsFunction) \ |
583 V(Object_CreateDataProperty) \ | 585 V(Object_CreateDataProperty) \ |
584 V(Object_DefineOwnProperty) \ | 586 V(Object_DefineOwnProperty) \ |
585 V(Object_DefineProperty) \ | 587 V(Object_DefineProperty) \ |
586 V(Object_Delete) \ | 588 V(Object_Delete) \ |
(...skipping 749 matching lines...) Loading... |
1336 | 1338 |
1337 explicit Counters(Isolate* isolate); | 1339 explicit Counters(Isolate* isolate); |
1338 | 1340 |
1339 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1341 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
1340 }; | 1342 }; |
1341 | 1343 |
1342 } // namespace internal | 1344 } // namespace internal |
1343 } // namespace v8 | 1345 } // namespace v8 |
1344 | 1346 |
1345 #endif // V8_COUNTERS_H_ | 1347 #endif // V8_COUNTERS_H_ |
OLD | NEW |