Home | History | Annotate | Download | only in arm
      1 //===-- truncdfsf2vfp.S - Implement truncdfsf2vfp -------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is distributed under the University of Illinois Open Source
      6 // License. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 #include "../assembly.h"
     11 
     12 //
     13 // extern float __truncdfsf2vfp(double a);
     14 //
     15 // Converts double precision float to signle precision result.
     16 // Uses Darwin calling convention where a double precision parameter is
     17 // passed in a R0/R1 pair and a signle precision result is returned in R0.
     18 //
     19 DEFINE_COMPILERRT_FUNCTION(__truncdfsf2vfp)
     20 	fmdrr	d7, r0, r1   // load double from r0/r1 pair
     21 	fcvtsd	s15, d7      // convert double to single (trucate precision)
     22 	fmrs	r0, s15      // return result in r0
     23 	bx	lr
     24