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 999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1010 SC(string_add_native, V8.StringAddNative) \ | 1010 SC(string_add_native, V8.StringAddNative) \ |
1011 SC(string_add_runtime_ext_to_one_byte, V8.StringAddRuntimeExtToOneByte) \ | 1011 SC(string_add_runtime_ext_to_one_byte, V8.StringAddRuntimeExtToOneByte) \ |
1012 SC(sub_string_runtime, V8.SubStringRuntime) \ | 1012 SC(sub_string_runtime, V8.SubStringRuntime) \ |
1013 SC(sub_string_native, V8.SubStringNative) \ | 1013 SC(sub_string_native, V8.SubStringNative) \ |
1014 SC(string_compare_native, V8.StringCompareNative) \ | 1014 SC(string_compare_native, V8.StringCompareNative) \ |
1015 SC(string_compare_runtime, V8.StringCompareRuntime) \ | 1015 SC(string_compare_runtime, V8.StringCompareRuntime) \ |
1016 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \ | 1016 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \ |
1017 SC(regexp_entry_native, V8.RegExpEntryNative) \ | 1017 SC(regexp_entry_native, V8.RegExpEntryNative) \ |
1018 SC(number_to_string_native, V8.NumberToStringNative) \ | 1018 SC(number_to_string_native, V8.NumberToStringNative) \ |
1019 SC(number_to_string_runtime, V8.NumberToStringRuntime) \ | 1019 SC(number_to_string_runtime, V8.NumberToStringRuntime) \ |
1020 SC(math_atan2_runtime, V8.MathAtan2Runtime) \ | |
1021 SC(math_exp_runtime, V8.MathExpRuntime) \ | 1020 SC(math_exp_runtime, V8.MathExpRuntime) \ |
1022 SC(math_log_runtime, V8.MathLogRuntime) \ | 1021 SC(math_log_runtime, V8.MathLogRuntime) \ |
1023 SC(math_pow_runtime, V8.MathPowRuntime) \ | 1022 SC(math_pow_runtime, V8.MathPowRuntime) \ |
1024 SC(stack_interrupts, V8.StackInterrupts) \ | 1023 SC(stack_interrupts, V8.StackInterrupts) \ |
1025 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ | 1024 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ |
1026 SC(runtime_calls, V8.RuntimeCalls) \ | 1025 SC(runtime_calls, V8.RuntimeCalls) \ |
1027 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \ | 1026 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \ |
1028 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \ | 1027 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \ |
1029 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \ | 1028 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \ |
1030 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \ | 1029 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \ |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1234 | 1233 |
1235 explicit Counters(Isolate* isolate); | 1234 explicit Counters(Isolate* isolate); |
1236 | 1235 |
1237 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1236 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
1238 }; | 1237 }; |
1239 | 1238 |
1240 } // namespace internal | 1239 } // namespace internal |
1241 } // namespace v8 | 1240 } // namespace v8 |
1242 | 1241 |
1243 #endif // V8_COUNTERS_H_ | 1242 #endif // V8_COUNTERS_H_ |
OLD | NEW |