OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
879 | 879 |
880 | 880 |
881 // Helper for BinaryOpIC and CompareIC. | 881 // Helper for BinaryOpIC and CompareIC. |
882 enum InlinedSmiCheck { ENABLE_INLINED_SMI_CHECK, DISABLE_INLINED_SMI_CHECK }; | 882 enum InlinedSmiCheck { ENABLE_INLINED_SMI_CHECK, DISABLE_INLINED_SMI_CHECK }; |
883 void PatchInlinedSmiCode(Address address, InlinedSmiCheck check); | 883 void PatchInlinedSmiCode(Address address, InlinedSmiCheck check); |
884 | 884 |
885 DECLARE_RUNTIME_FUNCTION(MaybeObject*, KeyedLoadIC_MissFromStubFailure); | 885 DECLARE_RUNTIME_FUNCTION(MaybeObject*, KeyedLoadIC_MissFromStubFailure); |
886 DECLARE_RUNTIME_FUNCTION(MaybeObject*, KeyedStoreIC_MissFromStubFailure); | 886 DECLARE_RUNTIME_FUNCTION(MaybeObject*, KeyedStoreIC_MissFromStubFailure); |
887 DECLARE_RUNTIME_FUNCTION(MaybeObject*, UnaryOpIC_Miss); | 887 DECLARE_RUNTIME_FUNCTION(MaybeObject*, UnaryOpIC_Miss); |
888 DECLARE_RUNTIME_FUNCTION(MaybeObject*, StoreIC_MissFromStubFailure); | 888 DECLARE_RUNTIME_FUNCTION(MaybeObject*, StoreIC_MissFromStubFailure); |
889 DECLARE_RUNTIME_FUNCTION(MaybeObject*, KeyedCallIC_MissFromStubFailure); | |
890 DECLARE_RUNTIME_FUNCTION(MaybeObject*, ElementsTransitionAndStoreIC_Miss); | 889 DECLARE_RUNTIME_FUNCTION(MaybeObject*, ElementsTransitionAndStoreIC_Miss); |
891 DECLARE_RUNTIME_FUNCTION(MaybeObject*, BinaryOpIC_Miss); | 890 DECLARE_RUNTIME_FUNCTION(MaybeObject*, BinaryOpIC_Miss); |
892 DECLARE_RUNTIME_FUNCTION(MaybeObject*, CompareNilIC_Miss); | 891 DECLARE_RUNTIME_FUNCTION(MaybeObject*, CompareNilIC_Miss); |
893 DECLARE_RUNTIME_FUNCTION(MaybeObject*, ToBooleanIC_Miss); | 892 DECLARE_RUNTIME_FUNCTION(MaybeObject*, ToBooleanIC_Miss); |
894 | 893 |
895 | 894 |
896 } } // namespace v8::internal | 895 } } // namespace v8::internal |
897 | 896 |
898 #endif // V8_IC_H_ | 897 #endif // V8_IC_H_ |
OLD | NEW |