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

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

Issue 24072013: Hydrogenisation of binops (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix rewrite mode & finetune type feedback Created 7 years, 2 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/typing.cc ('k') | src/x64/code-stubs-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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 SC(negative_lookups_miss, V8.NegativeLookupsMiss) \ 197 SC(negative_lookups_miss, V8.NegativeLookupsMiss) \
198 SC(megamorphic_stub_cache_probes, V8.MegamorphicStubCacheProbes) \ 198 SC(megamorphic_stub_cache_probes, V8.MegamorphicStubCacheProbes) \
199 SC(megamorphic_stub_cache_misses, V8.MegamorphicStubCacheMisses) \ 199 SC(megamorphic_stub_cache_misses, V8.MegamorphicStubCacheMisses) \
200 SC(megamorphic_stub_cache_updates, V8.MegamorphicStubCacheUpdates) \ 200 SC(megamorphic_stub_cache_updates, V8.MegamorphicStubCacheUpdates) \
201 SC(array_function_runtime, V8.ArrayFunctionRuntime) \ 201 SC(array_function_runtime, V8.ArrayFunctionRuntime) \
202 SC(array_function_native, V8.ArrayFunctionNative) \ 202 SC(array_function_native, V8.ArrayFunctionNative) \
203 SC(for_in, V8.ForIn) \ 203 SC(for_in, V8.ForIn) \
204 SC(enum_cache_hits, V8.EnumCacheHits) \ 204 SC(enum_cache_hits, V8.EnumCacheHits) \
205 SC(enum_cache_misses, V8.EnumCacheMisses) \ 205 SC(enum_cache_misses, V8.EnumCacheMisses) \
206 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \ 206 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \
207 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \
208 SC(fast_new_closure_total, V8.FastNewClosureTotal) \ 207 SC(fast_new_closure_total, V8.FastNewClosureTotal) \
209 SC(fast_new_closure_try_optimized, V8.FastNewClosureTryOptimized) \ 208 SC(fast_new_closure_try_optimized, V8.FastNewClosureTryOptimized) \
210 SC(fast_new_closure_install_optimized, V8.FastNewClosureInstallOptimized) \ 209 SC(fast_new_closure_install_optimized, V8.FastNewClosureInstallOptimized) \
211 SC(string_add_runtime, V8.StringAddRuntime) \ 210 SC(string_add_runtime, V8.StringAddRuntime) \
212 SC(string_add_native, V8.StringAddNative) \ 211 SC(string_add_native, V8.StringAddNative) \
213 SC(string_add_runtime_ext_to_ascii, V8.StringAddRuntimeExtToAscii) \ 212 SC(string_add_runtime_ext_to_ascii, V8.StringAddRuntimeExtToAscii) \
214 SC(sub_string_runtime, V8.SubStringRuntime) \ 213 SC(sub_string_runtime, V8.SubStringRuntime) \
215 SC(sub_string_native, V8.SubStringNative) \ 214 SC(sub_string_native, V8.SubStringNative) \
216 SC(string_add_make_two_char, V8.StringAddMakeTwoChar) \ 215 SC(string_add_make_two_char, V8.StringAddMakeTwoChar) \
217 SC(string_compare_native, V8.StringCompareNative) \ 216 SC(string_compare_native, V8.StringCompareNative) \
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 friend class Isolate; 392 friend class Isolate;
394 393
395 explicit Counters(Isolate* isolate); 394 explicit Counters(Isolate* isolate);
396 395
397 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 396 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
398 }; 397 };
399 398
400 } } // namespace v8::internal 399 } } // namespace v8::internal
401 400
402 #endif // V8_V8_COUNTERS_H_ 401 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/typing.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698