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

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

Issue 7273066: Simplify EmitCallIC. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
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/mips/full-codegen-mips.cc ('k') | src/x64/full-codegen-x64.cc » ('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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 SC(dont_delete_hint_miss, V8.DontDeleteHintMiss) \ 163 SC(dont_delete_hint_miss, V8.DontDeleteHintMiss) \
164 SC(named_load_global_stub, V8.NamedLoadGlobalStub) \ 164 SC(named_load_global_stub, V8.NamedLoadGlobalStub) \
165 SC(named_load_global_stub_miss, V8.NamedLoadGlobalStubMiss) \ 165 SC(named_load_global_stub_miss, V8.NamedLoadGlobalStubMiss) \
166 SC(keyed_store_field, V8.KeyedStoreField) \ 166 SC(keyed_store_field, V8.KeyedStoreField) \
167 SC(named_store_inline_field, V8.NamedStoreInlineField) \ 167 SC(named_store_inline_field, V8.NamedStoreInlineField) \
168 SC(keyed_store_inline, V8.KeyedStoreInline) \ 168 SC(keyed_store_inline, V8.KeyedStoreInline) \
169 SC(named_load_inline_generic, V8.NamedLoadInlineGeneric) \ 169 SC(named_load_inline_generic, V8.NamedLoadInlineGeneric) \
170 SC(named_load_inline_field, V8.NamedLoadInlineFast) \ 170 SC(named_load_inline_field, V8.NamedLoadInlineFast) \
171 SC(keyed_load_inline_generic, V8.KeyedLoadInlineGeneric) \ 171 SC(keyed_load_inline_generic, V8.KeyedLoadInlineGeneric) \
172 SC(keyed_load_inline_fast, V8.KeyedLoadInlineFast) \ 172 SC(keyed_load_inline_fast, V8.KeyedLoadInlineFast) \
173 SC(named_load_full, V8.NamedLoadFull) \
174 SC(keyed_load_full, V8.KeyedLoadFull) \
175 SC(keyed_store_inline_generic, V8.KeyedStoreInlineGeneric) \ 173 SC(keyed_store_inline_generic, V8.KeyedStoreInlineGeneric) \
176 SC(keyed_store_inline_fast, V8.KeyedStoreInlineFast) \ 174 SC(keyed_store_inline_fast, V8.KeyedStoreInlineFast) \
177 SC(named_store_inline_generic, V8.NamedStoreInlineGeneric) \ 175 SC(named_store_inline_generic, V8.NamedStoreInlineGeneric) \
178 SC(named_store_inline_fast, V8.NamedStoreInlineFast) \ 176 SC(named_store_inline_fast, V8.NamedStoreInlineFast) \
179 SC(keyed_store_full, V8.KeyedStoreFull) \
180 SC(named_store_full, V8.NamedStoreFull) \
181 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \ 177 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \
182 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \ 178 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \
183 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \ 179 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \
184 SC(keyed_store_polymorphic_stubs, V8.KeyedStorePolymorphicStubs) \ 180 SC(keyed_store_polymorphic_stubs, V8.KeyedStorePolymorphicStubs) \
185 SC(keyed_store_external_array_slow, V8.KeyedStoreExternalArraySlow) \ 181 SC(keyed_store_external_array_slow, V8.KeyedStoreExternalArraySlow) \
186 SC(store_normal_miss, V8.StoreNormalMiss) \ 182 SC(store_normal_miss, V8.StoreNormalMiss) \
187 SC(store_normal_hit, V8.StoreNormalHit) \ 183 SC(store_normal_hit, V8.StoreNormalHit) \
188 SC(cow_arrays_created_stub, V8.COWArraysCreatedStub) \ 184 SC(cow_arrays_created_stub, V8.COWArraysCreatedStub) \
189 SC(cow_arrays_created_runtime, V8.COWArraysCreatedRuntime) \ 185 SC(cow_arrays_created_runtime, V8.COWArraysCreatedRuntime) \
190 SC(cow_arrays_converted, V8.COWArraysConverted) \ 186 SC(cow_arrays_converted, V8.COWArraysConverted) \
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 // Sliding state window counters. 302 // Sliding state window counters.
307 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; 303 StatsCounter state_counters_[kSlidingStateWindowCounterCount];
308 friend class Isolate; 304 friend class Isolate;
309 305
310 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 306 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
311 }; 307 };
312 308
313 } } // namespace v8::internal 309 } } // namespace v8::internal
314 310
315 #endif // V8_V8_COUNTERS_H_ 311 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/mips/full-codegen-mips.cc ('k') | src/x64/full-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698