| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_IC_H_ | 5 #ifndef V8_IC_H_ |
| 6 #define V8_IC_H_ | 6 #define V8_IC_H_ |
| 7 | 7 |
| 8 #include "src/macro-assembler.h" | 8 #include "src/macro-assembler.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 | 916 |
| 917 DECLARE_RUNTIME_FUNCTION(KeyedLoadIC_MissFromStubFailure); | 917 DECLARE_RUNTIME_FUNCTION(KeyedLoadIC_MissFromStubFailure); |
| 918 DECLARE_RUNTIME_FUNCTION(KeyedStoreIC_MissFromStubFailure); | 918 DECLARE_RUNTIME_FUNCTION(KeyedStoreIC_MissFromStubFailure); |
| 919 DECLARE_RUNTIME_FUNCTION(UnaryOpIC_Miss); | 919 DECLARE_RUNTIME_FUNCTION(UnaryOpIC_Miss); |
| 920 DECLARE_RUNTIME_FUNCTION(StoreIC_MissFromStubFailure); | 920 DECLARE_RUNTIME_FUNCTION(StoreIC_MissFromStubFailure); |
| 921 DECLARE_RUNTIME_FUNCTION(ElementsTransitionAndStoreIC_Miss); | 921 DECLARE_RUNTIME_FUNCTION(ElementsTransitionAndStoreIC_Miss); |
| 922 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_Miss); | 922 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_Miss); |
| 923 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_MissWithAllocationSite); | 923 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_MissWithAllocationSite); |
| 924 DECLARE_RUNTIME_FUNCTION(CompareNilIC_Miss); | 924 DECLARE_RUNTIME_FUNCTION(CompareNilIC_Miss); |
| 925 DECLARE_RUNTIME_FUNCTION(ToBooleanIC_Miss); | 925 DECLARE_RUNTIME_FUNCTION(ToBooleanIC_Miss); |
| 926 DECLARE_RUNTIME_FUNCTION(VectorLoadIC_MissFromStubFailure); |
| 927 DECLARE_RUNTIME_FUNCTION(VectorKeyedLoadIC_MissFromStubFailure); |
| 926 | 928 |
| 927 // Support functions for callbacks handlers. | 929 // Support functions for callbacks handlers. |
| 928 DECLARE_RUNTIME_FUNCTION(StoreCallbackProperty); | 930 DECLARE_RUNTIME_FUNCTION(StoreCallbackProperty); |
| 929 | 931 |
| 930 // Support functions for interceptor handlers. | 932 // Support functions for interceptor handlers. |
| 931 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptorOnly); | 933 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptorOnly); |
| 932 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptor); | 934 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptor); |
| 933 DECLARE_RUNTIME_FUNCTION(LoadElementWithInterceptor); | 935 DECLARE_RUNTIME_FUNCTION(LoadElementWithInterceptor); |
| 934 DECLARE_RUNTIME_FUNCTION(StorePropertyWithInterceptor); | 936 DECLARE_RUNTIME_FUNCTION(StorePropertyWithInterceptor); |
| 935 } | 937 } |
| 936 } // namespace v8::internal | 938 } // namespace v8::internal |
| 937 | 939 |
| 938 #endif // V8_IC_H_ | 940 #endif // V8_IC_H_ |
| OLD | NEW |