Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: src/v8-counters.h

Issue 7348008: Merge up to 8597 to experimental/gc from the bleeding edge. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/v8.cc ('k') | src/v8conversions.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 SC(total_compiled_code_size, V8.TotalCompiledCodeSize) \ 122 SC(total_compiled_code_size, V8.TotalCompiledCodeSize) \
123 SC(gc_compactor_caused_by_request, V8.GCCompactorCausedByRequest) \ 123 SC(gc_compactor_caused_by_request, V8.GCCompactorCausedByRequest) \
124 SC(gc_compactor_caused_by_promoted_data, \ 124 SC(gc_compactor_caused_by_promoted_data, \
125 V8.GCCompactorCausedByPromotedData) \ 125 V8.GCCompactorCausedByPromotedData) \
126 SC(gc_compactor_caused_by_oldspace_exhaustion, \ 126 SC(gc_compactor_caused_by_oldspace_exhaustion, \
127 V8.GCCompactorCausedByOldspaceExhaustion) \ 127 V8.GCCompactorCausedByOldspaceExhaustion) \
128 SC(gc_compactor_caused_by_weak_handles, \ 128 SC(gc_compactor_caused_by_weak_handles, \
129 V8.GCCompactorCausedByWeakHandles) \ 129 V8.GCCompactorCausedByWeakHandles) \
130 SC(gc_last_resort_from_js, V8.GCLastResortFromJS) \ 130 SC(gc_last_resort_from_js, V8.GCLastResortFromJS) \
131 SC(gc_last_resort_from_handles, V8.GCLastResortFromHandles) \ 131 SC(gc_last_resort_from_handles, V8.GCLastResortFromHandles) \
132 SC(map_slow_to_fast_elements, V8.MapSlowToFastElements) \ 132 SC(map_to_fast_elements, V8.MapToFastElements) \
133 SC(map_fast_to_slow_elements, V8.MapFastToSlowElements) \ 133 SC(map_to_fast_double_elements, V8.MapToFastDoubleElements) \
134 SC(map_to_slow_elements, V8.MapToSlowElements) \
134 SC(map_to_external_array_elements, V8.MapToExternalArrayElements) \ 135 SC(map_to_external_array_elements, V8.MapToExternalArrayElements) \
135 /* How is the generic keyed-load stub used? */ \ 136 /* How is the generic keyed-load stub used? */ \
136 SC(keyed_load_generic_smi, V8.KeyedLoadGenericSmi) \ 137 SC(keyed_load_generic_smi, V8.KeyedLoadGenericSmi) \
137 SC(keyed_load_generic_symbol, V8.KeyedLoadGenericSymbol) \ 138 SC(keyed_load_generic_symbol, V8.KeyedLoadGenericSymbol) \
138 SC(keyed_load_generic_lookup_cache, V8.KeyedLoadGenericLookupCache) \ 139 SC(keyed_load_generic_lookup_cache, V8.KeyedLoadGenericLookupCache) \
139 SC(keyed_load_generic_slow, V8.KeyedLoadGenericSlow) \ 140 SC(keyed_load_generic_slow, V8.KeyedLoadGenericSlow) \
140 SC(keyed_load_polymorphic_stubs, V8.KeyedLoadPolymorphicStubs) \ 141 SC(keyed_load_polymorphic_stubs, V8.KeyedLoadPolymorphicStubs) \
141 SC(keyed_load_external_array_slow, V8.KeyedLoadExternalArraySlow) \ 142 SC(keyed_load_external_array_slow, V8.KeyedLoadExternalArraySlow) \
142 /* How is the generic keyed-call stub used? */ \ 143 /* How is the generic keyed-call stub used? */ \
143 SC(keyed_call_generic_smi_fast, V8.KeyedCallGenericSmiFast) \ 144 SC(keyed_call_generic_smi_fast, V8.KeyedCallGenericSmiFast) \
(...skipping 21 matching lines...) Expand all
165 SC(dont_delete_hint_miss, V8.DontDeleteHintMiss) \ 166 SC(dont_delete_hint_miss, V8.DontDeleteHintMiss) \
166 SC(named_load_global_stub, V8.NamedLoadGlobalStub) \ 167 SC(named_load_global_stub, V8.NamedLoadGlobalStub) \
167 SC(named_load_global_stub_miss, V8.NamedLoadGlobalStubMiss) \ 168 SC(named_load_global_stub_miss, V8.NamedLoadGlobalStubMiss) \
168 SC(keyed_store_field, V8.KeyedStoreField) \ 169 SC(keyed_store_field, V8.KeyedStoreField) \
169 SC(named_store_inline_field, V8.NamedStoreInlineField) \ 170 SC(named_store_inline_field, V8.NamedStoreInlineField) \
170 SC(keyed_store_inline, V8.KeyedStoreInline) \ 171 SC(keyed_store_inline, V8.KeyedStoreInline) \
171 SC(named_load_inline_generic, V8.NamedLoadInlineGeneric) \ 172 SC(named_load_inline_generic, V8.NamedLoadInlineGeneric) \
172 SC(named_load_inline_field, V8.NamedLoadInlineFast) \ 173 SC(named_load_inline_field, V8.NamedLoadInlineFast) \
173 SC(keyed_load_inline_generic, V8.KeyedLoadInlineGeneric) \ 174 SC(keyed_load_inline_generic, V8.KeyedLoadInlineGeneric) \
174 SC(keyed_load_inline_fast, V8.KeyedLoadInlineFast) \ 175 SC(keyed_load_inline_fast, V8.KeyedLoadInlineFast) \
175 SC(named_load_full, V8.NamedLoadFull) \
176 SC(keyed_load_full, V8.KeyedLoadFull) \
177 SC(keyed_store_inline_generic, V8.KeyedStoreInlineGeneric) \ 176 SC(keyed_store_inline_generic, V8.KeyedStoreInlineGeneric) \
178 SC(keyed_store_inline_fast, V8.KeyedStoreInlineFast) \ 177 SC(keyed_store_inline_fast, V8.KeyedStoreInlineFast) \
179 SC(named_store_inline_generic, V8.NamedStoreInlineGeneric) \ 178 SC(named_store_inline_generic, V8.NamedStoreInlineGeneric) \
180 SC(named_store_inline_fast, V8.NamedStoreInlineFast) \ 179 SC(named_store_inline_fast, V8.NamedStoreInlineFast) \
181 SC(keyed_store_full, V8.KeyedStoreFull) \
182 SC(named_store_full, V8.NamedStoreFull) \
183 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \ 180 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \
184 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \ 181 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \
185 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \ 182 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \
186 SC(keyed_store_polymorphic_stubs, V8.KeyedStorePolymorphicStubs) \ 183 SC(keyed_store_polymorphic_stubs, V8.KeyedStorePolymorphicStubs) \
187 SC(keyed_store_external_array_slow, V8.KeyedStoreExternalArraySlow) \ 184 SC(keyed_store_external_array_slow, V8.KeyedStoreExternalArraySlow) \
188 SC(store_normal_miss, V8.StoreNormalMiss) \ 185 SC(store_normal_miss, V8.StoreNormalMiss) \
189 SC(store_normal_hit, V8.StoreNormalHit) \ 186 SC(store_normal_hit, V8.StoreNormalHit) \
190 SC(cow_arrays_created_stub, V8.COWArraysCreatedStub) \ 187 SC(cow_arrays_created_stub, V8.COWArraysCreatedStub) \
191 SC(cow_arrays_created_runtime, V8.COWArraysCreatedRuntime) \ 188 SC(cow_arrays_created_runtime, V8.COWArraysCreatedRuntime) \
192 SC(cow_arrays_converted, V8.COWArraysConverted) \ 189 SC(cow_arrays_converted, V8.COWArraysConverted) \
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 // Sliding state window counters. 305 // Sliding state window counters.
309 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; 306 StatsCounter state_counters_[kSlidingStateWindowCounterCount];
310 friend class Isolate; 307 friend class Isolate;
311 308
312 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 309 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
313 }; 310 };
314 311
315 } } // namespace v8::internal 312 } } // namespace v8::internal
316 313
317 #endif // V8_V8_COUNTERS_H_ 314 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/v8.cc ('k') | src/v8conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698