| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 161   SC(keyed_load_miss, V8.KeyedLoadMiss)                               \ | 161   SC(keyed_load_miss, V8.KeyedLoadMiss)                               \ | 
| 162   SC(call_const, V8.CallConst)                                        \ | 162   SC(call_const, V8.CallConst)                                        \ | 
| 163   SC(call_const_fast_api, V8.CallConstFastApi)                        \ | 163   SC(call_const_fast_api, V8.CallConstFastApi)                        \ | 
| 164   SC(call_const_interceptor, V8.CallConstInterceptor)                 \ | 164   SC(call_const_interceptor, V8.CallConstInterceptor)                 \ | 
| 165   SC(call_const_interceptor_fast_api, V8.CallConstInterceptorFastApi) \ | 165   SC(call_const_interceptor_fast_api, V8.CallConstInterceptorFastApi) \ | 
| 166   SC(call_global_inline, V8.CallGlobalInline)                         \ | 166   SC(call_global_inline, V8.CallGlobalInline)                         \ | 
| 167   SC(call_global_inline_miss, V8.CallGlobalInlineMiss)                \ | 167   SC(call_global_inline_miss, V8.CallGlobalInlineMiss)                \ | 
| 168   SC(constructed_objects, V8.ConstructedObjects)                      \ | 168   SC(constructed_objects, V8.ConstructedObjects)                      \ | 
| 169   SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime)       \ | 169   SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime)       \ | 
| 170   SC(constructed_objects_stub, V8.ConstructedObjectsStub)             \ | 170   SC(constructed_objects_stub, V8.ConstructedObjectsStub)             \ | 
|  | 171   SC(negative_lookups, V8.NegativeLookups)                            \ | 
|  | 172   SC(negative_lookups_miss, V8.NegativeLookupsMiss)                  \ | 
| 171   SC(array_function_runtime, V8.ArrayFunctionRuntime)                 \ | 173   SC(array_function_runtime, V8.ArrayFunctionRuntime)                 \ | 
| 172   SC(array_function_native, V8.ArrayFunctionNative)                   \ | 174   SC(array_function_native, V8.ArrayFunctionNative)                   \ | 
| 173   SC(for_in, V8.ForIn)                                                \ | 175   SC(for_in, V8.ForIn)                                                \ | 
| 174   SC(memcopy_aligned, V8.MemCopyAligned)                              \ | 176   SC(memcopy_aligned, V8.MemCopyAligned)                              \ | 
| 175   SC(memcopy_unaligned, V8.MemCopyUnaligned)                          \ | 177   SC(memcopy_unaligned, V8.MemCopyUnaligned)                          \ | 
| 176   SC(memcopy_noxmm, V8.MemCopyNoXMM)                                  \ | 178   SC(memcopy_noxmm, V8.MemCopyNoXMM)                                  \ | 
| 177   SC(enum_cache_hits, V8.EnumCacheHits)                               \ | 179   SC(enum_cache_hits, V8.EnumCacheHits)                               \ | 
| 178   SC(enum_cache_misses, V8.EnumCacheMisses)                           \ | 180   SC(enum_cache_misses, V8.EnumCacheMisses)                           \ | 
| 179   SC(reloc_info_count, V8.RelocInfoCount)                             \ | 181   SC(reloc_info_count, V8.RelocInfoCount)                             \ | 
| 180   SC(reloc_info_size, V8.RelocInfoSize)                               \ | 182   SC(reloc_info_size, V8.RelocInfoSize)                               \ | 
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 239     stats_counter_count | 241     stats_counter_count | 
| 240   }; | 242   }; | 
| 241 | 243 | 
| 242   // Sliding state window counters. | 244   // Sliding state window counters. | 
| 243   static StatsCounter state_counters[]; | 245   static StatsCounter state_counters[]; | 
| 244 }; | 246 }; | 
| 245 | 247 | 
| 246 } }  // namespace v8::internal | 248 } }  // namespace v8::internal | 
| 247 | 249 | 
| 248 #endif  // V8_V8_COUNTERS_H_ | 250 #endif  // V8_V8_COUNTERS_H_ | 
| OLD | NEW | 
|---|