| 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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { | 661 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { |
| 662 StoreIC::GenerateInitialize(masm); | 662 StoreIC::GenerateInitialize(masm); |
| 663 } | 663 } |
| 664 | 664 |
| 665 | 665 |
| 666 static void Generate_StoreIC_Miss(MacroAssembler* masm) { | 666 static void Generate_StoreIC_Miss(MacroAssembler* masm) { |
| 667 StoreIC::GenerateMiss(masm); | 667 StoreIC::GenerateMiss(masm); |
| 668 } | 668 } |
| 669 | 669 |
| 670 | 670 |
| 671 static void Generate_StoreIC_ExtendStorage(MacroAssembler* masm) { | |
| 672 StoreIC::GenerateExtendStorage(masm); | |
| 673 } | |
| 674 | |
| 675 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { | 671 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { |
| 676 StoreIC::GenerateMegamorphic(masm); | 672 StoreIC::GenerateMegamorphic(masm); |
| 677 } | 673 } |
| 678 | 674 |
| 679 | 675 |
| 680 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { | 676 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { |
| 681 KeyedStoreIC::GenerateGeneric(masm); | 677 KeyedStoreIC::GenerateGeneric(masm); |
| 682 } | 678 } |
| 683 | 679 |
| 684 | 680 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 713 MacroAssembler* masm) { | 709 MacroAssembler* masm) { |
| 714 KeyedStoreIC::GenerateExternalArray(masm, kExternalUnsignedIntArray); | 710 KeyedStoreIC::GenerateExternalArray(masm, kExternalUnsignedIntArray); |
| 715 } | 711 } |
| 716 | 712 |
| 717 | 713 |
| 718 static void Generate_KeyedStoreIC_ExternalFloatArray(MacroAssembler* masm) { | 714 static void Generate_KeyedStoreIC_ExternalFloatArray(MacroAssembler* masm) { |
| 719 KeyedStoreIC::GenerateExternalArray(masm, kExternalFloatArray); | 715 KeyedStoreIC::GenerateExternalArray(masm, kExternalFloatArray); |
| 720 } | 716 } |
| 721 | 717 |
| 722 | 718 |
| 723 static void Generate_KeyedStoreIC_ExtendStorage(MacroAssembler* masm) { | |
| 724 KeyedStoreIC::GenerateExtendStorage(masm); | |
| 725 } | |
| 726 | |
| 727 | |
| 728 static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) { | 719 static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) { |
| 729 KeyedStoreIC::GenerateMiss(masm); | 720 KeyedStoreIC::GenerateMiss(masm); |
| 730 } | 721 } |
| 731 | 722 |
| 732 | 723 |
| 733 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { | 724 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { |
| 734 KeyedStoreIC::GenerateInitialize(masm); | 725 KeyedStoreIC::GenerateInitialize(masm); |
| 735 } | 726 } |
| 736 | 727 |
| 737 | 728 |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 912 if (entry->contains(pc)) { | 903 if (entry->contains(pc)) { |
| 913 return names_[i]; | 904 return names_[i]; |
| 914 } | 905 } |
| 915 } | 906 } |
| 916 } | 907 } |
| 917 return NULL; | 908 return NULL; |
| 918 } | 909 } |
| 919 | 910 |
| 920 | 911 |
| 921 } } // namespace v8::internal | 912 } } // namespace v8::internal |
| OLD | NEW |