| OLD | NEW |
| 1 // Copyright 2010 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 |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_slow_to_fast_elements, V8.MapSlowToFastElements) \ |
| 133 SC(map_fast_to_slow_elements, V8.MapFastToSlowElements) \ | 133 SC(map_fast_to_slow_elements, V8.MapFastToSlowElements) \ |
| 134 SC(map_to_pixel_array_elements, V8.MapToPixelArrayElements) \ | 134 SC(map_to_external_array_elements, V8.MapToExternalArrayElements) \ |
| 135 /* How is the generic keyed-load stub used? */ \ | 135 /* How is the generic keyed-load stub used? */ \ |
| 136 SC(keyed_load_generic_smi, V8.KeyedLoadGenericSmi) \ | 136 SC(keyed_load_generic_smi, V8.KeyedLoadGenericSmi) \ |
| 137 SC(keyed_load_generic_symbol, V8.KeyedLoadGenericSymbol) \ | 137 SC(keyed_load_generic_symbol, V8.KeyedLoadGenericSymbol) \ |
| 138 SC(keyed_load_generic_lookup_cache, V8.KeyedLoadGenericLookupCache) \ | 138 SC(keyed_load_generic_lookup_cache, V8.KeyedLoadGenericLookupCache) \ |
| 139 SC(keyed_load_generic_slow, V8.KeyedLoadGenericSlow) \ | 139 SC(keyed_load_generic_slow, V8.KeyedLoadGenericSlow) \ |
| 140 SC(keyed_load_external_array_slow, V8.KeyedLoadExternalArraySlow) \ | 140 SC(keyed_load_external_array_slow, V8.KeyedLoadExternalArraySlow) \ |
| 141 /* How is the generic keyed-call stub used? */ \ | 141 /* How is the generic keyed-call stub used? */ \ |
| 142 SC(keyed_call_generic_smi_fast, V8.KeyedCallGenericSmiFast) \ | 142 SC(keyed_call_generic_smi_fast, V8.KeyedCallGenericSmiFast) \ |
| 143 SC(keyed_call_generic_smi_dict, V8.KeyedCallGenericSmiDict) \ | 143 SC(keyed_call_generic_smi_dict, V8.KeyedCallGenericSmiDict) \ |
| 144 SC(keyed_call_generic_lookup_cache, V8.KeyedCallGenericLookupCache) \ | 144 SC(keyed_call_generic_lookup_cache, V8.KeyedCallGenericLookupCache) \ |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 stats_counter_count | 284 stats_counter_count |
| 285 }; | 285 }; |
| 286 | 286 |
| 287 // Sliding state window counters. | 287 // Sliding state window counters. |
| 288 static StatsCounter state_counters[]; | 288 static StatsCounter state_counters[]; |
| 289 }; | 289 }; |
| 290 | 290 |
| 291 } } // namespace v8::internal | 291 } } // namespace v8::internal |
| 292 | 292 |
| 293 #endif // V8_V8_COUNTERS_H_ | 293 #endif // V8_V8_COUNTERS_H_ |
| OLD | NEW |