| 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 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1046 Condition cond = al); | 1046 Condition cond = al); |
| 1047 | 1047 |
| 1048 void vstm(BlockAddrMode am, | 1048 void vstm(BlockAddrMode am, |
| 1049 Register base, | 1049 Register base, |
| 1050 SwVfpRegister first, | 1050 SwVfpRegister first, |
| 1051 SwVfpRegister last, | 1051 SwVfpRegister last, |
| 1052 Condition cond = al); | 1052 Condition cond = al); |
| 1053 | 1053 |
| 1054 void vmov(const DwVfpRegister dst, | 1054 void vmov(const DwVfpRegister dst, |
| 1055 double imm, | 1055 double imm, |
| 1056 const Register scratch = no_reg, |
| 1056 const Condition cond = al); | 1057 const Condition cond = al); |
| 1057 void vmov(const SwVfpRegister dst, | 1058 void vmov(const SwVfpRegister dst, |
| 1058 const SwVfpRegister src, | 1059 const SwVfpRegister src, |
| 1059 const Condition cond = al); | 1060 const Condition cond = al); |
| 1060 void vmov(const DwVfpRegister dst, | 1061 void vmov(const DwVfpRegister dst, |
| 1061 const DwVfpRegister src, | 1062 const DwVfpRegister src, |
| 1062 const Condition cond = al); | 1063 const Condition cond = al); |
| 1063 void vmov(const DwVfpRegister dst, | 1064 void vmov(const DwVfpRegister dst, |
| 1064 const Register src1, | 1065 const Register src1, |
| 1065 const Register src2, | 1066 const Register src2, |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1467 public: | 1468 public: |
| 1468 explicit EnsureSpace(Assembler* assembler) { | 1469 explicit EnsureSpace(Assembler* assembler) { |
| 1469 assembler->CheckBuffer(); | 1470 assembler->CheckBuffer(); |
| 1470 } | 1471 } |
| 1471 }; | 1472 }; |
| 1472 | 1473 |
| 1473 | 1474 |
| 1474 } } // namespace v8::internal | 1475 } } // namespace v8::internal |
| 1475 | 1476 |
| 1476 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1477 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |