| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 /* Mallocs from PCRE */ \ | 91 /* Mallocs from PCRE */ \ |
| 92 SC(pcre_mallocs, V8.PcreMallocCount) \ | 92 SC(pcre_mallocs, V8.PcreMallocCount) \ |
| 93 /* OS Memory allocated */ \ | 93 /* OS Memory allocated */ \ |
| 94 SC(memory_allocated, V8.OsMemoryAllocated) \ | 94 SC(memory_allocated, V8.OsMemoryAllocated) \ |
| 95 SC(normalized_maps, V8.NormalizedMaps) \ | 95 SC(normalized_maps, V8.NormalizedMaps) \ |
| 96 SC(props_to_dictionary, V8.ObjectPropertiesToDictionary) \ | 96 SC(props_to_dictionary, V8.ObjectPropertiesToDictionary) \ |
| 97 SC(elements_to_dictionary, V8.ObjectElementsToDictionary) \ | 97 SC(elements_to_dictionary, V8.ObjectElementsToDictionary) \ |
| 98 SC(alive_after_last_gc, V8.AliveAfterLastGC) \ | 98 SC(alive_after_last_gc, V8.AliveAfterLastGC) \ |
| 99 SC(objs_since_last_young, V8.ObjsSinceLastYoung) \ | 99 SC(objs_since_last_young, V8.ObjsSinceLastYoung) \ |
| 100 SC(objs_since_last_full, V8.ObjsSinceLastFull) \ | 100 SC(objs_since_last_full, V8.ObjsSinceLastFull) \ |
| 101 SC(symbol_table_capacity, V8.SymbolTableCapacity) \ | 101 SC(string_table_capacity, V8.StringTableCapacity) \ |
| 102 SC(number_of_symbols, V8.NumberOfSymbols) \ | 102 SC(number_of_symbols, V8.NumberOfSymbols) \ |
| 103 SC(script_wrappers, V8.ScriptWrappers) \ | 103 SC(script_wrappers, V8.ScriptWrappers) \ |
| 104 SC(call_initialize_stubs, V8.CallInitializeStubs) \ | 104 SC(call_initialize_stubs, V8.CallInitializeStubs) \ |
| 105 SC(call_premonomorphic_stubs, V8.CallPreMonomorphicStubs) \ | 105 SC(call_premonomorphic_stubs, V8.CallPreMonomorphicStubs) \ |
| 106 SC(call_normal_stubs, V8.CallNormalStubs) \ | 106 SC(call_normal_stubs, V8.CallNormalStubs) \ |
| 107 SC(call_megamorphic_stubs, V8.CallMegamorphicStubs) \ | 107 SC(call_megamorphic_stubs, V8.CallMegamorphicStubs) \ |
| 108 SC(arguments_adaptors, V8.ArgumentsAdaptors) \ | 108 SC(arguments_adaptors, V8.ArgumentsAdaptors) \ |
| 109 SC(compilation_cache_hits, V8.CompilationCacheHits) \ | 109 SC(compilation_cache_hits, V8.CompilationCacheHits) \ |
| 110 SC(compilation_cache_misses, V8.CompilationCacheMisses) \ | 110 SC(compilation_cache_misses, V8.CompilationCacheMisses) \ |
| 111 SC(regexp_cache_hits, V8.RegExpCacheHits) \ | 111 SC(regexp_cache_hits, V8.RegExpCacheHits) \ |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 #undef SC | 419 #undef SC |
| 420 | 420 |
| 421 friend class Isolate; | 421 friend class Isolate; |
| 422 | 422 |
| 423 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 423 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 424 }; | 424 }; |
| 425 | 425 |
| 426 } } // namespace v8::internal | 426 } } // namespace v8::internal |
| 427 | 427 |
| 428 #endif // V8_V8_COUNTERS_H_ | 428 #endif // V8_V8_COUNTERS_H_ |
| OLD | NEW |