OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |