| 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 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 V(Map_Clear) \ | 574 V(Map_Clear) \ |
| 575 V(Map_Delete) \ | 575 V(Map_Delete) \ |
| 576 V(Map_Get) \ | 576 V(Map_Get) \ |
| 577 V(Map_Has) \ | 577 V(Map_Has) \ |
| 578 V(Map_New) \ | 578 V(Map_New) \ |
| 579 V(Map_Set) \ | 579 V(Map_Set) \ |
| 580 V(Message_GetEndColumn) \ | 580 V(Message_GetEndColumn) \ |
| 581 V(Message_GetLineNumber) \ | 581 V(Message_GetLineNumber) \ |
| 582 V(Message_GetSourceLine) \ | 582 V(Message_GetSourceLine) \ |
| 583 V(Message_GetStartColumn) \ | 583 V(Message_GetStartColumn) \ |
| 584 V(Module_FinishDynamicImportSuccess) \ |
| 585 V(Module_FinishDynamicImportFailure) \ |
| 584 V(Module_Evaluate) \ | 586 V(Module_Evaluate) \ |
| 585 V(Module_Instantiate) \ | 587 V(Module_Instantiate) \ |
| 586 V(NumberObject_New) \ | 588 V(NumberObject_New) \ |
| 587 V(NumberObject_NumberValue) \ | 589 V(NumberObject_NumberValue) \ |
| 588 V(Object_CallAsConstructor) \ | 590 V(Object_CallAsConstructor) \ |
| 589 V(Object_CallAsFunction) \ | 591 V(Object_CallAsFunction) \ |
| 590 V(Object_CreateDataProperty) \ | 592 V(Object_CreateDataProperty) \ |
| 591 V(Object_DefineOwnProperty) \ | 593 V(Object_DefineOwnProperty) \ |
| 592 V(Object_DefineProperty) \ | 594 V(Object_DefineProperty) \ |
| 593 V(Object_Delete) \ | 595 V(Object_Delete) \ |
| (...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1343 | 1345 |
| 1344 explicit Counters(Isolate* isolate); | 1346 explicit Counters(Isolate* isolate); |
| 1345 | 1347 |
| 1346 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1348 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 1347 }; | 1349 }; |
| 1348 | 1350 |
| 1349 } // namespace internal | 1351 } // namespace internal |
| 1350 } // namespace v8 | 1352 } // namespace v8 |
| 1351 | 1353 |
| 1352 #endif // V8_COUNTERS_H_ | 1354 #endif // V8_COUNTERS_H_ |
| OLD | NEW |