| Nick Kledzik | 0963c9e | 2009-09-14 23:26:56 +0000 | [diff] [blame] | 1 | //===-- extendsfdf2vfp.S - Implement extendsfdf2vfp -----------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| Howard Hinnant | 9ad441f | 2010-11-16 22:13:33 +0000 | [diff] [blame^] | 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
| Nick Kledzik | 0963c9e | 2009-09-14 23:26:56 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| Daniel Dunbar | 19336a2 | 2009-10-27 17:49:50 +0000 | [diff] [blame] | 10 | #include "../assembly.h" |
| Nick Kledzik | 0963c9e | 2009-09-14 23:26:56 +0000 | [diff] [blame] | 11 | |
| 12 | // |
| 13 | // extern double __extendsfdf2vfp(float a); |
| 14 | // |
| 15 | // Converts single precision float to double precision result. |
| 16 | // Uses Darwin calling convention where a single precision parameter is |
| 17 | // passed in a GPR and a double precision result is returned in R0/R1 pair. |
| 18 | // |
| Nick Kledzik | d016b38 | 2010-04-21 22:36:23 +0000 | [diff] [blame] | 19 | .align 2 |
| Daniel Dunbar | b4b1e8c | 2009-10-27 17:50:21 +0000 | [diff] [blame] | 20 | DEFINE_COMPILERRT_FUNCTION(__extendsfdf2vfp) |
| Nick Kledzik | 0963c9e | 2009-09-14 23:26:56 +0000 | [diff] [blame] | 21 | fmsr s15, r0 // load float register from R0 |
| 22 | fcvtds d7, s15 // convert single to double |
| 23 | fmrrd r0, r1, d7 // return result in r0/r1 pair |
| 24 | bx lr |