Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(996)

Side by Side Diff: src/builtins.cc

Issue 575022: Eliminate unused function KeyedStoreIC::GenerateExtendStorage, and unused par... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/builtins.h ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698