| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 SC(fast_new_closure_try_optimized, V8.FastNewClosureTryOptimized) \ | 245 SC(fast_new_closure_try_optimized, V8.FastNewClosureTryOptimized) \ |
| 246 SC(fast_new_closure_install_optimized, V8.FastNewClosureInstallOptimized) \ | 246 SC(fast_new_closure_install_optimized, V8.FastNewClosureInstallOptimized) \ |
| 247 SC(string_add_runtime, V8.StringAddRuntime) \ | 247 SC(string_add_runtime, V8.StringAddRuntime) \ |
| 248 SC(string_add_native, V8.StringAddNative) \ | 248 SC(string_add_native, V8.StringAddNative) \ |
| 249 SC(string_add_runtime_ext_to_ascii, V8.StringAddRuntimeExtToAscii) \ | 249 SC(string_add_runtime_ext_to_ascii, V8.StringAddRuntimeExtToAscii) \ |
| 250 SC(sub_string_runtime, V8.SubStringRuntime) \ | 250 SC(sub_string_runtime, V8.SubStringRuntime) \ |
| 251 SC(sub_string_native, V8.SubStringNative) \ | 251 SC(sub_string_native, V8.SubStringNative) \ |
| 252 SC(string_add_make_two_char, V8.StringAddMakeTwoChar) \ | 252 SC(string_add_make_two_char, V8.StringAddMakeTwoChar) \ |
| 253 SC(string_compare_native, V8.StringCompareNative) \ | 253 SC(string_compare_native, V8.StringCompareNative) \ |
| 254 SC(string_compare_runtime, V8.StringCompareRuntime) \ | 254 SC(string_compare_runtime, V8.StringCompareRuntime) \ |
| 255 SC(string_length_utf8, V8.StringLengthUtf8) \ |
| 256 SC(string_length_ascii, V8.StringLengthAScii) \ |
| 257 SC(string_length_latin1, V8.StringLengthLatin1) \ |
| 258 SC(string_length_utf16, V8.StringLengthUtf16) \ |
| 255 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \ | 259 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \ |
| 256 SC(regexp_entry_native, V8.RegExpEntryNative) \ | 260 SC(regexp_entry_native, V8.RegExpEntryNative) \ |
| 257 SC(number_to_string_native, V8.NumberToStringNative) \ | 261 SC(number_to_string_native, V8.NumberToStringNative) \ |
| 258 SC(number_to_string_runtime, V8.NumberToStringRuntime) \ | 262 SC(number_to_string_runtime, V8.NumberToStringRuntime) \ |
| 259 SC(math_acos, V8.MathAcos) \ | 263 SC(math_acos, V8.MathAcos) \ |
| 260 SC(math_asin, V8.MathAsin) \ | 264 SC(math_asin, V8.MathAsin) \ |
| 261 SC(math_atan, V8.MathAtan) \ | 265 SC(math_atan, V8.MathAtan) \ |
| 262 SC(math_atan2, V8.MathAtan2) \ | 266 SC(math_atan2, V8.MathAtan2) \ |
| 263 SC(math_ceil, V8.MathCeil) \ | 267 SC(math_ceil, V8.MathCeil) \ |
| 264 SC(math_cos, V8.MathCos) \ | 268 SC(math_cos, V8.MathCos) \ |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 // Sliding state window counters. | 440 // Sliding state window counters. |
| 437 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; | 441 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; |
| 438 friend class Isolate; | 442 friend class Isolate; |
| 439 | 443 |
| 440 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 444 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 441 }; | 445 }; |
| 442 | 446 |
| 443 } } // namespace v8::internal | 447 } } // namespace v8::internal |
| 444 | 448 |
| 445 #endif // V8_V8_COUNTERS_H_ | 449 #endif // V8_V8_COUNTERS_H_ |
| OLD | NEW |