| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 | 748 |
| 749 // Bit twiddling. | 749 // Bit twiddling. |
| 750 void clz(Register rd, Register rs); | 750 void clz(Register rd, Register rs); |
| 751 void ins_(Register rt, Register rs, uint16_t pos, uint16_t size); | 751 void ins_(Register rt, Register rs, uint16_t pos, uint16_t size); |
| 752 void ext_(Register rt, Register rs, uint16_t pos, uint16_t size); | 752 void ext_(Register rt, Register rs, uint16_t pos, uint16_t size); |
| 753 | 753 |
| 754 //--------Coprocessor-instructions---------------- | 754 //--------Coprocessor-instructions---------------- |
| 755 | 755 |
| 756 // Load, store, and move. | 756 // Load, store, and move. |
| 757 void lwc1(FPURegister fd, const MemOperand& src); | 757 void lwc1(FPURegister fd, const MemOperand& src); |
| 758 void ldc1(FPURegister fd, const MemOperand& src); | 758 void ldc1(FPURegister fd, const MemOperand& src, bool aligned = false); |
| 759 | 759 |
| 760 void swc1(FPURegister fs, const MemOperand& dst); | 760 void swc1(FPURegister fs, const MemOperand& dst); |
| 761 void sdc1(FPURegister fs, const MemOperand& dst); | 761 void sdc1(FPURegister fs, const MemOperand& dst, bool aligned = false); |
| 762 | 762 |
| 763 void mtc1(Register rt, FPURegister fs); | 763 void mtc1(Register rt, FPURegister fs); |
| 764 void mfc1(Register rt, FPURegister fs); | 764 void mfc1(Register rt, FPURegister fs); |
| 765 | 765 |
| 766 void ctc1(Register rt, FPUControlRegister fs); | 766 void ctc1(Register rt, FPUControlRegister fs); |
| 767 void cfc1(Register rt, FPUControlRegister fs); | 767 void cfc1(Register rt, FPUControlRegister fs); |
| 768 | 768 |
| 769 // Arithmetic. | 769 // Arithmetic. |
| 770 void add_d(FPURegister fd, FPURegister fs, FPURegister ft); | 770 void add_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 771 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft); | 771 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1238 class EnsureSpace BASE_EMBEDDED { | 1238 class EnsureSpace BASE_EMBEDDED { |
| 1239 public: | 1239 public: |
| 1240 explicit EnsureSpace(Assembler* assembler) { | 1240 explicit EnsureSpace(Assembler* assembler) { |
| 1241 assembler->CheckBuffer(); | 1241 assembler->CheckBuffer(); |
| 1242 } | 1242 } |
| 1243 }; | 1243 }; |
| 1244 | 1244 |
| 1245 } } // namespace v8::internal | 1245 } } // namespace v8::internal |
| 1246 | 1246 |
| 1247 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1247 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
| OLD | NEW |