| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 SC(math_round, V8.MathRound) \ | 268 SC(math_round, V8.MathRound) \ |
| 269 SC(math_sin, V8.MathSin) \ | 269 SC(math_sin, V8.MathSin) \ |
| 270 SC(math_sqrt, V8.MathSqrt) \ | 270 SC(math_sqrt, V8.MathSqrt) \ |
| 271 SC(math_tan, V8.MathTan) \ | 271 SC(math_tan, V8.MathTan) \ |
| 272 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ | 272 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ |
| 273 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ | 273 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ |
| 274 SC(stack_interrupts, V8.StackInterrupts) \ | 274 SC(stack_interrupts, V8.StackInterrupts) \ |
| 275 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ | 275 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ |
| 276 SC(smi_checks_removed, V8.SmiChecksRemoved) \ | 276 SC(smi_checks_removed, V8.SmiChecksRemoved) \ |
| 277 SC(map_checks_removed, V8.MapChecksRemoved) \ | 277 SC(map_checks_removed, V8.MapChecksRemoved) \ |
| 278 SC(bounds_checks_removed, V8.BoundsChecksRemoved) \ |
| 278 SC(quote_json_char_count, V8.QuoteJsonCharacterCount) \ | 279 SC(quote_json_char_count, V8.QuoteJsonCharacterCount) \ |
| 279 SC(quote_json_char_recount, V8.QuoteJsonCharacterReCount) \ | 280 SC(quote_json_char_recount, V8.QuoteJsonCharacterReCount) \ |
| 280 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \ | 281 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \ |
| 281 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \ | 282 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \ |
| 282 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \ | 283 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \ |
| 283 SC(old_pointer_space_bytes_available, \ | 284 SC(old_pointer_space_bytes_available, \ |
| 284 V8.MemoryOldPointerSpaceBytesAvailable) \ | 285 V8.MemoryOldPointerSpaceBytesAvailable) \ |
| 285 SC(old_pointer_space_bytes_committed, \ | 286 SC(old_pointer_space_bytes_committed, \ |
| 286 V8.MemoryOldPointerSpaceBytesCommitted) \ | 287 V8.MemoryOldPointerSpaceBytesCommitted) \ |
| 287 SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \ | 288 SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \ |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 friend class Isolate; | 422 friend class Isolate; |
| 422 | 423 |
| 423 explicit Counters(Isolate* isolate); | 424 explicit Counters(Isolate* isolate); |
| 424 | 425 |
| 425 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 426 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 426 }; | 427 }; |
| 427 | 428 |
| 428 } } // namespace v8::internal | 429 } } // namespace v8::internal |
| 429 | 430 |
| 430 #endif // V8_V8_COUNTERS_H_ | 431 #endif // V8_V8_COUNTERS_H_ |
| OLD | NEW |