Index: src/builtins.h |
diff --git a/src/builtins.h b/src/builtins.h |
index b7be7856588e8893877aafc3e3d801b8074a647e..cbfa1d768816ded3715d6a441198d58a36a63232 100644 |
--- a/src/builtins.h |
+++ b/src/builtins.h |
@@ -162,6 +162,8 @@ enum BuiltinExtraArguments { |
\ |
V(StoreIC_Initialize, STORE_IC, UNINITIALIZED, \ |
Code::kNoExtraICState) \ |
+ V(StoreIC_PreMonomorphic, STORE_IC, PREMONOMORPHIC, \ |
+ Code::kNoExtraICState) \ |
V(StoreIC_Normal, STORE_IC, MONOMORPHIC, \ |
Code::kNoExtraICState) \ |
V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \ |
@@ -174,6 +176,8 @@ enum BuiltinExtraArguments { |
Code::kNoExtraICState) \ |
V(StoreIC_Initialize_Strict, STORE_IC, UNINITIALIZED, \ |
kStrictMode) \ |
+ V(StoreIC_PreMonomorphic_Strict, STORE_IC, PREMONOMORPHIC, \ |
+ kStrictMode) \ |
V(StoreIC_Normal_Strict, STORE_IC, MONOMORPHIC, \ |
kStrictMode) \ |
V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \ |
@@ -185,11 +189,15 @@ enum BuiltinExtraArguments { |
\ |
V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \ |
Code::kNoExtraICState) \ |
+ V(KeyedStoreIC_PreMonomorphic, KEYED_STORE_IC, PREMONOMORPHIC, \ |
+ Code::kNoExtraICState) \ |
V(KeyedStoreIC_Generic, KEYED_STORE_IC, GENERIC, \ |
Code::kNoExtraICState) \ |
\ |
V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \ |
kStrictMode) \ |
+ V(KeyedStoreIC_PreMonomorphic_Strict, KEYED_STORE_IC, PREMONOMORPHIC, \ |
+ kStrictMode) \ |
V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, GENERIC, \ |
kStrictMode) \ |
V(KeyedStoreIC_NonStrictArguments, KEYED_STORE_IC, MONOMORPHIC, \ |