OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 | 720 |
721 static void Generate_KeyedLoadIC_ExternalFloatArray(MacroAssembler* masm) { | 721 static void Generate_KeyedLoadIC_ExternalFloatArray(MacroAssembler* masm) { |
722 KeyedLoadIC::GenerateExternalArray(masm, kExternalFloatArray); | 722 KeyedLoadIC::GenerateExternalArray(masm, kExternalFloatArray); |
723 } | 723 } |
724 | 724 |
725 | 725 |
726 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { | 726 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { |
727 KeyedLoadIC::GeneratePreMonomorphic(masm); | 727 KeyedLoadIC::GeneratePreMonomorphic(masm); |
728 } | 728 } |
729 | 729 |
| 730 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { |
| 731 KeyedLoadIC::GenerateIndexedInterceptor(masm); |
| 732 } |
| 733 |
730 | 734 |
731 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { | 735 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { |
732 StoreIC::GenerateInitialize(masm); | 736 StoreIC::GenerateInitialize(masm); |
733 } | 737 } |
734 | 738 |
735 | 739 |
736 static void Generate_StoreIC_Miss(MacroAssembler* masm) { | 740 static void Generate_StoreIC_Miss(MacroAssembler* masm) { |
737 StoreIC::GenerateMiss(masm); | 741 StoreIC::GenerateMiss(masm); |
738 } | 742 } |
739 | 743 |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
973 if (entry->contains(pc)) { | 977 if (entry->contains(pc)) { |
974 return names_[i]; | 978 return names_[i]; |
975 } | 979 } |
976 } | 980 } |
977 } | 981 } |
978 return NULL; | 982 return NULL; |
979 } | 983 } |
980 | 984 |
981 | 985 |
982 } } // namespace v8::internal | 986 } } // namespace v8::internal |
OLD | NEW |