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

Side by Side Diff: src/builtins.cc

Issue 603028: Compile very thin code to access objects on which indexed interceptor is set. (Closed)
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
« 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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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