OLD | NEW |
---|---|
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 Loading... | |
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(bounds_checks_covered, V8.BoundsChecksCovered) \ | |
titzer
2013/07/18 12:22:58
I don't know what covered and induced are supposed
| |
242 SC(bounds_checks_induced, V8.BoundsChecksInduced) \ | |
241 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \ | 243 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \ |
242 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \ | 244 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \ |
243 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \ | 245 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \ |
244 SC(old_pointer_space_bytes_available, \ | 246 SC(old_pointer_space_bytes_available, \ |
245 V8.MemoryOldPointerSpaceBytesAvailable) \ | 247 V8.MemoryOldPointerSpaceBytesAvailable) \ |
246 SC(old_pointer_space_bytes_committed, \ | 248 SC(old_pointer_space_bytes_committed, \ |
247 V8.MemoryOldPointerSpaceBytesCommitted) \ | 249 V8.MemoryOldPointerSpaceBytesCommitted) \ |
248 SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \ | 250 SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \ |
249 SC(old_data_space_bytes_available, V8.MemoryOldDataSpaceBytesAvailable) \ | 251 SC(old_data_space_bytes_available, V8.MemoryOldDataSpaceBytesAvailable) \ |
250 SC(old_data_space_bytes_committed, V8.MemoryOldDataSpaceBytesCommitted) \ | 252 SC(old_data_space_bytes_committed, V8.MemoryOldDataSpaceBytesCommitted) \ |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
388 friend class Isolate; | 390 friend class Isolate; |
389 | 391 |
390 explicit Counters(Isolate* isolate); | 392 explicit Counters(Isolate* isolate); |
391 | 393 |
392 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 394 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
393 }; | 395 }; |
394 | 396 |
395 } } // namespace v8::internal | 397 } } // namespace v8::internal |
396 | 398 |
397 #endif // V8_V8_COUNTERS_H_ | 399 #endif // V8_V8_COUNTERS_H_ |
OLD | NEW |