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

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

Issue 6970006: Add new function ICCompareStub::GenerateSymbols to mips, introduced in r7824. (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 | no next file » | 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 762 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 void ICCompareStub::GenerateSmis(MacroAssembler* masm) { 773 void ICCompareStub::GenerateSmis(MacroAssembler* masm) {
774 UNIMPLEMENTED_MIPS(); 774 UNIMPLEMENTED_MIPS();
775 } 775 }
776 776
777 777
778 void ICCompareStub::GenerateHeapNumbers(MacroAssembler* masm) { 778 void ICCompareStub::GenerateHeapNumbers(MacroAssembler* masm) {
779 UNIMPLEMENTED_MIPS(); 779 UNIMPLEMENTED_MIPS();
780 } 780 }
781 781
782 782
783 void ICCompareStub::GenerateSymbols(MacroAssembler* masm) {
784 UNIMPLEMENTED_MIPS();
785 }
786
787
783 void ICCompareStub::GenerateStrings(MacroAssembler* masm) { 788 void ICCompareStub::GenerateStrings(MacroAssembler* masm) {
784 UNIMPLEMENTED_MIPS(); 789 UNIMPLEMENTED_MIPS();
785 } 790 }
786 791
787 792
788 void ICCompareStub::GenerateObjects(MacroAssembler* masm) { 793 void ICCompareStub::GenerateObjects(MacroAssembler* masm) {
789 UNIMPLEMENTED_MIPS(); 794 UNIMPLEMENTED_MIPS();
790 } 795 }
791 796
792 797
(...skipping 16 matching lines...) Expand all
809 UNIMPLEMENTED_MIPS(); 814 UNIMPLEMENTED_MIPS();
810 } 815 }
811 816
812 817
813 #undef __ 818 #undef __
814 819
815 } } // namespace v8::internal 820 } } // namespace v8::internal
816 821
817 #endif // V8_TARGET_ARCH_MIPS 822 #endif // V8_TARGET_ARCH_MIPS
818 823
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698