Chromium Code Reviews| 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 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 982 const Condition cond = al); | 982 const Condition cond = al); |
| 983 void vcvt_f64_f32(const DwVfpRegister dst, | 983 void vcvt_f64_f32(const DwVfpRegister dst, |
| 984 const SwVfpRegister src, | 984 const SwVfpRegister src, |
| 985 VFPConversionMode mode = kDefaultRoundToZero, | 985 VFPConversionMode mode = kDefaultRoundToZero, |
| 986 const Condition cond = al); | 986 const Condition cond = al); |
| 987 void vcvt_f32_f64(const SwVfpRegister dst, | 987 void vcvt_f32_f64(const SwVfpRegister dst, |
| 988 const DwVfpRegister src, | 988 const DwVfpRegister src, |
| 989 VFPConversionMode mode = kDefaultRoundToZero, | 989 VFPConversionMode mode = kDefaultRoundToZero, |
| 990 const Condition cond = al); | 990 const Condition cond = al); |
| 991 | 991 |
| 992 void vneg(const DwVfpRegister dst, | |
| 993 const DwVfpRegister src, | |
| 994 const Condition cond = al); | |
|
Karl Klose
2011/03/09 10:37:51
The vneg instruction should also be supported by t
Alexandre
2011/03/15 08:45:39
Done.
| |
| 992 void vabs(const DwVfpRegister dst, | 995 void vabs(const DwVfpRegister dst, |
| 993 const DwVfpRegister src, | 996 const DwVfpRegister src, |
| 994 const Condition cond = al); | 997 const Condition cond = al); |
| 995 void vadd(const DwVfpRegister dst, | 998 void vadd(const DwVfpRegister dst, |
| 996 const DwVfpRegister src1, | 999 const DwVfpRegister src1, |
| 997 const DwVfpRegister src2, | 1000 const DwVfpRegister src2, |
| 998 const Condition cond = al); | 1001 const Condition cond = al); |
| 999 void vsub(const DwVfpRegister dst, | 1002 void vsub(const DwVfpRegister dst, |
| 1000 const DwVfpRegister src1, | 1003 const DwVfpRegister src1, |
| 1001 const DwVfpRegister src2, | 1004 const DwVfpRegister src2, |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1285 public: | 1288 public: |
| 1286 explicit EnsureSpace(Assembler* assembler) { | 1289 explicit EnsureSpace(Assembler* assembler) { |
| 1287 assembler->CheckBuffer(); | 1290 assembler->CheckBuffer(); |
| 1288 } | 1291 } |
| 1289 }; | 1292 }; |
| 1290 | 1293 |
| 1291 | 1294 |
| 1292 } } // namespace v8::internal | 1295 } } // namespace v8::internal |
| 1293 | 1296 |
| 1294 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1297 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |