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

Side by Side Diff: src/mips/code-stubs-mips.cc

Issue 6973024: Introduce ic-mips.cc. (Closed) Base URL: http://github.com/v8/v8.git@bleeding_edge
Patch Set: Created 9 years, 7 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 | « no previous file | src/mips/ic-mips.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 void ICCompareStub::GenerateObjects(MacroAssembler* masm) { 793 void ICCompareStub::GenerateObjects(MacroAssembler* masm) {
794 UNIMPLEMENTED_MIPS(); 794 UNIMPLEMENTED_MIPS();
795 } 795 }
796 796
797 797
798 void ICCompareStub::GenerateMiss(MacroAssembler* masm) { 798 void ICCompareStub::GenerateMiss(MacroAssembler* masm) {
799 UNIMPLEMENTED_MIPS(); 799 UNIMPLEMENTED_MIPS();
800 } 800 }
801 801
802 802
803 void GenerateFastPixelArrayLoad(MacroAssembler* masm, 803 void StringDictionaryLookupStub::GeneratePositiveLookup(MacroAssembler* masm,
804 Register receiver, 804 Label* miss,
805 Register key, 805 Label* done,
806 Register elements_map, 806 Register elements,
807 Register elements, 807 Register name,
808 Register scratch1, 808 Register scratch1,
809 Register scratch2, 809 Register scratch2) {
810 Register result,
811 Label* not_pixel_array,
812 Label* key_not_smi,
813 Label* out_of_range) {
814 UNIMPLEMENTED_MIPS(); 810 UNIMPLEMENTED_MIPS();
815 } 811 }
816 812
813
814 void StringDictionaryLookupStub::Generate(MacroAssembler* masm) {
815 UNIMPLEMENTED_MIPS();
816 }
817
817 818
818 #undef __ 819 #undef __
819 820
820 } } // namespace v8::internal 821 } } // namespace v8::internal
821 822
822 #endif // V8_TARGET_ARCH_MIPS 823 #endif // V8_TARGET_ARCH_MIPS
823 824
OLDNEW
« no previous file with comments | « no previous file | src/mips/ic-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698