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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 V(Map_Clear) \ | 561 V(Map_Clear) \ |
562 V(Map_Delete) \ | 562 V(Map_Delete) \ |
563 V(Map_Get) \ | 563 V(Map_Get) \ |
564 V(Map_Has) \ | 564 V(Map_Has) \ |
565 V(Map_New) \ | 565 V(Map_New) \ |
566 V(Map_Set) \ | 566 V(Map_Set) \ |
567 V(Message_GetEndColumn) \ | 567 V(Message_GetEndColumn) \ |
568 V(Message_GetLineNumber) \ | 568 V(Message_GetLineNumber) \ |
569 V(Message_GetSourceLine) \ | 569 V(Message_GetSourceLine) \ |
570 V(Message_GetStartColumn) \ | 570 V(Message_GetStartColumn) \ |
| 571 V(Module_Evaluate) \ |
| 572 V(Module_Instantiate) \ |
571 V(NumberObject_New) \ | 573 V(NumberObject_New) \ |
572 V(NumberObject_NumberValue) \ | 574 V(NumberObject_NumberValue) \ |
573 V(Object_CallAsConstructor) \ | 575 V(Object_CallAsConstructor) \ |
574 V(Object_CallAsFunction) \ | 576 V(Object_CallAsFunction) \ |
575 V(Object_CreateDataProperty) \ | 577 V(Object_CreateDataProperty) \ |
576 V(Object_DefineOwnProperty) \ | 578 V(Object_DefineOwnProperty) \ |
577 V(Object_DefineProperty) \ | 579 V(Object_DefineProperty) \ |
578 V(Object_Delete) \ | 580 V(Object_Delete) \ |
579 V(Object_DeleteProperty) \ | 581 V(Object_DeleteProperty) \ |
580 V(Object_ForceSet) \ | 582 V(Object_ForceSet) \ |
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1264 } | 1266 } |
1265 | 1267 |
1266 Isolate* isolate_ = nullptr; | 1268 Isolate* isolate_ = nullptr; |
1267 RuntimeCallTimer timer_; | 1269 RuntimeCallTimer timer_; |
1268 }; | 1270 }; |
1269 | 1271 |
1270 } // namespace internal | 1272 } // namespace internal |
1271 } // namespace v8 | 1273 } // namespace v8 |
1272 | 1274 |
1273 #endif // V8_COUNTERS_H_ | 1275 #endif // V8_COUNTERS_H_ |
OLD | NEW |