| 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 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 void bfc(Register dst, int lsb, int width, Condition cond = al); | 934 void bfc(Register dst, int lsb, int width, Condition cond = al); |
| 935 | 935 |
| 936 void bfi(Register dst, Register src, int lsb, int width, | 936 void bfi(Register dst, Register src, int lsb, int width, |
| 937 Condition cond = al); | 937 Condition cond = al); |
| 938 | 938 |
| 939 // Status register access instructions | 939 // Status register access instructions |
| 940 | 940 |
| 941 void mrs(Register dst, SRegister s, Condition cond = al); | 941 void mrs(Register dst, SRegister s, Condition cond = al); |
| 942 void msr(SRegisterFieldMask fields, const Operand& src, Condition cond = al); | 942 void msr(SRegisterFieldMask fields, const Operand& src, Condition cond = al); |
| 943 | 943 |
| 944 // Preload data instruction |
| 945 void pld(const MemOperand& src); |
| 946 |
| 944 // Load/Store instructions | 947 // Load/Store instructions |
| 945 void ldr(Register dst, const MemOperand& src, Condition cond = al); | 948 void ldr(Register dst, const MemOperand& src, Condition cond = al); |
| 946 void str(Register src, const MemOperand& dst, Condition cond = al); | 949 void str(Register src, const MemOperand& dst, Condition cond = al); |
| 947 void ldrb(Register dst, const MemOperand& src, Condition cond = al); | 950 void ldrb(Register dst, const MemOperand& src, Condition cond = al); |
| 948 void strb(Register src, const MemOperand& dst, Condition cond = al); | 951 void strb(Register src, const MemOperand& dst, Condition cond = al); |
| 949 void ldrh(Register dst, const MemOperand& src, Condition cond = al); | 952 void ldrh(Register dst, const MemOperand& src, Condition cond = al); |
| 950 void strh(Register src, const MemOperand& dst, Condition cond = al); | 953 void strh(Register src, const MemOperand& dst, Condition cond = al); |
| 951 void ldrsb(Register dst, const MemOperand& src, Condition cond = al); | 954 void ldrsb(Register dst, const MemOperand& src, Condition cond = al); |
| 952 void ldrsh(Register dst, const MemOperand& src, Condition cond = al); | 955 void ldrsh(Register dst, const MemOperand& src, Condition cond = al); |
| 953 void ldrd(Register dst1, | 956 void ldrd(Register dst1, |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1506 public: | 1509 public: |
| 1507 explicit EnsureSpace(Assembler* assembler) { | 1510 explicit EnsureSpace(Assembler* assembler) { |
| 1508 assembler->CheckBuffer(); | 1511 assembler->CheckBuffer(); |
| 1509 } | 1512 } |
| 1510 }; | 1513 }; |
| 1511 | 1514 |
| 1512 | 1515 |
| 1513 } } // namespace v8::internal | 1516 } } // namespace v8::internal |
| 1514 | 1517 |
| 1515 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1518 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |