| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 /* Amount of source code skipped over using preparsing. */ \ | 94 /* Amount of source code skipped over using preparsing. */ \ |
| 95 SC(total_preparse_skipped, V8.TotalPreparseSkipped) \ | 95 SC(total_preparse_skipped, V8.TotalPreparseSkipped) \ |
| 96 /* Number of symbol lookups skipped using preparsing */ \ | 96 /* Number of symbol lookups skipped using preparsing */ \ |
| 97 SC(total_preparse_symbols_skipped, V8.TotalPreparseSymbolSkipped) \ | 97 SC(total_preparse_symbols_skipped, V8.TotalPreparseSymbolSkipped) \ |
| 98 /* Amount of compiled source code. */ \ | 98 /* Amount of compiled source code. */ \ |
| 99 SC(total_compile_size, V8.TotalCompileSize) \ | 99 SC(total_compile_size, V8.TotalCompileSize) \ |
| 100 /* Amount of source code compiled with the old codegen. */ \ | 100 /* Amount of source code compiled with the old codegen. */ \ |
| 101 SC(total_old_codegen_source_size, V8.TotalOldCodegenSourceSize) \ | 101 SC(total_old_codegen_source_size, V8.TotalOldCodegenSourceSize) \ |
| 102 /* Amount of source code compiled with the full codegen. */ \ | 102 /* Amount of source code compiled with the full codegen. */ \ |
| 103 SC(total_full_codegen_source_size, V8.TotalFullCodegenSourceSize) \ | 103 SC(total_full_codegen_source_size, V8.TotalFullCodegenSourceSize) \ |
| 104 SC(functions_compiled_parallely, V8.FunctionsCompiledParallely) \ |
| 104 /* Number of contexts created from scratch. */ \ | 105 /* Number of contexts created from scratch. */ \ |
| 105 SC(contexts_created_from_scratch, V8.ContextsCreatedFromScratch) \ | 106 SC(contexts_created_from_scratch, V8.ContextsCreatedFromScratch) \ |
| 106 /* Number of contexts created by partial snapshot. */ \ | 107 /* Number of contexts created by partial snapshot. */ \ |
| 107 SC(contexts_created_by_snapshot, V8.ContextsCreatedBySnapshot) \ | 108 SC(contexts_created_by_snapshot, V8.ContextsCreatedBySnapshot) \ |
| 108 /* Number of code objects found from pc. */ \ | 109 /* Number of code objects found from pc. */ \ |
| 109 SC(pc_to_code, V8.PcToCode) \ | 110 SC(pc_to_code, V8.PcToCode) \ |
| 110 SC(pc_to_code_cached, V8.PcToCodeCached) \ | 111 SC(pc_to_code_cached, V8.PcToCodeCached) \ |
| 111 /* The store-buffer implementation of the write barrier. */ \ | 112 /* The store-buffer implementation of the write barrier. */ \ |
| 112 SC(store_buffer_compactions, V8.StoreBufferCompactions) \ | 113 SC(store_buffer_compactions, V8.StoreBufferCompactions) \ |
| 113 SC(store_buffer_overflows, V8.StoreBufferOverflows) | 114 SC(store_buffer_overflows, V8.StoreBufferOverflows) |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 // Sliding state window counters. | 305 // Sliding state window counters. |
| 305 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; | 306 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; |
| 306 friend class Isolate; | 307 friend class Isolate; |
| 307 | 308 |
| 308 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 309 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 309 }; | 310 }; |
| 310 | 311 |
| 311 } } // namespace v8::internal | 312 } } // namespace v8::internal |
| 312 | 313 |
| 313 #endif // V8_V8_COUNTERS_H_ | 314 #endif // V8_V8_COUNTERS_H_ |
| OLD | NEW |