| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index ff37e774110f77a4e4b6ddd4d276c8c60313a807..972ea2bd389e83493d70e76797b642f12fca7aff 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -924,30 +924,29 @@ namespace internal {
|
|
|
| // Most intrinsics are implemented in the runtime/ directory, but ICs are
|
| // implemented in ic.cc for now.
|
| -#define FOR_EACH_INTRINSIC_IC(F) \
|
| - F(BinaryOpIC_Miss, 2, 1) \
|
| - F(BinaryOpIC_MissWithAllocationSite, 3, 1) \
|
| - F(CallIC_Miss, 3, 1) \
|
| - F(CompareIC_Miss, 3, 1) \
|
| - F(ElementsTransitionAndStoreIC_Miss, 5, 1) \
|
| - F(KeyedLoadIC_Miss, 4, 1) \
|
| - F(KeyedLoadIC_MissFromStubFailure, 4, 1) \
|
| - F(KeyedStoreIC_Miss, 5, 1) \
|
| - F(KeyedStoreIC_MissFromStubFailure, 5, 1) \
|
| - F(KeyedStoreIC_Slow, 5, 1) \
|
| - F(LoadElementWithInterceptor, 2, 1) \
|
| - F(LoadGlobalIC_Miss, 2, 1) \
|
| - F(LoadGlobalIC_Slow, 2, 1) \
|
| - F(LoadIC_Miss, 4, 1) \
|
| - F(LoadIC_MissFromStubFailure, 4, 1) \
|
| - F(LoadPropertyWithInterceptor, 3, 1) \
|
| - F(LoadPropertyWithInterceptorOnly, 3, 1) \
|
| - F(StoreCallbackProperty, 6, 1) \
|
| - F(StoreIC_Miss, 5, 1) \
|
| - F(StoreIC_MissFromStubFailure, 5, 1) \
|
| - F(TransitionStoreIC_MissFromStubFailure, 6, 1) \
|
| - F(StorePropertyWithInterceptor, 3, 1) \
|
| - F(ToBooleanIC_Miss, 1, 1) \
|
| +#define FOR_EACH_INTRINSIC_IC(F) \
|
| + F(BinaryOpIC_Miss, 2, 1) \
|
| + F(BinaryOpIC_MissWithAllocationSite, 3, 1) \
|
| + F(CallIC_Miss, 3, 1) \
|
| + F(CompareIC_Miss, 3, 1) \
|
| + F(ElementsTransitionAndStoreIC_Miss, 6, 1) \
|
| + F(KeyedLoadIC_Miss, 4, 1) \
|
| + F(KeyedLoadIC_MissFromStubFailure, 4, 1) \
|
| + F(KeyedStoreIC_Miss, 5, 1) \
|
| + F(KeyedStoreIC_MissFromStubFailure, 5, 1) \
|
| + F(KeyedStoreIC_Slow, 5, 1) \
|
| + F(LoadElementWithInterceptor, 2, 1) \
|
| + F(LoadGlobalIC_Miss, 2, 1) \
|
| + F(LoadGlobalIC_Slow, 2, 1) \
|
| + F(LoadIC_Miss, 4, 1) \
|
| + F(LoadIC_MissFromStubFailure, 4, 1) \
|
| + F(LoadPropertyWithInterceptor, 3, 1) \
|
| + F(LoadPropertyWithInterceptorOnly, 3, 1) \
|
| + F(StoreCallbackProperty, 6, 1) \
|
| + F(StoreIC_Miss, 5, 1) \
|
| + F(StoreIC_MissFromStubFailure, 5, 1) \
|
| + F(StorePropertyWithInterceptor, 3, 1) \
|
| + F(ToBooleanIC_Miss, 1, 1) \
|
| F(Unreachable, 0, 1)
|
|
|
| #define FOR_EACH_INTRINSIC_RETURN_OBJECT(F) \
|
|
|