| 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 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 943 Condition cond = al); | 943 Condition cond = al); |
| 944 | 944 |
| 945 void uxtb(Register dst, Register src, int rotate = 0, Condition cond = al); | 945 void uxtb(Register dst, Register src, int rotate = 0, Condition cond = al); |
| 946 void uxtab(Register dst, Register src1, Register src2, int rotate = 0, | 946 void uxtab(Register dst, Register src1, Register src2, int rotate = 0, |
| 947 Condition cond = al); | 947 Condition cond = al); |
| 948 void uxtb16(Register dst, Register src, int rotate = 0, Condition cond = al); | 948 void uxtb16(Register dst, Register src, int rotate = 0, Condition cond = al); |
| 949 void uxth(Register dst, Register src, int rotate = 0, Condition cond = al); | 949 void uxth(Register dst, Register src, int rotate = 0, Condition cond = al); |
| 950 void uxtah(Register dst, Register src1, Register src2, int rotate = 0, | 950 void uxtah(Register dst, Register src1, Register src2, int rotate = 0, |
| 951 Condition cond = al); | 951 Condition cond = al); |
| 952 | 952 |
| 953 // Reverse the bits in a register. |
| 954 void rbit(Register dst, Register src, Condition cond = al); |
| 955 |
| 953 // Status register access instructions | 956 // Status register access instructions |
| 954 | 957 |
| 955 void mrs(Register dst, SRegister s, Condition cond = al); | 958 void mrs(Register dst, SRegister s, Condition cond = al); |
| 956 void msr(SRegisterFieldMask fields, const Operand& src, Condition cond = al); | 959 void msr(SRegisterFieldMask fields, const Operand& src, Condition cond = al); |
| 957 | 960 |
| 958 // Load/Store instructions | 961 // Load/Store instructions |
| 959 void ldr(Register dst, const MemOperand& src, Condition cond = al); | 962 void ldr(Register dst, const MemOperand& src, Condition cond = al); |
| 960 void str(Register src, const MemOperand& dst, Condition cond = al); | 963 void str(Register src, const MemOperand& dst, Condition cond = al); |
| 961 void ldrb(Register dst, const MemOperand& src, Condition cond = al); | 964 void ldrb(Register dst, const MemOperand& src, Condition cond = al); |
| 962 void strb(Register src, const MemOperand& dst, Condition cond = al); | 965 void strb(Register src, const MemOperand& dst, Condition cond = al); |
| (...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1639 explicit EnsureSpace(Assembler* assembler) { | 1642 explicit EnsureSpace(Assembler* assembler) { |
| 1640 assembler->CheckBuffer(); | 1643 assembler->CheckBuffer(); |
| 1641 } | 1644 } |
| 1642 }; | 1645 }; |
| 1643 | 1646 |
| 1644 | 1647 |
| 1645 } // namespace internal | 1648 } // namespace internal |
| 1646 } // namespace v8 | 1649 } // namespace v8 |
| 1647 | 1650 |
| 1648 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1651 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |