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 230 matching lines...) Loading... |
241 SC(math_acos, V8.MathAcos) \ | 241 SC(math_acos, V8.MathAcos) \ |
242 SC(math_asin, V8.MathAsin) \ | 242 SC(math_asin, V8.MathAsin) \ |
243 SC(math_atan, V8.MathAtan) \ | 243 SC(math_atan, V8.MathAtan) \ |
244 SC(math_atan2, V8.MathAtan2) \ | 244 SC(math_atan2, V8.MathAtan2) \ |
245 SC(math_exp, V8.MathExp) \ | 245 SC(math_exp, V8.MathExp) \ |
246 SC(math_floor, V8.MathFloor) \ | 246 SC(math_floor, V8.MathFloor) \ |
247 SC(math_log, V8.MathLog) \ | 247 SC(math_log, V8.MathLog) \ |
248 SC(math_pow, V8.MathPow) \ | 248 SC(math_pow, V8.MathPow) \ |
249 SC(math_round, V8.MathRound) \ | 249 SC(math_round, V8.MathRound) \ |
250 SC(math_sqrt, V8.MathSqrt) \ | 250 SC(math_sqrt, V8.MathSqrt) \ |
251 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ | |
252 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ | |
253 SC(stack_interrupts, V8.StackInterrupts) \ | 251 SC(stack_interrupts, V8.StackInterrupts) \ |
254 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ | 252 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ |
255 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \ | 253 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \ |
256 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \ | 254 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \ |
257 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \ | 255 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \ |
258 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \ | 256 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \ |
259 SC(soft_deopts_executed, V8.SoftDeoptsExecuted) \ | 257 SC(soft_deopts_executed, V8.SoftDeoptsExecuted) \ |
260 /* Number of write barriers in generated code. */ \ | 258 /* Number of write barriers in generated code. */ \ |
261 SC(write_barriers_dynamic, V8.WriteBarriersDynamic) \ | 259 SC(write_barriers_dynamic, V8.WriteBarriersDynamic) \ |
262 SC(write_barriers_static, V8.WriteBarriersStatic) \ | 260 SC(write_barriers_static, V8.WriteBarriersStatic) \ |
(...skipping 165 matching lines...) Loading... |
428 friend class Isolate; | 426 friend class Isolate; |
429 | 427 |
430 explicit Counters(Isolate* isolate); | 428 explicit Counters(Isolate* isolate); |
431 | 429 |
432 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 430 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
433 }; | 431 }; |
434 | 432 |
435 } } // namespace v8::internal | 433 } } // namespace v8::internal |
436 | 434 |
437 #endif // V8_V8_COUNTERS_H_ | 435 #endif // V8_V8_COUNTERS_H_ |
OLD | NEW |