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

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

Issue 6062002: Merge 6006:6095 from bleeding_edge to experimental/gc branch. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 10 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
« no previous file with comments | « src/utils.cc ('k') | src/v8natives.js » ('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 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ 245 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \
246 SC(stack_interrupts, V8.StackInterrupts) \ 246 SC(stack_interrupts, V8.StackInterrupts) \
247 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ 247 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \
248 SC(other_ticks, V8.OtherTicks) \ 248 SC(other_ticks, V8.OtherTicks) \
249 SC(js_opt_ticks, V8.JsOptTicks) \ 249 SC(js_opt_ticks, V8.JsOptTicks) \
250 SC(js_non_opt_ticks, V8.JsNonoptTicks) \ 250 SC(js_non_opt_ticks, V8.JsNonoptTicks) \
251 SC(js_other_ticks, V8.JsOtherTicks) \ 251 SC(js_other_ticks, V8.JsOtherTicks) \
252 SC(smi_checks_removed, V8.SmiChecksRemoved) \ 252 SC(smi_checks_removed, V8.SmiChecksRemoved) \
253 SC(map_checks_removed, V8.MapChecksRemoved) \ 253 SC(map_checks_removed, V8.MapChecksRemoved) \
254 SC(quote_json_char_count, V8.QuoteJsonCharacterCount) \ 254 SC(quote_json_char_count, V8.QuoteJsonCharacterCount) \
255 SC(quote_json_char_recount, V8.QuoteJsonCharacterReCount) 255 SC(quote_json_char_recount, V8.QuoteJsonCharacterReCount) \
256 SC(instance_of, V8.InstanceOf) \
257 SC(instance_of_cache, V8.InstanceOfCache) \
258 SC(instance_of_stub_true, V8.InstanceOfStubTrue) \
259 SC(instance_of_stub_false, V8.InstanceOfStubFalse) \
260 SC(instance_of_stub_false_null, V8.InstanceOfStubFalseNull) \
261 SC(instance_of_stub_false_string, V8.InstanceOfStubFalseString) \
262 SC(instance_of_full, V8.InstanceOfFull) \
263 SC(instance_of_slow, V8.InstanceOfSlow)
256 264
257 265
258 // This file contains all the v8 counters that are in use. 266 // This file contains all the v8 counters that are in use.
259 class Counters : AllStatic { 267 class Counters : AllStatic {
260 public: 268 public:
261 #define HT(name, caption) \ 269 #define HT(name, caption) \
262 static HistogramTimer name; 270 static HistogramTimer name;
263 HISTOGRAM_TIMER_LIST(HT) 271 HISTOGRAM_TIMER_LIST(HT)
264 #undef HT 272 #undef HT
265 273
(...skipping 17 matching lines...) Expand all
283 stats_counter_count 291 stats_counter_count
284 }; 292 };
285 293
286 // Sliding state window counters. 294 // Sliding state window counters.
287 static StatsCounter state_counters[]; 295 static StatsCounter state_counters[];
288 }; 296 };
289 297
290 } } // namespace v8::internal 298 } } // namespace v8::internal
291 299
292 #endif // V8_V8_COUNTERS_H_ 300 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/utils.cc ('k') | src/v8natives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698