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

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

Issue 6793013: Cache optimized code on shared function info. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 8 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/runtime-profiler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 SC(negative_lookups_miss, V8.NegativeLookupsMiss) \ 201 SC(negative_lookups_miss, V8.NegativeLookupsMiss) \
202 SC(array_function_runtime, V8.ArrayFunctionRuntime) \ 202 SC(array_function_runtime, V8.ArrayFunctionRuntime) \
203 SC(array_function_native, V8.ArrayFunctionNative) \ 203 SC(array_function_native, V8.ArrayFunctionNative) \
204 SC(for_in, V8.ForIn) \ 204 SC(for_in, V8.ForIn) \
205 SC(enum_cache_hits, V8.EnumCacheHits) \ 205 SC(enum_cache_hits, V8.EnumCacheHits) \
206 SC(enum_cache_misses, V8.EnumCacheMisses) \ 206 SC(enum_cache_misses, V8.EnumCacheMisses) \
207 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \ 207 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \
208 SC(compute_entry_frame, V8.ComputeEntryFrame) \ 208 SC(compute_entry_frame, V8.ComputeEntryFrame) \
209 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \ 209 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \
210 SC(generic_binary_stub_calls_regs, V8.GenericBinaryStubCallsRegs) \ 210 SC(generic_binary_stub_calls_regs, V8.GenericBinaryStubCallsRegs) \
211 SC(fast_new_closure_total, V8.FastNewClosureTotal) \
212 SC(fast_new_closure_try_optimized, V8.FastNewClosureTryOptimized) \
213 SC(fast_new_closure_install_optimized, V8.FastNewClosureInstallOptimized) \
211 SC(string_add_runtime, V8.StringAddRuntime) \ 214 SC(string_add_runtime, V8.StringAddRuntime) \
212 SC(string_add_native, V8.StringAddNative) \ 215 SC(string_add_native, V8.StringAddNative) \
213 SC(string_add_runtime_ext_to_ascii, V8.StringAddRuntimeExtToAscii) \ 216 SC(string_add_runtime_ext_to_ascii, V8.StringAddRuntimeExtToAscii) \
214 SC(sub_string_runtime, V8.SubStringRuntime) \ 217 SC(sub_string_runtime, V8.SubStringRuntime) \
215 SC(sub_string_native, V8.SubStringNative) \ 218 SC(sub_string_native, V8.SubStringNative) \
216 SC(string_add_make_two_char, V8.StringAddMakeTwoChar) \ 219 SC(string_add_make_two_char, V8.StringAddMakeTwoChar) \
217 SC(string_compare_native, V8.StringCompareNative) \ 220 SC(string_compare_native, V8.StringCompareNative) \
218 SC(string_compare_runtime, V8.StringCompareRuntime) \ 221 SC(string_compare_runtime, V8.StringCompareRuntime) \
219 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \ 222 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \
220 SC(regexp_entry_native, V8.RegExpEntryNative) \ 223 SC(regexp_entry_native, V8.RegExpEntryNative) \
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 // Sliding state window counters. 305 // Sliding state window counters.
303 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; 306 StatsCounter state_counters_[kSlidingStateWindowCounterCount];
304 friend class Isolate; 307 friend class Isolate;
305 308
306 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 309 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
307 }; 310 };
308 311
309 } } // namespace v8::internal 312 } } // namespace v8::internal
310 313
311 #endif // V8_V8_COUNTERS_H_ 314 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/runtime-profiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698