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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 SC(keyed_load_constant_function, V8.KeyedLoadConstantFunction) \ | 154 SC(keyed_load_constant_function, V8.KeyedLoadConstantFunction) \ |
155 SC(keyed_load_field, V8.KeyedLoadField) \ | 155 SC(keyed_load_field, V8.KeyedLoadField) \ |
156 SC(keyed_load_callback, V8.KeyedLoadCallback) \ | 156 SC(keyed_load_callback, V8.KeyedLoadCallback) \ |
157 SC(keyed_load_interceptor, V8.KeyedLoadInterceptor) \ | 157 SC(keyed_load_interceptor, V8.KeyedLoadInterceptor) \ |
158 SC(keyed_load_inline, V8.KeyedLoadInline) \ | 158 SC(keyed_load_inline, V8.KeyedLoadInline) \ |
159 SC(keyed_load_inline_miss, V8.KeyedLoadInlineMiss) \ | 159 SC(keyed_load_inline_miss, V8.KeyedLoadInlineMiss) \ |
160 SC(named_load_inline, V8.NamedLoadInline) \ | 160 SC(named_load_inline, V8.NamedLoadInline) \ |
161 SC(named_load_inline_miss, V8.NamedLoadInlineMiss) \ | 161 SC(named_load_inline_miss, V8.NamedLoadInlineMiss) \ |
162 SC(named_load_global_inline, V8.NamedLoadGlobalInline) \ | 162 SC(named_load_global_inline, V8.NamedLoadGlobalInline) \ |
163 SC(named_load_global_inline_miss, V8.NamedLoadGlobalInlineMiss) \ | 163 SC(named_load_global_inline_miss, V8.NamedLoadGlobalInlineMiss) \ |
| 164 SC(named_load_global_stub, V8.NamedLoadGlobalStub) \ |
| 165 SC(named_load_global_stub_miss, V8.NamedLoadGlobalStubMiss) \ |
164 SC(keyed_store_field, V8.KeyedStoreField) \ | 166 SC(keyed_store_field, V8.KeyedStoreField) \ |
165 SC(keyed_store_inline, V8.KeyedStoreInline) \ | 167 SC(keyed_store_inline, V8.KeyedStoreInline) \ |
166 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \ | 168 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \ |
167 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \ | 169 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \ |
168 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \ | 170 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \ |
169 SC(store_normal_miss, V8.StoreNormalMiss) \ | 171 SC(store_normal_miss, V8.StoreNormalMiss) \ |
170 SC(store_normal_hit, V8.StoreNormalHit) \ | 172 SC(store_normal_hit, V8.StoreNormalHit) \ |
171 SC(cow_arrays_created_stub, V8.COWArraysCreatedStub) \ | 173 SC(cow_arrays_created_stub, V8.COWArraysCreatedStub) \ |
172 SC(cow_arrays_created_runtime, V8.COWArraysCreatedRuntime) \ | 174 SC(cow_arrays_created_runtime, V8.COWArraysCreatedRuntime) \ |
173 SC(cow_arrays_converted, V8.COWArraysConverted) \ | 175 SC(cow_arrays_converted, V8.COWArraysConverted) \ |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 stats_counter_count | 260 stats_counter_count |
259 }; | 261 }; |
260 | 262 |
261 // Sliding state window counters. | 263 // Sliding state window counters. |
262 static StatsCounter state_counters[]; | 264 static StatsCounter state_counters[]; |
263 }; | 265 }; |
264 | 266 |
265 } } // namespace v8::internal | 267 } } // namespace v8::internal |
266 | 268 |
267 #endif // V8_V8_COUNTERS_H_ | 269 #endif // V8_V8_COUNTERS_H_ |
OLD | NEW |