| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 SC(call_global_inline, V8.CallGlobalInline) \ | 195 SC(call_global_inline, V8.CallGlobalInline) \ |
| 196 SC(call_global_inline_miss, V8.CallGlobalInlineMiss) \ | 196 SC(call_global_inline_miss, V8.CallGlobalInlineMiss) \ |
| 197 SC(constructed_objects, V8.ConstructedObjects) \ | 197 SC(constructed_objects, V8.ConstructedObjects) \ |
| 198 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \ | 198 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \ |
| 199 SC(constructed_objects_stub, V8.ConstructedObjectsStub) \ | 199 SC(constructed_objects_stub, V8.ConstructedObjectsStub) \ |
| 200 SC(negative_lookups, V8.NegativeLookups) \ | 200 SC(negative_lookups, V8.NegativeLookups) \ |
| 201 SC(negative_lookups_miss, V8.NegativeLookupsMiss) \ | 201 SC(negative_lookups_miss, V8.NegativeLookupsMiss) \ |
| 202 SC(array_function_runtime, V8.ArrayFunctionRuntime) \ | 202 SC(array_function_runtime, V8.ArrayFunctionRuntime) \ |
| 203 SC(array_function_native, V8.ArrayFunctionNative) \ | 203 SC(array_function_native, V8.ArrayFunctionNative) \ |
| 204 SC(for_in, V8.ForIn) \ | 204 SC(for_in, V8.ForIn) \ |
| 205 SC(memcopy_aligned, V8.MemCopyAligned) \ | |
| 206 SC(memcopy_unaligned, V8.MemCopyUnaligned) \ | |
| 207 SC(memcopy_noxmm, V8.MemCopyNoXMM) \ | |
| 208 SC(enum_cache_hits, V8.EnumCacheHits) \ | 205 SC(enum_cache_hits, V8.EnumCacheHits) \ |
| 209 SC(enum_cache_misses, V8.EnumCacheMisses) \ | 206 SC(enum_cache_misses, V8.EnumCacheMisses) \ |
| 210 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \ | 207 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \ |
| 211 SC(compute_entry_frame, V8.ComputeEntryFrame) \ | 208 SC(compute_entry_frame, V8.ComputeEntryFrame) \ |
| 212 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \ | 209 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \ |
| 213 SC(generic_binary_stub_calls_regs, V8.GenericBinaryStubCallsRegs) \ | 210 SC(generic_binary_stub_calls_regs, V8.GenericBinaryStubCallsRegs) \ |
| 214 SC(string_add_runtime, V8.StringAddRuntime) \ | 211 SC(string_add_runtime, V8.StringAddRuntime) \ |
| 215 SC(string_add_native, V8.StringAddNative) \ | 212 SC(string_add_native, V8.StringAddNative) \ |
| 216 SC(string_add_runtime_ext_to_ascii, V8.StringAddRuntimeExtToAscii) \ | 213 SC(string_add_runtime_ext_to_ascii, V8.StringAddRuntimeExtToAscii) \ |
| 217 SC(sub_string_runtime, V8.SubStringRuntime) \ | 214 SC(sub_string_runtime, V8.SubStringRuntime) \ |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 // Sliding state window counters. | 302 // Sliding state window counters. |
| 306 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; | 303 StatsCounter state_counters_[kSlidingStateWindowCounterCount]; |
| 307 friend class Isolate; | 304 friend class Isolate; |
| 308 | 305 |
| 309 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 306 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 310 }; | 307 }; |
| 311 | 308 |
| 312 } } // namespace v8::internal | 309 } } // namespace v8::internal |
| 313 | 310 |
| 314 #endif // V8_V8_COUNTERS_H_ | 311 #endif // V8_V8_COUNTERS_H_ |
| OLD | NEW |