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

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

Issue 99120: Inline the inobject property case for named property loads. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 7 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
« src/ia32/ic-ia32.cc ('K') | « src/ic.cc ('k') | no next file » | 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 /* Count how much the monomorphic keyed-load stubs are hit. */ \ 109 /* Count how much the monomorphic keyed-load stubs are hit. */ \
110 SC(keyed_load_function_prototype, V8.KeyedLoadFunctionPrototype) \ 110 SC(keyed_load_function_prototype, V8.KeyedLoadFunctionPrototype) \
111 SC(keyed_load_string_length, V8.KeyedLoadStringLength) \ 111 SC(keyed_load_string_length, V8.KeyedLoadStringLength) \
112 SC(keyed_load_array_length, V8.KeyedLoadArrayLength) \ 112 SC(keyed_load_array_length, V8.KeyedLoadArrayLength) \
113 SC(keyed_load_constant_function, V8.KeyedLoadConstantFunction) \ 113 SC(keyed_load_constant_function, V8.KeyedLoadConstantFunction) \
114 SC(keyed_load_field, V8.KeyedLoadField) \ 114 SC(keyed_load_field, V8.KeyedLoadField) \
115 SC(keyed_load_callback, V8.KeyedLoadCallback) \ 115 SC(keyed_load_callback, V8.KeyedLoadCallback) \
116 SC(keyed_load_interceptor, V8.KeyedLoadInterceptor) \ 116 SC(keyed_load_interceptor, V8.KeyedLoadInterceptor) \
117 SC(keyed_load_inline, V8.KeyedLoadInline) \ 117 SC(keyed_load_inline, V8.KeyedLoadInline) \
118 SC(keyed_load_inline_miss, V8.KeyedLoadInlineMiss) \ 118 SC(keyed_load_inline_miss, V8.KeyedLoadInlineMiss) \
119 SC(named_load_inline, V8.NamedLoadInline) \
120 SC(named_load_inline_miss, V8.NamedLoadInlineMiss) \
119 SC(keyed_store_field, V8.KeyedStoreField) \ 121 SC(keyed_store_field, V8.KeyedStoreField) \
120 SC(for_in, V8.ForIn) \ 122 SC(for_in, V8.ForIn) \
121 SC(enum_cache_hits, V8.EnumCacheHits) \ 123 SC(enum_cache_hits, V8.EnumCacheHits) \
122 SC(enum_cache_misses, V8.EnumCacheMisses) \ 124 SC(enum_cache_misses, V8.EnumCacheMisses) \
123 SC(reloc_info_count, V8.RelocInfoCount) \ 125 SC(reloc_info_count, V8.RelocInfoCount) \
124 SC(reloc_info_size, V8.RelocInfoSize) \ 126 SC(reloc_info_size, V8.RelocInfoSize) \
125 SC(zone_segment_bytes, V8.ZoneSegmentBytes) 127 SC(zone_segment_bytes, V8.ZoneSegmentBytes)
126 128
127 129
128 // This file contains all the v8 counters that are in use. 130 // This file contains all the v8 counters that are in use.
(...skipping 24 matching lines...) Expand all
153 stats_counter_count 155 stats_counter_count
154 }; 156 };
155 157
156 // Sliding state window counters. 158 // Sliding state window counters.
157 static StatsCounter state_counters[]; 159 static StatsCounter state_counters[];
158 }; 160 };
159 161
160 } } // namespace v8::internal 162 } } // namespace v8::internal
161 163
162 #endif // V8_COUNTERS_H_ 164 #endif // V8_COUNTERS_H_
OLDNEW
« src/ia32/ic-ia32.cc ('K') | « src/ic.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698