| 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/ic/ic-state.h" | 8 #include "src/ic/ic-state.h" |
| 9 #include "src/macro-assembler.h" | 9 #include "src/macro-assembler.h" |
| 10 | 10 |
| (...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 | 673 |
| 674 DECLARE_RUNTIME_FUNCTION(KeyedLoadIC_MissFromStubFailure); | 674 DECLARE_RUNTIME_FUNCTION(KeyedLoadIC_MissFromStubFailure); |
| 675 DECLARE_RUNTIME_FUNCTION(KeyedStoreIC_MissFromStubFailure); | 675 DECLARE_RUNTIME_FUNCTION(KeyedStoreIC_MissFromStubFailure); |
| 676 DECLARE_RUNTIME_FUNCTION(UnaryOpIC_Miss); | 676 DECLARE_RUNTIME_FUNCTION(UnaryOpIC_Miss); |
| 677 DECLARE_RUNTIME_FUNCTION(StoreIC_MissFromStubFailure); | 677 DECLARE_RUNTIME_FUNCTION(StoreIC_MissFromStubFailure); |
| 678 DECLARE_RUNTIME_FUNCTION(ElementsTransitionAndStoreIC_Miss); | 678 DECLARE_RUNTIME_FUNCTION(ElementsTransitionAndStoreIC_Miss); |
| 679 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_Miss); | 679 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_Miss); |
| 680 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_MissWithAllocationSite); | 680 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_MissWithAllocationSite); |
| 681 DECLARE_RUNTIME_FUNCTION(CompareNilIC_Miss); | 681 DECLARE_RUNTIME_FUNCTION(CompareNilIC_Miss); |
| 682 DECLARE_RUNTIME_FUNCTION(ToBooleanIC_Miss); | 682 DECLARE_RUNTIME_FUNCTION(ToBooleanIC_Miss); |
| 683 DECLARE_RUNTIME_FUNCTION(VectorLoadIC_MissFromStubFailure); | 683 DECLARE_RUNTIME_FUNCTION(LoadIC_MissFromStubFailure); |
| 684 DECLARE_RUNTIME_FUNCTION(VectorKeyedLoadIC_MissFromStubFailure); | |
| 685 | 684 |
| 686 // Support functions for callbacks handlers. | 685 // Support functions for callbacks handlers. |
| 687 DECLARE_RUNTIME_FUNCTION(StoreCallbackProperty); | 686 DECLARE_RUNTIME_FUNCTION(StoreCallbackProperty); |
| 688 | 687 |
| 689 // Support functions for interceptor handlers. | 688 // Support functions for interceptor handlers. |
| 690 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptorOnly); | 689 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptorOnly); |
| 691 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptor); | 690 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptor); |
| 692 DECLARE_RUNTIME_FUNCTION(LoadElementWithInterceptor); | 691 DECLARE_RUNTIME_FUNCTION(LoadElementWithInterceptor); |
| 693 DECLARE_RUNTIME_FUNCTION(StorePropertyWithInterceptor); | 692 DECLARE_RUNTIME_FUNCTION(StorePropertyWithInterceptor); |
| 694 } | 693 } |
| 695 } // namespace v8::internal | 694 } // namespace v8::internal |
| 696 | 695 |
| 697 #endif // V8_IC_H_ | 696 #endif // V8_IC_H_ |
| OLD | NEW |