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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1118 VFPConversionMode mode = kDefaultRoundToZero, | 1118 VFPConversionMode mode = kDefaultRoundToZero, |
1119 const Condition cond = al); | 1119 const Condition cond = al); |
1120 void vcvt_f32_s32(const SwVfpRegister dst, | 1120 void vcvt_f32_s32(const SwVfpRegister dst, |
1121 const SwVfpRegister src, | 1121 const SwVfpRegister src, |
1122 VFPConversionMode mode = kDefaultRoundToZero, | 1122 VFPConversionMode mode = kDefaultRoundToZero, |
1123 const Condition cond = al); | 1123 const Condition cond = al); |
1124 void vcvt_f64_u32(const DwVfpRegister dst, | 1124 void vcvt_f64_u32(const DwVfpRegister dst, |
1125 const SwVfpRegister src, | 1125 const SwVfpRegister src, |
1126 VFPConversionMode mode = kDefaultRoundToZero, | 1126 VFPConversionMode mode = kDefaultRoundToZero, |
1127 const Condition cond = al); | 1127 const Condition cond = al); |
| 1128 void vcvt_s32_f32(const SwVfpRegister dst, |
| 1129 const SwVfpRegister src, |
| 1130 VFPConversionMode mode = kDefaultRoundToZero, |
| 1131 const Condition cond = al); |
1128 void vcvt_s32_f64(const SwVfpRegister dst, | 1132 void vcvt_s32_f64(const SwVfpRegister dst, |
1129 const DwVfpRegister src, | 1133 const DwVfpRegister src, |
1130 VFPConversionMode mode = kDefaultRoundToZero, | 1134 VFPConversionMode mode = kDefaultRoundToZero, |
1131 const Condition cond = al); | 1135 const Condition cond = al); |
1132 void vcvt_u32_f64(const SwVfpRegister dst, | 1136 void vcvt_u32_f64(const SwVfpRegister dst, |
1133 const DwVfpRegister src, | 1137 const DwVfpRegister src, |
1134 VFPConversionMode mode = kDefaultRoundToZero, | 1138 VFPConversionMode mode = kDefaultRoundToZero, |
1135 const Condition cond = al); | 1139 const Condition cond = al); |
1136 void vcvt_f64_f32(const DwVfpRegister dst, | 1140 void vcvt_f64_f32(const DwVfpRegister dst, |
1137 const SwVfpRegister src, | 1141 const SwVfpRegister src, |
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1627 explicit EnsureSpace(Assembler* assembler) { | 1631 explicit EnsureSpace(Assembler* assembler) { |
1628 assembler->CheckBuffer(); | 1632 assembler->CheckBuffer(); |
1629 } | 1633 } |
1630 }; | 1634 }; |
1631 | 1635 |
1632 | 1636 |
1633 } // namespace internal | 1637 } // namespace internal |
1634 } // namespace v8 | 1638 } // namespace v8 |
1635 | 1639 |
1636 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1640 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
OLD | NEW |