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

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

Issue 442024: Perform string add in generated code on IA-32 platforms... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years 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
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(array_function_runtime, V8.ArrayFunctionRuntime) \ 146 SC(array_function_runtime, V8.ArrayFunctionRuntime) \
147 SC(array_function_native, V8.ArrayFunctionNative) \ 147 SC(array_function_native, V8.ArrayFunctionNative) \
148 SC(for_in, V8.ForIn) \ 148 SC(for_in, V8.ForIn) \
149 SC(enum_cache_hits, V8.EnumCacheHits) \ 149 SC(enum_cache_hits, V8.EnumCacheHits) \
150 SC(enum_cache_misses, V8.EnumCacheMisses) \ 150 SC(enum_cache_misses, V8.EnumCacheMisses) \
151 SC(reloc_info_count, V8.RelocInfoCount) \ 151 SC(reloc_info_count, V8.RelocInfoCount) \
152 SC(reloc_info_size, V8.RelocInfoSize) \ 152 SC(reloc_info_size, V8.RelocInfoSize) \
153 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \ 153 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \
154 SC(compute_entry_frame, V8.ComputeEntryFrame) \ 154 SC(compute_entry_frame, V8.ComputeEntryFrame) \
155 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \ 155 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \
156 SC(generic_binary_stub_calls_regs, V8.GenericBinaryStubCallsRegs) 156 SC(generic_binary_stub_calls_regs, V8.GenericBinaryStubCallsRegs) \
157 157 SC(string_add_runtime, V8.StringAddRuntime) \
158 SC(string_add_native, V8.StringAddNative)
158 159
159 // This file contains all the v8 counters that are in use. 160 // This file contains all the v8 counters that are in use.
160 class Counters : AllStatic { 161 class Counters : AllStatic {
161 public: 162 public:
162 #define HT(name, caption) \ 163 #define HT(name, caption) \
163 static HistogramTimer name; 164 static HistogramTimer name;
164 HISTOGRAM_TIMER_LIST(HT) 165 HISTOGRAM_TIMER_LIST(HT)
165 #undef HT 166 #undef HT
166 167
167 #define SC(name, caption) \ 168 #define SC(name, caption) \
(...skipping 16 matching lines...) Expand all
184 stats_counter_count 185 stats_counter_count
185 }; 186 };
186 187
187 // Sliding state window counters. 188 // Sliding state window counters.
188 static StatsCounter state_counters[]; 189 static StatsCounter state_counters[];
189 }; 190 };
190 191
191 } } // namespace v8::internal 192 } } // namespace v8::internal
192 193
193 #endif // V8_V8_COUNTERS_H_ 194 #endif // V8_V8_COUNTERS_H_
OLDNEW
« src/ia32/codegen-ia32.cc ('K') | « src/runtime.js ('k') | src/x64/codegen-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698