OLD | NEW |
1 // Copyright 2007-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2007-2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 14 matching lines...) Expand all Loading... |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #ifndef V8_V8_COUNTERS_H_ | 28 #ifndef V8_V8_COUNTERS_H_ |
29 #define V8_V8_COUNTERS_H_ | 29 #define V8_V8_COUNTERS_H_ |
30 | 30 |
31 #include "counters.h" | 31 #include "counters.h" |
32 | 32 |
33 namespace v8 { namespace internal { | 33 namespace v8 { namespace internal { |
34 | 34 |
35 #define HISTOGRAM_TIMER_LIST(HT) \ | 35 #define HISTOGRAM_TIMER_LIST(HT) \ |
36 HT(gc_compactor, V8.GCCompactor) /* GC Compactor time */ \ | 36 /* Garbage collection timers. */ \ |
37 HT(gc_scavenger, V8.GCScavenger) /* GC Scavenger time */ \ | 37 HT(gc_compactor, V8.GCCompactor) \ |
38 HT(gc_context, V8.GCContext) /* GC context cleanup time */ \ | 38 HT(gc_scavenger, V8.GCScavenger) \ |
39 HT(compile, V8.Compile) /* Compile time*/ \ | 39 HT(gc_context, V8.GCContext) /* GC context cleanup time */ \ |
40 HT(compile_eval, V8.CompileEval) /* Eval compile time */ \ | 40 /* Parsing timers. */ \ |
41 HT(compile_lazy, V8.CompileLazy) /* Lazy compile time */ \ | 41 HT(parse, V8.Parse) \ |
42 HT(parse, V8.Parse) /* Parse time */ \ | 42 HT(parse_lazy, V8.ParseLazy) \ |
43 HT(parse_lazy, V8.ParseLazy) /* Lazy parse time */ \ | 43 HT(pre_parse, V8.PreParse) \ |
44 HT(pre_parse, V8.PreParse) /* Pre-parse time */ | 44 /* Total compilation times. */ \ |
| 45 HT(compile, V8.Compile) \ |
| 46 HT(compile_eval, V8.CompileEval) \ |
| 47 HT(compile_lazy, V8.CompileLazy) \ |
| 48 /* Individual compiler passes. */ \ |
| 49 HT(rewriting, V8.Rewriting) \ |
| 50 HT(usage_analysis, V8.UsageAnalysis) \ |
| 51 HT(variable_allocation, V8.VariableAllocation) \ |
| 52 HT(ast_optimization, V8.ASTOptimization) \ |
| 53 HT(code_generation, V8.CodeGeneration) \ |
| 54 HT(deferred_code_generation, V8.DeferredCodeGeneration) \ |
| 55 HT(code_creation, V8.CodeCreation) |
45 | 56 |
46 // WARNING: STATS_COUNTER_LIST_* is a very large macro that is causing MSVC | 57 // WARNING: STATS_COUNTER_LIST_* is a very large macro that is causing MSVC |
47 // Intellisense to crash. It was broken into two macros (each of length 40 | 58 // Intellisense to crash. It was broken into two macros (each of length 40 |
48 // lines) rather than one macro (of length about 80 lines) to work around | 59 // lines) rather than one macro (of length about 80 lines) to work around |
49 // this problem. Please avoid using recursive macros of this length when | 60 // this problem. Please avoid using recursive macros of this length when |
50 // possible. | 61 // possible. |
51 #define STATS_COUNTER_LIST_1(SC) \ | 62 #define STATS_COUNTER_LIST_1(SC) \ |
52 /* Global Handle Count*/ \ | 63 /* Global Handle Count*/ \ |
53 SC(global_handles, V8.GlobalHandles) \ | 64 SC(global_handles, V8.GlobalHandles) \ |
54 /* Mallocs from PCRE */ \ | 65 /* Mallocs from PCRE */ \ |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 stats_counter_count | 167 stats_counter_count |
157 }; | 168 }; |
158 | 169 |
159 // Sliding state window counters. | 170 // Sliding state window counters. |
160 static StatsCounter state_counters[]; | 171 static StatsCounter state_counters[]; |
161 }; | 172 }; |
162 | 173 |
163 } } // namespace v8::internal | 174 } } // namespace v8::internal |
164 | 175 |
165 #endif // V8_V8_COUNTERS_H_ | 176 #endif // V8_V8_COUNTERS_H_ |
OLD | NEW |