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 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 SC(sub_string_native, V8.SubStringNative) \ | 752 SC(sub_string_native, V8.SubStringNative) \ |
753 SC(string_compare_native, V8.StringCompareNative) \ | 753 SC(string_compare_native, V8.StringCompareNative) \ |
754 SC(string_compare_runtime, V8.StringCompareRuntime) \ | 754 SC(string_compare_runtime, V8.StringCompareRuntime) \ |
755 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \ | 755 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \ |
756 SC(regexp_entry_native, V8.RegExpEntryNative) \ | 756 SC(regexp_entry_native, V8.RegExpEntryNative) \ |
757 SC(number_to_string_native, V8.NumberToStringNative) \ | 757 SC(number_to_string_native, V8.NumberToStringNative) \ |
758 SC(number_to_string_runtime, V8.NumberToStringRuntime) \ | 758 SC(number_to_string_runtime, V8.NumberToStringRuntime) \ |
759 SC(math_atan2_runtime, V8.MathAtan2Runtime) \ | 759 SC(math_atan2_runtime, V8.MathAtan2Runtime) \ |
760 SC(math_clz32_runtime, V8.MathClz32Runtime) \ | 760 SC(math_clz32_runtime, V8.MathClz32Runtime) \ |
761 SC(math_exp_runtime, V8.MathExpRuntime) \ | 761 SC(math_exp_runtime, V8.MathExpRuntime) \ |
762 SC(math_floor_runtime, V8.MathFloorRuntime) \ | |
763 SC(math_log_runtime, V8.MathLogRuntime) \ | 762 SC(math_log_runtime, V8.MathLogRuntime) \ |
764 SC(math_pow_runtime, V8.MathPowRuntime) \ | 763 SC(math_pow_runtime, V8.MathPowRuntime) \ |
765 SC(math_round_runtime, V8.MathRoundRuntime) \ | 764 SC(math_round_runtime, V8.MathRoundRuntime) \ |
766 SC(math_sqrt_runtime, V8.MathSqrtRuntime) \ | 765 SC(math_sqrt_runtime, V8.MathSqrtRuntime) \ |
767 SC(stack_interrupts, V8.StackInterrupts) \ | 766 SC(stack_interrupts, V8.StackInterrupts) \ |
768 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ | 767 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ |
769 SC(runtime_calls, V8.RuntimeCalls) \ | 768 SC(runtime_calls, V8.RuntimeCalls) \ |
770 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \ | 769 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \ |
771 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \ | 770 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \ |
772 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \ | 771 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \ |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
977 | 976 |
978 explicit Counters(Isolate* isolate); | 977 explicit Counters(Isolate* isolate); |
979 | 978 |
980 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 979 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
981 }; | 980 }; |
982 | 981 |
983 } // namespace internal | 982 } // namespace internal |
984 } // namespace v8 | 983 } // namespace v8 |
985 | 984 |
986 #endif // V8_COUNTERS_H_ | 985 #endif // V8_COUNTERS_H_ |
OLD | NEW |