OLD | NEW |
1 // Copyright 2007-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 |
11 // with the distribution. | 11 // with the distribution. |
(...skipping 26 matching lines...) Expand all Loading... |
38 HT(gc_compactor, V8.GCCompactor) \ | 38 HT(gc_compactor, V8.GCCompactor) \ |
39 HT(gc_scavenger, V8.GCScavenger) \ | 39 HT(gc_scavenger, V8.GCScavenger) \ |
40 HT(gc_context, V8.GCContext) /* GC context cleanup time */ \ | 40 HT(gc_context, V8.GCContext) /* GC context cleanup time */ \ |
41 /* Parsing timers. */ \ | 41 /* Parsing timers. */ \ |
42 HT(parse, V8.Parse) \ | 42 HT(parse, V8.Parse) \ |
43 HT(parse_lazy, V8.ParseLazy) \ | 43 HT(parse_lazy, V8.ParseLazy) \ |
44 HT(pre_parse, V8.PreParse) \ | 44 HT(pre_parse, V8.PreParse) \ |
45 /* Total compilation times. */ \ | 45 /* Total compilation times. */ \ |
46 HT(compile, V8.Compile) \ | 46 HT(compile, V8.Compile) \ |
47 HT(compile_eval, V8.CompileEval) \ | 47 HT(compile_eval, V8.CompileEval) \ |
48 HT(compile_lazy, V8.CompileLazy) \ | 48 HT(compile_lazy, V8.CompileLazy) |
49 /* Individual compiler passes. */ \ | |
50 HT(rewriting, V8.Rewriting) \ | |
51 HT(usage_analysis, V8.UsageAnalysis) \ | |
52 HT(variable_allocation, V8.VariableAllocation) \ | |
53 HT(ast_optimization, V8.ASTOptimization) \ | |
54 HT(code_generation, V8.CodeGeneration) \ | |
55 HT(deferred_code_generation, V8.DeferredCodeGeneration) | |
56 | 49 |
57 | 50 |
58 // WARNING: STATS_COUNTER_LIST_* is a very large macro that is causing MSVC | 51 // WARNING: STATS_COUNTER_LIST_* is a very large macro that is causing MSVC |
59 // Intellisense to crash. It was broken into two macros (each of length 40 | 52 // Intellisense to crash. It was broken into two macros (each of length 40 |
60 // lines) rather than one macro (of length about 80 lines) to work around | 53 // lines) rather than one macro (of length about 80 lines) to work around |
61 // this problem. Please avoid using recursive macros of this length when | 54 // this problem. Please avoid using recursive macros of this length when |
62 // possible. | 55 // possible. |
63 #define STATS_COUNTER_LIST_1(SC) \ | 56 #define STATS_COUNTER_LIST_1(SC) \ |
64 /* Global Handle Count*/ \ | 57 /* Global Handle Count*/ \ |
65 SC(global_handles, V8.GlobalHandles) \ | 58 SC(global_handles, V8.GlobalHandles) \ |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 stats_counter_count | 255 stats_counter_count |
263 }; | 256 }; |
264 | 257 |
265 // Sliding state window counters. | 258 // Sliding state window counters. |
266 static StatsCounter state_counters[]; | 259 static StatsCounter state_counters[]; |
267 }; | 260 }; |
268 | 261 |
269 } } // namespace v8::internal | 262 } } // namespace v8::internal |
270 | 263 |
271 #endif // V8_V8_COUNTERS_H_ | 264 #endif // V8_V8_COUNTERS_H_ |
OLD | NEW |