| 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 | 5 // modification, are permitted provided that the following conditions |
| 6 // are met: | 6 // are 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 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1027 | 1027 |
| 1028 void bfi(Register dst, Register src, int lsb, int width, | 1028 void bfi(Register dst, Register src, int lsb, int width, |
| 1029 Condition cond = al); | 1029 Condition cond = al); |
| 1030 | 1030 |
| 1031 void pkhbt(Register dst, Register src1, const Operand& src2, | 1031 void pkhbt(Register dst, Register src1, const Operand& src2, |
| 1032 Condition cond = al); | 1032 Condition cond = al); |
| 1033 | 1033 |
| 1034 void pkhtb(Register dst, Register src1, const Operand& src2, | 1034 void pkhtb(Register dst, Register src1, const Operand& src2, |
| 1035 Condition cond = al); | 1035 Condition cond = al); |
| 1036 | 1036 |
| 1037 void uxtb(Register dst, const Operand& src, Condition cond = al); | 1037 void sxtb(Register dst, Register src, int rotate = 0, Condition cond = al); |
| 1038 | 1038 void sxtab(Register dst, Register src1, Register src2, int rotate = 0, |
| 1039 void uxtab(Register dst, Register src1, const Operand& src2, | 1039 Condition cond = al); |
| 1040 void sxth(Register dst, Register src, int rotate = 0, Condition cond = al); |
| 1041 void sxtah(Register dst, Register src1, Register src2, int rotate = 0, |
| 1040 Condition cond = al); | 1042 Condition cond = al); |
| 1041 | 1043 |
| 1042 void uxtb16(Register dst, const Operand& src, Condition cond = al); | 1044 void uxtb(Register dst, Register src, int rotate = 0, Condition cond = al); |
| 1045 void uxtab(Register dst, Register src1, Register src2, int rotate = 0, |
| 1046 Condition cond = al); |
| 1047 void uxtb16(Register dst, Register src, int rotate = 0, Condition cond = al); |
| 1048 void uxth(Register dst, Register src, int rotate = 0, Condition cond = al); |
| 1049 void uxtah(Register dst, Register src1, Register src2, int rotate = 0, |
| 1050 Condition cond = al); |
| 1043 | 1051 |
| 1044 // Status register access instructions | 1052 // Status register access instructions |
| 1045 | 1053 |
| 1046 void mrs(Register dst, SRegister s, Condition cond = al); | 1054 void mrs(Register dst, SRegister s, Condition cond = al); |
| 1047 void msr(SRegisterFieldMask fields, const Operand& src, Condition cond = al); | 1055 void msr(SRegisterFieldMask fields, const Operand& src, Condition cond = al); |
| 1048 | 1056 |
| 1049 // Load/Store instructions | 1057 // Load/Store instructions |
| 1050 void ldr(Register dst, const MemOperand& src, Condition cond = al); | 1058 void ldr(Register dst, const MemOperand& src, Condition cond = al); |
| 1051 void str(Register src, const MemOperand& dst, Condition cond = al); | 1059 void str(Register src, const MemOperand& dst, Condition cond = al); |
| 1052 void ldrb(Register dst, const MemOperand& src, Condition cond = al); | 1060 void ldrb(Register dst, const MemOperand& src, Condition cond = al); |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1667 public: | 1675 public: |
| 1668 explicit EnsureSpace(Assembler* assembler) { | 1676 explicit EnsureSpace(Assembler* assembler) { |
| 1669 assembler->CheckBuffer(); | 1677 assembler->CheckBuffer(); |
| 1670 } | 1678 } |
| 1671 }; | 1679 }; |
| 1672 | 1680 |
| 1673 | 1681 |
| 1674 } } // namespace v8::internal | 1682 } } // namespace v8::internal |
| 1675 | 1683 |
| 1676 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1684 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |