| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 SC(math_ceil, V8.MathCeil) \ | 229 SC(math_ceil, V8.MathCeil) \ |
| 230 SC(math_cos, V8.MathCos) \ | 230 SC(math_cos, V8.MathCos) \ |
| 231 SC(math_exp, V8.MathExp) \ | 231 SC(math_exp, V8.MathExp) \ |
| 232 SC(math_floor, V8.MathFloor) \ | 232 SC(math_floor, V8.MathFloor) \ |
| 233 SC(math_log, V8.MathLog) \ | 233 SC(math_log, V8.MathLog) \ |
| 234 SC(math_pow, V8.MathPow) \ | 234 SC(math_pow, V8.MathPow) \ |
| 235 SC(math_round, V8.MathRound) \ | 235 SC(math_round, V8.MathRound) \ |
| 236 SC(math_sin, V8.MathSin) \ | 236 SC(math_sin, V8.MathSin) \ |
| 237 SC(math_sqrt, V8.MathSqrt) \ | 237 SC(math_sqrt, V8.MathSqrt) \ |
| 238 SC(math_tan, V8.MathTan) \ | 238 SC(math_tan, V8.MathTan) \ |
| 239 SC(array_bounds_checks_seen, V8.ArrayBoundsChecksSeen) \ | |
| 240 SC(array_bounds_checks_removed, V8.ArrayBoundsChecksRemoved) \ | |
| 241 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ | 239 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ |
| 242 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ | 240 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ |
| 243 SC(stack_interrupts, V8.StackInterrupts) \ | 241 SC(stack_interrupts, V8.StackInterrupts) \ |
| 244 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ | 242 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ |
| 245 SC(other_ticks, V8.OtherTicks) \ | 243 SC(other_ticks, V8.OtherTicks) \ |
| 246 SC(js_opt_ticks, V8.JsOptTicks) \ | 244 SC(js_opt_ticks, V8.JsOptTicks) \ |
| 247 SC(js_non_opt_ticks, V8.JsNonoptTicks) \ | 245 SC(js_non_opt_ticks, V8.JsNonoptTicks) \ |
| 248 SC(js_other_ticks, V8.JsOtherTicks) \ | 246 SC(js_other_ticks, V8.JsOtherTicks) \ |
| 249 SC(smi_checks_removed, V8.SmiChecksRemoved) \ | 247 SC(smi_checks_removed, V8.SmiChecksRemoved) \ |
| 250 SC(map_checks_removed, V8.MapChecksRemoved) \ | 248 SC(map_checks_removed, V8.MapChecksRemoved) \ |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 // Sliding state window counters. | 304 // Sliding state window counters. |
| 307 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; | 305 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; |
| 308 friend class Isolate; | 306 friend class Isolate; |
| 309 | 307 |
| 310 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 308 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 311 }; | 309 }; |
| 312 | 310 |
| 313 } } // namespace v8::internal | 311 } } // namespace v8::internal |
| 314 | 312 |
| 315 #endif // V8_V8_COUNTERS_H_ | 313 #endif // V8_V8_COUNTERS_H_ |
| OLD | NEW |