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

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

Issue 17498003: Add counters for requested/inserted/executed soft deopts (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « src/hydrogen.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 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 SC(math_log, V8.MathLog) \ 231 SC(math_log, V8.MathLog) \
232 SC(math_pow, V8.MathPow) \ 232 SC(math_pow, V8.MathPow) \
233 SC(math_round, V8.MathRound) \ 233 SC(math_round, V8.MathRound) \
234 SC(math_sin, V8.MathSin) \ 234 SC(math_sin, V8.MathSin) \
235 SC(math_sqrt, V8.MathSqrt) \ 235 SC(math_sqrt, V8.MathSqrt) \
236 SC(math_tan, V8.MathTan) \ 236 SC(math_tan, V8.MathTan) \
237 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ 237 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \
238 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ 238 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \
239 SC(stack_interrupts, V8.StackInterrupts) \ 239 SC(stack_interrupts, V8.StackInterrupts) \
240 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ 240 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \
241 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \
242 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \
243 SC(soft_deopts_executed, V8.SoftDeoptsExecuted) \
241 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \ 244 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \
242 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \ 245 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \
243 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \ 246 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \
244 SC(old_pointer_space_bytes_available, \ 247 SC(old_pointer_space_bytes_available, \
245 V8.MemoryOldPointerSpaceBytesAvailable) \ 248 V8.MemoryOldPointerSpaceBytesAvailable) \
246 SC(old_pointer_space_bytes_committed, \ 249 SC(old_pointer_space_bytes_committed, \
247 V8.MemoryOldPointerSpaceBytesCommitted) \ 250 V8.MemoryOldPointerSpaceBytesCommitted) \
248 SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \ 251 SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \
249 SC(old_data_space_bytes_available, V8.MemoryOldDataSpaceBytesAvailable) \ 252 SC(old_data_space_bytes_available, V8.MemoryOldDataSpaceBytesAvailable) \
250 SC(old_data_space_bytes_committed, V8.MemoryOldDataSpaceBytesCommitted) \ 253 SC(old_data_space_bytes_committed, V8.MemoryOldDataSpaceBytesCommitted) \
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 friend class Isolate; 391 friend class Isolate;
389 392
390 explicit Counters(Isolate* isolate); 393 explicit Counters(Isolate* isolate);
391 394
392 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 395 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
393 }; 396 };
394 397
395 } } // namespace v8::internal 398 } } // namespace v8::internal
396 399
397 #endif // V8_V8_COUNTERS_H_ 400 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/hydrogen.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698