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

Side by Side Diff: src/builtins.h

Issue 95503003: Remove special "store global proxy" IC, use as slow_stub(). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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 | « no previous file | 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 V(StoreIC_Initialize, STORE_IC, UNINITIALIZED, \ 150 V(StoreIC_Initialize, STORE_IC, UNINITIALIZED, \
151 kNoExtraICState) \ 151 kNoExtraICState) \
152 V(StoreIC_PreMonomorphic, STORE_IC, PREMONOMORPHIC, \ 152 V(StoreIC_PreMonomorphic, STORE_IC, PREMONOMORPHIC, \
153 kNoExtraICState) \ 153 kNoExtraICState) \
154 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \ 154 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \
155 kNoExtraICState) \ 155 kNoExtraICState) \
156 V(StoreIC_Generic, STORE_IC, GENERIC, \ 156 V(StoreIC_Generic, STORE_IC, GENERIC, \
157 kNoExtraICState) \ 157 kNoExtraICState) \
158 V(StoreIC_Generic_Strict, STORE_IC, GENERIC, \ 158 V(StoreIC_Generic_Strict, STORE_IC, GENERIC, \
159 StoreIC::kStrictModeState) \ 159 StoreIC::kStrictModeState) \
160 V(StoreIC_GlobalProxy, STORE_IC, GENERIC, \
161 kNoExtraICState) \
162 V(StoreIC_Initialize_Strict, STORE_IC, UNINITIALIZED, \ 160 V(StoreIC_Initialize_Strict, STORE_IC, UNINITIALIZED, \
163 StoreIC::kStrictModeState) \ 161 StoreIC::kStrictModeState) \
164 V(StoreIC_PreMonomorphic_Strict, STORE_IC, PREMONOMORPHIC, \ 162 V(StoreIC_PreMonomorphic_Strict, STORE_IC, PREMONOMORPHIC, \
165 StoreIC::kStrictModeState) \ 163 StoreIC::kStrictModeState) \
166 V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \ 164 V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \
167 StoreIC::kStrictModeState) \ 165 StoreIC::kStrictModeState) \
168 V(StoreIC_GlobalProxy_Strict, STORE_IC, GENERIC, \
169 StoreIC::kStrictModeState) \
170 V(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \ 166 V(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \
171 StoreIC::kStrictModeState) \ 167 StoreIC::kStrictModeState) \
172 \ 168 \
173 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \ 169 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \
174 kNoExtraICState) \ 170 kNoExtraICState) \
175 V(KeyedStoreIC_PreMonomorphic, KEYED_STORE_IC, PREMONOMORPHIC, \ 171 V(KeyedStoreIC_PreMonomorphic, KEYED_STORE_IC, PREMONOMORPHIC, \
176 kNoExtraICState) \ 172 kNoExtraICState) \
177 V(KeyedStoreIC_Generic, KEYED_STORE_IC, GENERIC, \ 173 V(KeyedStoreIC_Generic, KEYED_STORE_IC, GENERIC, \
178 kNoExtraICState) \ 174 kNoExtraICState) \
179 \ 175 \
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 430
435 friend class BuiltinFunctionTable; 431 friend class BuiltinFunctionTable;
436 friend class Isolate; 432 friend class Isolate;
437 433
438 DISALLOW_COPY_AND_ASSIGN(Builtins); 434 DISALLOW_COPY_AND_ASSIGN(Builtins);
439 }; 435 };
440 436
441 } } // namespace v8::internal 437 } } // namespace v8::internal
442 438
443 #endif // V8_BUILTINS_H_ 439 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698