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

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

Issue 84823003: Revert r18029. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/mips/macro-assembler-mips.cc ('k') | src/x64/macro-assembler-x64.cc » ('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 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 SC(math_tan, V8.MathTan) \ 254 SC(math_tan, V8.MathTan) \
255 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ 255 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \
256 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ 256 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \
257 SC(stack_interrupts, V8.StackInterrupts) \ 257 SC(stack_interrupts, V8.StackInterrupts) \
258 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ 258 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \
259 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \ 259 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \
260 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \ 260 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \
261 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \ 261 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \
262 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \ 262 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \
263 SC(soft_deopts_executed, V8.SoftDeoptsExecuted) \ 263 SC(soft_deopts_executed, V8.SoftDeoptsExecuted) \
264 /* Number of write barriers in generated code. */ \
265 SC(write_barriers_dynamic, V8.WriteBarriersDynamic) \
266 SC(write_barriers_static, V8.WriteBarriersStatic) \
267 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \ 264 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \
268 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \ 265 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \
269 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \ 266 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \
270 SC(old_pointer_space_bytes_available, \ 267 SC(old_pointer_space_bytes_available, \
271 V8.MemoryOldPointerSpaceBytesAvailable) \ 268 V8.MemoryOldPointerSpaceBytesAvailable) \
272 SC(old_pointer_space_bytes_committed, \ 269 SC(old_pointer_space_bytes_committed, \
273 V8.MemoryOldPointerSpaceBytesCommitted) \ 270 V8.MemoryOldPointerSpaceBytesCommitted) \
274 SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \ 271 SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \
275 SC(old_data_space_bytes_available, V8.MemoryOldDataSpaceBytesAvailable) \ 272 SC(old_data_space_bytes_available, V8.MemoryOldDataSpaceBytesAvailable) \
276 SC(old_data_space_bytes_committed, V8.MemoryOldDataSpaceBytesCommitted) \ 273 SC(old_data_space_bytes_committed, V8.MemoryOldDataSpaceBytesCommitted) \
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 friend class Isolate; 429 friend class Isolate;
433 430
434 explicit Counters(Isolate* isolate); 431 explicit Counters(Isolate* isolate);
435 432
436 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 433 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
437 }; 434 };
438 435
439 } } // namespace v8::internal 436 } } // namespace v8::internal
440 437
441 #endif // V8_V8_COUNTERS_H_ 438 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/mips/macro-assembler-mips.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698