OLD | NEW |
---|---|
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 Loading... | |
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(SetterStubForDeopt, STORE_IC, MONOMORPHIC, \ | |
Michael Starzinger
2012/08/16 17:20:04
Can we call this "StoreIC_Setter_ForDeopt"?
Sven Panne
2012/08/17 07:27:26
Done.
| |
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 Loading... | |
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_ |
OLD | NEW |