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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 V(InterpreterEnterBytecodeDispatch, BUILTIN, kNoExtraICState) \ | 253 V(InterpreterEnterBytecodeDispatch, BUILTIN, kNoExtraICState) \ |
254 \ | 254 \ |
255 V(KeyedLoadIC_Miss, BUILTIN, kNoExtraICState) \ | 255 V(KeyedLoadIC_Miss, BUILTIN, kNoExtraICState) \ |
256 V(StoreIC_Miss, BUILTIN, kNoExtraICState) \ | 256 V(StoreIC_Miss, BUILTIN, kNoExtraICState) \ |
257 V(KeyedStoreIC_Miss, BUILTIN, kNoExtraICState) \ | 257 V(KeyedStoreIC_Miss, BUILTIN, kNoExtraICState) \ |
258 V(LoadIC_Getter_ForDeopt, LOAD_IC, kNoExtraICState) \ | 258 V(LoadIC_Getter_ForDeopt, LOAD_IC, kNoExtraICState) \ |
259 V(KeyedLoadIC_Megamorphic, KEYED_LOAD_IC, kNoExtraICState) \ | 259 V(KeyedLoadIC_Megamorphic, KEYED_LOAD_IC, kNoExtraICState) \ |
260 \ | 260 \ |
261 V(StoreIC_Setter_ForDeopt, STORE_IC, StoreICState::kStrictModeState) \ | 261 V(StoreIC_Setter_ForDeopt, STORE_IC, StoreICState::kStrictModeState) \ |
262 \ | 262 \ |
263 V(StoreIC_Megamorphic, STORE_IC, kNoExtraICState) \ | |
264 V(StoreIC_Megamorphic_Strict, STORE_IC, StoreICState::kStrictModeState) \ | |
265 \ | |
266 V(KeyedStoreIC_Megamorphic, KEYED_STORE_IC, kNoExtraICState) \ | 263 V(KeyedStoreIC_Megamorphic, KEYED_STORE_IC, kNoExtraICState) \ |
267 V(KeyedStoreIC_Megamorphic_Strict, KEYED_STORE_IC, \ | 264 V(KeyedStoreIC_Megamorphic_Strict, KEYED_STORE_IC, \ |
268 StoreICState::kStrictModeState) \ | 265 StoreICState::kStrictModeState) \ |
269 \ | 266 \ |
270 V(DatePrototypeGetDate, BUILTIN, kNoExtraICState) \ | 267 V(DatePrototypeGetDate, BUILTIN, kNoExtraICState) \ |
271 V(DatePrototypeGetDay, BUILTIN, kNoExtraICState) \ | 268 V(DatePrototypeGetDay, BUILTIN, kNoExtraICState) \ |
272 V(DatePrototypeGetFullYear, BUILTIN, kNoExtraICState) \ | 269 V(DatePrototypeGetFullYear, BUILTIN, kNoExtraICState) \ |
273 V(DatePrototypeGetHours, BUILTIN, kNoExtraICState) \ | 270 V(DatePrototypeGetHours, BUILTIN, kNoExtraICState) \ |
274 V(DatePrototypeGetMilliseconds, BUILTIN, kNoExtraICState) \ | 271 V(DatePrototypeGetMilliseconds, BUILTIN, kNoExtraICState) \ |
275 V(DatePrototypeGetMinutes, BUILTIN, kNoExtraICState) \ | 272 V(DatePrototypeGetMinutes, BUILTIN, kNoExtraICState) \ |
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
737 friend class BuiltinFunctionTable; | 734 friend class BuiltinFunctionTable; |
738 friend class Isolate; | 735 friend class Isolate; |
739 | 736 |
740 DISALLOW_COPY_AND_ASSIGN(Builtins); | 737 DISALLOW_COPY_AND_ASSIGN(Builtins); |
741 }; | 738 }; |
742 | 739 |
743 } // namespace internal | 740 } // namespace internal |
744 } // namespace v8 | 741 } // namespace v8 |
745 | 742 |
746 #endif // V8_BUILTINS_H_ | 743 #endif // V8_BUILTINS_H_ |
OLD | NEW |