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 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 // doesn't happen. | 744 // doesn't happen. |
745 void sll(Register rd, Register rt, uint16_t sa, bool coming_from_nop = false); | 745 void sll(Register rd, Register rt, uint16_t sa, bool coming_from_nop = false); |
746 void sllv(Register rd, Register rt, Register rs); | 746 void sllv(Register rd, Register rt, Register rs); |
747 void srl(Register rd, Register rt, uint16_t sa); | 747 void srl(Register rd, Register rt, uint16_t sa); |
748 void srlv(Register rd, Register rt, Register rs); | 748 void srlv(Register rd, Register rt, Register rs); |
749 void sra(Register rt, Register rd, uint16_t sa); | 749 void sra(Register rt, Register rd, uint16_t sa); |
750 void srav(Register rt, Register rd, Register rs); | 750 void srav(Register rt, Register rd, Register rs); |
751 void rotr(Register rd, Register rt, uint16_t sa); | 751 void rotr(Register rd, Register rt, uint16_t sa); |
752 void rotrv(Register rd, Register rt, Register rs); | 752 void rotrv(Register rd, Register rt, Register rs); |
753 | 753 |
| 754 // Address computing instructions with shift. |
| 755 void lsa(Register rd, Register rt, Register rs, uint8_t sa); |
754 | 756 |
755 // ------------Memory-instructions------------- | 757 // ------------Memory-instructions------------- |
756 | 758 |
757 void lb(Register rd, const MemOperand& rs); | 759 void lb(Register rd, const MemOperand& rs); |
758 void lbu(Register rd, const MemOperand& rs); | 760 void lbu(Register rd, const MemOperand& rs); |
759 void lh(Register rd, const MemOperand& rs); | 761 void lh(Register rd, const MemOperand& rs); |
760 void lhu(Register rd, const MemOperand& rs); | 762 void lhu(Register rd, const MemOperand& rs); |
761 void lw(Register rd, const MemOperand& rs); | 763 void lw(Register rd, const MemOperand& rs); |
762 void lwl(Register rd, const MemOperand& rs); | 764 void lwl(Register rd, const MemOperand& rs); |
763 void lwr(Register rd, const MemOperand& rs); | 765 void lwr(Register rd, const MemOperand& rs); |
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1428 public: | 1430 public: |
1429 explicit EnsureSpace(Assembler* assembler) { | 1431 explicit EnsureSpace(Assembler* assembler) { |
1430 assembler->CheckBuffer(); | 1432 assembler->CheckBuffer(); |
1431 } | 1433 } |
1432 }; | 1434 }; |
1433 | 1435 |
1434 } // namespace internal | 1436 } // namespace internal |
1435 } // namespace v8 | 1437 } // namespace v8 |
1436 | 1438 |
1437 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1439 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
OLD | NEW |