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

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

Issue 2801007: Remove redundant checks in and around GenerateDictionaryLoad.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 6 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/ic.h ('k') | src/x64/ic-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 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 SC(keyed_load_inline_miss, V8.KeyedLoadInlineMiss) \ 146 SC(keyed_load_inline_miss, V8.KeyedLoadInlineMiss) \
147 SC(named_load_inline, V8.NamedLoadInline) \ 147 SC(named_load_inline, V8.NamedLoadInline) \
148 SC(named_load_inline_miss, V8.NamedLoadInlineMiss) \ 148 SC(named_load_inline_miss, V8.NamedLoadInlineMiss) \
149 SC(named_load_global_inline, V8.NamedLoadGlobalInline) \ 149 SC(named_load_global_inline, V8.NamedLoadGlobalInline) \
150 SC(named_load_global_inline_miss, V8.NamedLoadGlobalInlineMiss) \ 150 SC(named_load_global_inline_miss, V8.NamedLoadGlobalInlineMiss) \
151 SC(keyed_store_field, V8.KeyedStoreField) \ 151 SC(keyed_store_field, V8.KeyedStoreField) \
152 SC(keyed_store_inline, V8.KeyedStoreInline) \ 152 SC(keyed_store_inline, V8.KeyedStoreInline) \
153 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \ 153 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \
154 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \ 154 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \
155 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \ 155 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \
156 SC(call_miss, V8.CallMiss) \
157 SC(keyed_call_miss, V8.KeyedCallMiss) \
158 SC(load_miss, V8.LoadMiss) \
159 SC(keyed_load_miss, V8.KeyedLoadMiss) \
156 SC(call_const, V8.CallConst) \ 160 SC(call_const, V8.CallConst) \
157 SC(call_const_fast_api, V8.CallConstFastApi) \ 161 SC(call_const_fast_api, V8.CallConstFastApi) \
158 SC(call_const_interceptor, V8.CallConstInterceptor) \ 162 SC(call_const_interceptor, V8.CallConstInterceptor) \
159 SC(call_const_interceptor_fast_api, V8.CallConstInterceptorFastApi) \ 163 SC(call_const_interceptor_fast_api, V8.CallConstInterceptorFastApi) \
160 SC(call_global_inline, V8.CallGlobalInline) \ 164 SC(call_global_inline, V8.CallGlobalInline) \
161 SC(call_global_inline_miss, V8.CallGlobalInlineMiss) \ 165 SC(call_global_inline_miss, V8.CallGlobalInlineMiss) \
162 SC(constructed_objects, V8.ConstructedObjects) \ 166 SC(constructed_objects, V8.ConstructedObjects) \
163 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \ 167 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \
164 SC(constructed_objects_stub, V8.ConstructedObjectsStub) \ 168 SC(constructed_objects_stub, V8.ConstructedObjectsStub) \
165 SC(array_function_runtime, V8.ArrayFunctionRuntime) \ 169 SC(array_function_runtime, V8.ArrayFunctionRuntime) \
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 stats_counter_count 237 stats_counter_count
234 }; 238 };
235 239
236 // Sliding state window counters. 240 // Sliding state window counters.
237 static StatsCounter state_counters[]; 241 static StatsCounter state_counters[];
238 }; 242 };
239 243
240 } } // namespace v8::internal 244 } } // namespace v8::internal
241 245
242 #endif // V8_V8_COUNTERS_H_ 246 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/ic.h ('k') | src/x64/ic-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698