| 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(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \ | |
| 161 kStrictMode) \ | |
| 162 \ | 160 \ |
| 163 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \ | 161 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \ |
| 164 Code::kNoExtraICState) \ | 162 Code::kNoExtraICState) \ |
| 165 V(KeyedStoreIC_Generic, KEYED_STORE_IC, MEGAMORPHIC, \ | 163 V(KeyedStoreIC_Generic, KEYED_STORE_IC, MEGAMORPHIC, \ |
| 166 Code::kNoExtraICState) \ | 164 Code::kNoExtraICState) \ |
| 167 \ | 165 \ |
| 168 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \ | 166 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \ |
| 169 kStrictMode) \ | 167 kStrictMode) \ |
| 170 V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, MEGAMORPHIC, \ | 168 V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, MEGAMORPHIC, \ |
| 171 kStrictMode) \ | 169 kStrictMode) \ |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 | 381 |
| 384 friend class BuiltinFunctionTable; | 382 friend class BuiltinFunctionTable; |
| 385 friend class Isolate; | 383 friend class Isolate; |
| 386 | 384 |
| 387 DISALLOW_COPY_AND_ASSIGN(Builtins); | 385 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 388 }; | 386 }; |
| 389 | 387 |
| 390 } } // namespace v8::internal | 388 } } // namespace v8::internal |
| 391 | 389 |
| 392 #endif // V8_BUILTINS_H_ | 390 #endif // V8_BUILTINS_H_ |
| OLD | NEW |