| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 SC(string_compare_native, V8.StringCompareNative) \ | 235 SC(string_compare_native, V8.StringCompareNative) \ |
| 236 SC(string_compare_runtime, V8.StringCompareRuntime) \ | 236 SC(string_compare_runtime, V8.StringCompareRuntime) \ |
| 237 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \ | 237 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \ |
| 238 SC(regexp_entry_native, V8.RegExpEntryNative) \ | 238 SC(regexp_entry_native, V8.RegExpEntryNative) \ |
| 239 SC(number_to_string_native, V8.NumberToStringNative) \ | 239 SC(number_to_string_native, V8.NumberToStringNative) \ |
| 240 SC(number_to_string_runtime, V8.NumberToStringRuntime) \ | 240 SC(number_to_string_runtime, V8.NumberToStringRuntime) \ |
| 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_cos, V8.MathCos) \ | |
| 246 SC(math_exp, V8.MathExp) \ | 245 SC(math_exp, V8.MathExp) \ |
| 247 SC(math_floor, V8.MathFloor) \ | 246 SC(math_floor, V8.MathFloor) \ |
| 248 SC(math_log, V8.MathLog) \ | 247 SC(math_log, V8.MathLog) \ |
| 249 SC(math_pow, V8.MathPow) \ | 248 SC(math_pow, V8.MathPow) \ |
| 250 SC(math_round, V8.MathRound) \ | 249 SC(math_round, V8.MathRound) \ |
| 251 SC(math_sin, V8.MathSin) \ | |
| 252 SC(math_sqrt, V8.MathSqrt) \ | 250 SC(math_sqrt, V8.MathSqrt) \ |
| 253 SC(math_tan, V8.MathTan) \ | |
| 254 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ | 251 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ |
| 255 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ | 252 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ |
| 256 SC(stack_interrupts, V8.StackInterrupts) \ | 253 SC(stack_interrupts, V8.StackInterrupts) \ |
| 257 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ | 254 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ |
| 258 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \ | 255 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \ |
| 259 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \ | 256 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \ |
| 260 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \ | 257 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \ |
| 261 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \ | 258 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \ |
| 262 SC(soft_deopts_executed, V8.SoftDeoptsExecuted) \ | 259 SC(soft_deopts_executed, V8.SoftDeoptsExecuted) \ |
| 263 /* Number of write barriers in generated code. */ \ | 260 /* Number of write barriers in generated code. */ \ |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 friend class Isolate; | 428 friend class Isolate; |
| 432 | 429 |
| 433 explicit Counters(Isolate* isolate); | 430 explicit Counters(Isolate* isolate); |
| 434 | 431 |
| 435 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 432 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 436 }; | 433 }; |
| 437 | 434 |
| 438 } } // namespace v8::internal | 435 } } // namespace v8::internal |
| 439 | 436 |
| 440 #endif // V8_V8_COUNTERS_H_ | 437 #endif // V8_V8_COUNTERS_H_ |
| OLD | NEW |