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 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 | 10 |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 V(KeyedStoreIC_PreMonomorphic, KEYED_STORE_IC, PREMONOMORPHIC, \ | 96 V(KeyedStoreIC_PreMonomorphic, KEYED_STORE_IC, PREMONOMORPHIC, \ |
97 kNoExtraICState) \ | 97 kNoExtraICState) \ |
98 V(KeyedStoreIC_Megamorphic, KEYED_STORE_IC, MEGAMORPHIC, kNoExtraICState) \ | 98 V(KeyedStoreIC_Megamorphic, KEYED_STORE_IC, MEGAMORPHIC, kNoExtraICState) \ |
99 \ | 99 \ |
100 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \ | 100 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \ |
101 StoreICState::kStrictModeState) \ | 101 StoreICState::kStrictModeState) \ |
102 V(KeyedStoreIC_PreMonomorphic_Strict, KEYED_STORE_IC, PREMONOMORPHIC, \ | 102 V(KeyedStoreIC_PreMonomorphic_Strict, KEYED_STORE_IC, PREMONOMORPHIC, \ |
103 StoreICState::kStrictModeState) \ | 103 StoreICState::kStrictModeState) \ |
104 V(KeyedStoreIC_Megamorphic_Strict, KEYED_STORE_IC, MEGAMORPHIC, \ | 104 V(KeyedStoreIC_Megamorphic_Strict, KEYED_STORE_IC, MEGAMORPHIC, \ |
105 StoreICState::kStrictModeState) \ | 105 StoreICState::kStrictModeState) \ |
106 V(KeyedStoreIC_SloppyArguments, KEYED_STORE_IC, MONOMORPHIC, \ | |
107 kNoExtraICState) \ | |
108 \ | 106 \ |
109 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \ | 107 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \ |
110 V(FunctionCall, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 108 V(FunctionCall, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
111 V(FunctionApply, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 109 V(FunctionApply, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
112 V(ReflectApply, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 110 V(ReflectApply, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
113 V(ReflectConstruct, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 111 V(ReflectConstruct, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
114 \ | 112 \ |
115 V(InternalArrayCode, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 113 V(InternalArrayCode, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
116 V(ArrayCode, BUILTIN, UNINITIALIZED, kNoExtraICState) \ | 114 V(ArrayCode, BUILTIN, UNINITIALIZED, kNoExtraICState) \ |
117 \ | 115 \ |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 | 364 |
367 friend class BuiltinFunctionTable; | 365 friend class BuiltinFunctionTable; |
368 friend class Isolate; | 366 friend class Isolate; |
369 | 367 |
370 DISALLOW_COPY_AND_ASSIGN(Builtins); | 368 DISALLOW_COPY_AND_ASSIGN(Builtins); |
371 }; | 369 }; |
372 | 370 |
373 } } // namespace v8::internal | 371 } } // namespace v8::internal |
374 | 372 |
375 #endif // V8_BUILTINS_H_ | 373 #endif // V8_BUILTINS_H_ |
OLD | NEW |