| 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 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1135 const DwVfpRegister src2, | 1135 const DwVfpRegister src2, |
| 1136 const Condition cond = al); | 1136 const Condition cond = al); |
| 1137 void vmul(const DwVfpRegister dst, | 1137 void vmul(const DwVfpRegister dst, |
| 1138 const DwVfpRegister src1, | 1138 const DwVfpRegister src1, |
| 1139 const DwVfpRegister src2, | 1139 const DwVfpRegister src2, |
| 1140 const Condition cond = al); | 1140 const Condition cond = al); |
| 1141 void vmla(const DwVfpRegister dst, | 1141 void vmla(const DwVfpRegister dst, |
| 1142 const DwVfpRegister src1, | 1142 const DwVfpRegister src1, |
| 1143 const DwVfpRegister src2, | 1143 const DwVfpRegister src2, |
| 1144 const Condition cond = al); | 1144 const Condition cond = al); |
| 1145 void vmls(const DwVfpRegister dst, |
| 1146 const DwVfpRegister src1, |
| 1147 const DwVfpRegister src2, |
| 1148 const Condition cond = al); |
| 1145 void vdiv(const DwVfpRegister dst, | 1149 void vdiv(const DwVfpRegister dst, |
| 1146 const DwVfpRegister src1, | 1150 const DwVfpRegister src1, |
| 1147 const DwVfpRegister src2, | 1151 const DwVfpRegister src2, |
| 1148 const Condition cond = al); | 1152 const Condition cond = al); |
| 1149 void vcmp(const DwVfpRegister src1, | 1153 void vcmp(const DwVfpRegister src1, |
| 1150 const DwVfpRegister src2, | 1154 const DwVfpRegister src2, |
| 1151 const Condition cond = al); | 1155 const Condition cond = al); |
| 1152 void vcmp(const DwVfpRegister src1, | 1156 void vcmp(const DwVfpRegister src1, |
| 1153 const double src2, | 1157 const double src2, |
| 1154 const Condition cond = al); | 1158 const Condition cond = al); |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1505 public: | 1509 public: |
| 1506 explicit EnsureSpace(Assembler* assembler) { | 1510 explicit EnsureSpace(Assembler* assembler) { |
| 1507 assembler->CheckBuffer(); | 1511 assembler->CheckBuffer(); |
| 1508 } | 1512 } |
| 1509 }; | 1513 }; |
| 1510 | 1514 |
| 1511 | 1515 |
| 1512 } } // namespace v8::internal | 1516 } } // namespace v8::internal |
| 1513 | 1517 |
| 1514 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1518 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |