| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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. */ \ | 49 /* Individual compiler passes. */ \ |
| 50 HT(rewriting, V8.Rewriting) \ | 50 HT(rewriting, V8.Rewriting) \ |
| 51 HT(usage_analysis, V8.UsageAnalysis) \ | 51 HT(usage_analysis, V8.UsageAnalysis) \ |
| 52 HT(variable_allocation, V8.VariableAllocation) \ | 52 HT(variable_allocation, V8.VariableAllocation) \ |
| 53 HT(ast_optimization, V8.ASTOptimization) \ | 53 HT(ast_optimization, V8.ASTOptimization) \ |
| 54 HT(code_generation, V8.CodeGeneration) \ | 54 HT(code_generation, V8.CodeGeneration) \ |
| 55 HT(deferred_code_generation, V8.DeferredCodeGeneration) \ | 55 HT(deferred_code_generation, V8.DeferredCodeGeneration) |
| 56 HT(code_creation, V8.CodeCreation) | 56 |
| 57 | 57 |
| 58 // WARNING: STATS_COUNTER_LIST_* is a very large macro that is causing MSVC | 58 // 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 | 59 // 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 | 60 // 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 | 61 // this problem. Please avoid using recursive macros of this length when |
| 62 // possible. | 62 // possible. |
| 63 #define STATS_COUNTER_LIST_1(SC) \ | 63 #define STATS_COUNTER_LIST_1(SC) \ |
| 64 /* Global Handle Count*/ \ | 64 /* Global Handle Count*/ \ |
| 65 SC(global_handles, V8.GlobalHandles) \ | 65 SC(global_handles, V8.GlobalHandles) \ |
| 66 /* Mallocs from PCRE */ \ | 66 /* Mallocs from PCRE */ \ |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 stats_counter_count | 183 stats_counter_count |
| 184 }; | 184 }; |
| 185 | 185 |
| 186 // Sliding state window counters. | 186 // Sliding state window counters. |
| 187 static StatsCounter state_counters[]; | 187 static StatsCounter state_counters[]; |
| 188 }; | 188 }; |
| 189 | 189 |
| 190 } } // namespace v8::internal | 190 } } // namespace v8::internal |
| 191 | 191 |
| 192 #endif // V8_V8_COUNTERS_H_ | 192 #endif // V8_V8_COUNTERS_H_ |
| OLD | NEW |