Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: src/v8-counters.h

Issue 172088: Analyze functions for assignment to this properties (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/runtime.cc ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2007-2008 the V8 project authors. All rights reserved. 1 // Copyright 2007-2008 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 SC(named_load_inline_miss, V8.NamedLoadInlineMiss) \ 132 SC(named_load_inline_miss, V8.NamedLoadInlineMiss) \
133 SC(named_load_global_inline, V8.NamedLoadGlobalInline) \ 133 SC(named_load_global_inline, V8.NamedLoadGlobalInline) \
134 SC(named_load_global_inline_miss, V8.NamedLoadGlobalInlineMiss) \ 134 SC(named_load_global_inline_miss, V8.NamedLoadGlobalInlineMiss) \
135 SC(keyed_store_field, V8.KeyedStoreField) \ 135 SC(keyed_store_field, V8.KeyedStoreField) \
136 SC(keyed_store_inline, V8.KeyedStoreInline) \ 136 SC(keyed_store_inline, V8.KeyedStoreInline) \
137 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \ 137 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \
138 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \ 138 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \
139 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \ 139 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \
140 SC(call_global_inline, V8.CallGlobalInline) \ 140 SC(call_global_inline, V8.CallGlobalInline) \
141 SC(call_global_inline_miss, V8.CallGlobalInlineMiss) \ 141 SC(call_global_inline_miss, V8.CallGlobalInlineMiss) \
142 SC(constructed_objects, V8.ConstructedObjects) \
143 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \
142 SC(for_in, V8.ForIn) \ 144 SC(for_in, V8.ForIn) \
143 SC(enum_cache_hits, V8.EnumCacheHits) \ 145 SC(enum_cache_hits, V8.EnumCacheHits) \
144 SC(enum_cache_misses, V8.EnumCacheMisses) \ 146 SC(enum_cache_misses, V8.EnumCacheMisses) \
145 SC(reloc_info_count, V8.RelocInfoCount) \ 147 SC(reloc_info_count, V8.RelocInfoCount) \
146 SC(reloc_info_size, V8.RelocInfoSize) \ 148 SC(reloc_info_size, V8.RelocInfoSize) \
147 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \ 149 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \
148 SC(compute_entry_frame, V8.ComputeEntryFrame) 150 SC(compute_entry_frame, V8.ComputeEntryFrame)
149 151
150 152
151 // This file contains all the v8 counters that are in use. 153 // This file contains all the v8 counters that are in use.
(...skipping 24 matching lines...) Expand all
176 stats_counter_count 178 stats_counter_count
177 }; 179 };
178 180
179 // Sliding state window counters. 181 // Sliding state window counters.
180 static StatsCounter state_counters[]; 182 static StatsCounter state_counters[];
181 }; 183 };
182 184
183 } } // namespace v8::internal 185 } } // namespace v8::internal
184 186
185 #endif // V8_V8_COUNTERS_H_ 187 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698