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

Side by Side Diff: src/builtins.h

Issue 11896091: Replace store array length builtin with codestub. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Only inform of updating IC after actually updating it. Created 7 years, 11 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/arm/stub-cache-arm.cc ('k') | src/builtins.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 Code::kNoExtraICState) \ 147 Code::kNoExtraICState) \
148 V(KeyedLoadIC_String, KEYED_LOAD_IC, GENERIC, \ 148 V(KeyedLoadIC_String, KEYED_LOAD_IC, GENERIC, \
149 Code::kNoExtraICState) \ 149 Code::kNoExtraICState) \
150 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, GENERIC, \ 150 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, GENERIC, \
151 Code::kNoExtraICState) \ 151 Code::kNoExtraICState) \
152 V(KeyedLoadIC_NonStrictArguments, KEYED_LOAD_IC, GENERIC, \ 152 V(KeyedLoadIC_NonStrictArguments, KEYED_LOAD_IC, GENERIC, \
153 Code::kNoExtraICState) \ 153 Code::kNoExtraICState) \
154 \ 154 \
155 V(StoreIC_Initialize, STORE_IC, UNINITIALIZED, \ 155 V(StoreIC_Initialize, STORE_IC, UNINITIALIZED, \
156 Code::kNoExtraICState) \ 156 Code::kNoExtraICState) \
157 V(StoreIC_ArrayLength, STORE_IC, MONOMORPHIC, \
158 Code::kNoExtraICState) \
159 V(StoreIC_Normal, STORE_IC, MONOMORPHIC, \ 157 V(StoreIC_Normal, STORE_IC, MONOMORPHIC, \
160 Code::kNoExtraICState) \ 158 Code::kNoExtraICState) \
161 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \ 159 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \
162 Code::kNoExtraICState) \ 160 Code::kNoExtraICState) \
163 V(StoreIC_GlobalProxy, STORE_IC, GENERIC, \ 161 V(StoreIC_GlobalProxy, STORE_IC, GENERIC, \
164 Code::kNoExtraICState) \ 162 Code::kNoExtraICState) \
165 V(StoreIC_Initialize_Strict, STORE_IC, UNINITIALIZED, \ 163 V(StoreIC_Initialize_Strict, STORE_IC, UNINITIALIZED, \
166 kStrictMode) \ 164 kStrictMode) \
167 V(StoreIC_ArrayLength_Strict, STORE_IC, MONOMORPHIC, \
168 kStrictMode) \
169 V(StoreIC_Normal_Strict, STORE_IC, MONOMORPHIC, \ 165 V(StoreIC_Normal_Strict, STORE_IC, MONOMORPHIC, \
170 kStrictMode) \ 166 kStrictMode) \
171 V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \ 167 V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \
172 kStrictMode) \ 168 kStrictMode) \
173 V(StoreIC_GlobalProxy_Strict, STORE_IC, GENERIC, \ 169 V(StoreIC_GlobalProxy_Strict, STORE_IC, GENERIC, \
174 kStrictMode) \ 170 kStrictMode) \
175 V(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \ 171 V(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \
176 kStrictMode) \ 172 kStrictMode) \
177 \ 173 \
178 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \ 174 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 403
408 friend class BuiltinFunctionTable; 404 friend class BuiltinFunctionTable;
409 friend class Isolate; 405 friend class Isolate;
410 406
411 DISALLOW_COPY_AND_ASSIGN(Builtins); 407 DISALLOW_COPY_AND_ASSIGN(Builtins);
412 }; 408 };
413 409
414 } } // namespace v8::internal 410 } } // namespace v8::internal
415 411
416 #endif // V8_BUILTINS_H_ 412 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698