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

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

Issue 2582001: Add optimized version of memcpy on ia32. (Closed)
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
« src/utils.h ('K') | « src/utils.h ('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 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 SC(call_const_interceptor, V8.CallConstInterceptor) \ 150 SC(call_const_interceptor, V8.CallConstInterceptor) \
151 SC(call_const_interceptor_fast_api, V8.CallConstInterceptorFastApi) \ 151 SC(call_const_interceptor_fast_api, V8.CallConstInterceptorFastApi) \
152 SC(call_global_inline, V8.CallGlobalInline) \ 152 SC(call_global_inline, V8.CallGlobalInline) \
153 SC(call_global_inline_miss, V8.CallGlobalInlineMiss) \ 153 SC(call_global_inline_miss, V8.CallGlobalInlineMiss) \
154 SC(constructed_objects, V8.ConstructedObjects) \ 154 SC(constructed_objects, V8.ConstructedObjects) \
155 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \ 155 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \
156 SC(constructed_objects_stub, V8.ConstructedObjectsStub) \ 156 SC(constructed_objects_stub, V8.ConstructedObjectsStub) \
157 SC(array_function_runtime, V8.ArrayFunctionRuntime) \ 157 SC(array_function_runtime, V8.ArrayFunctionRuntime) \
158 SC(array_function_native, V8.ArrayFunctionNative) \ 158 SC(array_function_native, V8.ArrayFunctionNative) \
159 SC(for_in, V8.ForIn) \ 159 SC(for_in, V8.ForIn) \
160 SC(memcopy_aligned, V8.MemCopyAligned) \
161 SC(memcopy_unaligned, V8.MemCopyUnaligned) \
162 SC(memcopy_noxmm, V8.MemCopyNoXMM) \
160 SC(enum_cache_hits, V8.EnumCacheHits) \ 163 SC(enum_cache_hits, V8.EnumCacheHits) \
161 SC(enum_cache_misses, V8.EnumCacheMisses) \ 164 SC(enum_cache_misses, V8.EnumCacheMisses) \
162 SC(reloc_info_count, V8.RelocInfoCount) \ 165 SC(reloc_info_count, V8.RelocInfoCount) \
163 SC(reloc_info_size, V8.RelocInfoSize) \ 166 SC(reloc_info_size, V8.RelocInfoSize) \
164 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \ 167 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \
165 SC(compute_entry_frame, V8.ComputeEntryFrame) \ 168 SC(compute_entry_frame, V8.ComputeEntryFrame) \
166 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \ 169 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \
167 SC(generic_binary_stub_calls_regs, V8.GenericBinaryStubCallsRegs) \ 170 SC(generic_binary_stub_calls_regs, V8.GenericBinaryStubCallsRegs) \
168 SC(string_add_runtime, V8.StringAddRuntime) \ 171 SC(string_add_runtime, V8.StringAddRuntime) \
169 SC(string_add_native, V8.StringAddNative) \ 172 SC(string_add_native, V8.StringAddNative) \
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 stats_counter_count 225 stats_counter_count
223 }; 226 };
224 227
225 // Sliding state window counters. 228 // Sliding state window counters.
226 static StatsCounter state_counters[]; 229 static StatsCounter state_counters[];
227 }; 230 };
228 231
229 } } // namespace v8::internal 232 } } // namespace v8::internal
230 233
231 #endif // V8_V8_COUNTERS_H_ 234 #endif // V8_V8_COUNTERS_H_
OLDNEW
« src/utils.h ('K') | « src/utils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698