OLD | NEW |
---|---|
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_BUILTINS_H_ | 5 #ifndef V8_BUILTINS_H_ |
6 #define V8_BUILTINS_H_ | 6 #define V8_BUILTINS_H_ |
7 | 7 |
8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
9 #include "src/handles.h" | 9 #include "src/handles.h" |
10 | 10 |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
239 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 239 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
240 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 240 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
241 V(StoreIC_Miss, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 241 V(StoreIC_Miss, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
242 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 242 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
243 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, kNoExtraICState) \ | 243 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, kNoExtraICState) \ |
244 V(KeyedLoadIC_Megamorphic, KEYED_LOAD_IC, MEGAMORPHIC, kNoExtraICState) \ | 244 V(KeyedLoadIC_Megamorphic, KEYED_LOAD_IC, MEGAMORPHIC, kNoExtraICState) \ |
245 \ | 245 \ |
246 V(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \ | 246 V(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \ |
247 StoreICState::kStrictModeState) \ | 247 StoreICState::kStrictModeState) \ |
248 \ | 248 \ |
249 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, kNoExtraICState) \ | |
mvstanton
2016/04/05 13:10:43
Thanks for getting rid of these guys! :)
| |
250 V(KeyedStoreIC_PreMonomorphic, KEYED_STORE_IC, PREMONOMORPHIC, \ | |
251 kNoExtraICState) \ | |
252 V(KeyedStoreIC_Megamorphic, KEYED_STORE_IC, MEGAMORPHIC, kNoExtraICState) \ | 249 V(KeyedStoreIC_Megamorphic, KEYED_STORE_IC, MEGAMORPHIC, kNoExtraICState) \ |
253 \ | 250 \ |
254 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \ | |
255 StoreICState::kStrictModeState) \ | |
256 V(KeyedStoreIC_PreMonomorphic_Strict, KEYED_STORE_IC, PREMONOMORPHIC, \ | |
257 StoreICState::kStrictModeState) \ | |
258 V(KeyedStoreIC_Megamorphic_Strict, KEYED_STORE_IC, MEGAMORPHIC, \ | 251 V(KeyedStoreIC_Megamorphic_Strict, KEYED_STORE_IC, MEGAMORPHIC, \ |
259 StoreICState::kStrictModeState) \ | 252 StoreICState::kStrictModeState) \ |
260 \ | 253 \ |
261 V(DatePrototypeGetDate, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 254 V(DatePrototypeGetDate, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
262 V(DatePrototypeGetDay, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 255 V(DatePrototypeGetDay, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
263 V(DatePrototypeGetFullYear, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 256 V(DatePrototypeGetFullYear, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
264 V(DatePrototypeGetHours, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 257 V(DatePrototypeGetHours, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
265 V(DatePrototypeGetMilliseconds, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 258 V(DatePrototypeGetMilliseconds, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
266 V(DatePrototypeGetMinutes, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 259 V(DatePrototypeGetMinutes, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
267 V(DatePrototypeGetMonth, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 260 V(DatePrototypeGetMonth, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
657 friend class BuiltinFunctionTable; | 650 friend class BuiltinFunctionTable; |
658 friend class Isolate; | 651 friend class Isolate; |
659 | 652 |
660 DISALLOW_COPY_AND_ASSIGN(Builtins); | 653 DISALLOW_COPY_AND_ASSIGN(Builtins); |
661 }; | 654 }; |
662 | 655 |
663 } // namespace internal | 656 } // namespace internal |
664 } // namespace v8 | 657 } // namespace v8 |
665 | 658 |
666 #endif // V8_BUILTINS_H_ | 659 #endif // V8_BUILTINS_H_ |
OLD | NEW |