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

Side by Side Diff: src/builtins.h

Issue 10855098: Deoptimization support for accessors. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Tiny test changes. Rebased. Created 8 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/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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 V(StoreIC_Initialize_Strict, STORE_IC, UNINITIALIZED, \ 150 V(StoreIC_Initialize_Strict, STORE_IC, UNINITIALIZED, \
151 kStrictMode) \ 151 kStrictMode) \
152 V(StoreIC_ArrayLength_Strict, STORE_IC, MONOMORPHIC, \ 152 V(StoreIC_ArrayLength_Strict, STORE_IC, MONOMORPHIC, \
153 kStrictMode) \ 153 kStrictMode) \
154 V(StoreIC_Normal_Strict, STORE_IC, MONOMORPHIC, \ 154 V(StoreIC_Normal_Strict, STORE_IC, MONOMORPHIC, \
155 kStrictMode) \ 155 kStrictMode) \
156 V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \ 156 V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \
157 kStrictMode) \ 157 kStrictMode) \
158 V(StoreIC_GlobalProxy_Strict, STORE_IC, MEGAMORPHIC, \ 158 V(StoreIC_GlobalProxy_Strict, STORE_IC, MEGAMORPHIC, \
159 kStrictMode) \ 159 kStrictMode) \
160 V(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \
161 kStrictMode) \
160 \ 162 \
161 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \ 163 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \
162 Code::kNoExtraICState) \ 164 Code::kNoExtraICState) \
163 V(KeyedStoreIC_Generic, KEYED_STORE_IC, MEGAMORPHIC, \ 165 V(KeyedStoreIC_Generic, KEYED_STORE_IC, MEGAMORPHIC, \
164 Code::kNoExtraICState) \ 166 Code::kNoExtraICState) \
165 \ 167 \
166 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \ 168 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \
167 kStrictMode) \ 169 kStrictMode) \
168 V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, MEGAMORPHIC, \ 170 V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, MEGAMORPHIC, \
169 kStrictMode) \ 171 kStrictMode) \
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 383
382 friend class BuiltinFunctionTable; 384 friend class BuiltinFunctionTable;
383 friend class Isolate; 385 friend class Isolate;
384 386
385 DISALLOW_COPY_AND_ASSIGN(Builtins); 387 DISALLOW_COPY_AND_ASSIGN(Builtins);
386 }; 388 };
387 389
388 } } // namespace v8::internal 390 } } // namespace v8::internal
389 391
390 #endif // V8_BUILTINS_H_ 392 #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