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

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

Issue 16409: Inline array loads in loops directly in the code instead of always... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 12 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
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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 SC(keyed_load_generic_symbol, V8.KeyedLoadGenericSymbol) \ 106 SC(keyed_load_generic_symbol, V8.KeyedLoadGenericSymbol) \
107 SC(keyed_load_generic_slow, V8.KeyedLoadGenericSlow) \ 107 SC(keyed_load_generic_slow, V8.KeyedLoadGenericSlow) \
108 /* Count how much the monomorphic keyed-load stubs are hit. */ \ 108 /* Count how much the monomorphic keyed-load stubs are hit. */ \
109 SC(keyed_load_function_prototype, V8.KeyedLoadFunctionPrototype) \ 109 SC(keyed_load_function_prototype, V8.KeyedLoadFunctionPrototype) \
110 SC(keyed_load_string_length, V8.KeyedLoadStringLength) \ 110 SC(keyed_load_string_length, V8.KeyedLoadStringLength) \
111 SC(keyed_load_array_length, V8.KeyedLoadArrayLength) \ 111 SC(keyed_load_array_length, V8.KeyedLoadArrayLength) \
112 SC(keyed_load_constant_function, V8.KeyedLoadConstantFunction) \ 112 SC(keyed_load_constant_function, V8.KeyedLoadConstantFunction) \
113 SC(keyed_load_field, V8.KeyedLoadField) \ 113 SC(keyed_load_field, V8.KeyedLoadField) \
114 SC(keyed_load_callback, V8.KeyedLoadCallback) \ 114 SC(keyed_load_callback, V8.KeyedLoadCallback) \
115 SC(keyed_load_interceptor, V8.KeyedLoadInterceptor) \ 115 SC(keyed_load_interceptor, V8.KeyedLoadInterceptor) \
116 SC(keyed_load_inline, V8.KeyedLoadInline) \
117 SC(keyed_load_inline_miss, V8.KeyedLoadInlineMiss) \
116 SC(keyed_store_field, V8.KeyedStoreField) \ 118 SC(keyed_store_field, V8.KeyedStoreField) \
117 SC(for_in, V8.ForIn) \ 119 SC(for_in, V8.ForIn) \
118 SC(enum_cache_hits, V8.EnumCacheHits) \ 120 SC(enum_cache_hits, V8.EnumCacheHits) \
119 SC(enum_cache_misses, V8.EnumCacheMisses) \ 121 SC(enum_cache_misses, V8.EnumCacheMisses) \
120 SC(reloc_info_count, V8.RelocInfoCount) \ 122 SC(reloc_info_count, V8.RelocInfoCount) \
121 SC(reloc_info_size, V8.RelocInfoSize) \ 123 SC(reloc_info_size, V8.RelocInfoSize) \
122 SC(zone_segment_bytes, V8.ZoneSegmentBytes) 124 SC(zone_segment_bytes, V8.ZoneSegmentBytes)
123 125
124 126
125 // This file contains all the v8 counters that are in use. 127 // This file contains all the v8 counters that are in use.
(...skipping 24 matching lines...) Expand all
150 stats_counter_count 152 stats_counter_count
151 }; 153 };
152 154
153 // Sliding state window counters. 155 // Sliding state window counters.
154 static StatsCounter state_counters[]; 156 static StatsCounter state_counters[];
155 }; 157 };
156 158
157 } } // namespace v8::internal 159 } } // namespace v8::internal
158 160
159 #endif // V8_COUNTERS_H_ 161 #endif // V8_COUNTERS_H_
OLDNEW
« src/d8.cc ('K') | « src/stub-cache-ia32.cc ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698