2009-09-12 09:23:48 +08:00
|
|
|
//===-- gtdf2vfp.S - Implement gtdf2vfp -----------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-17 06:13:33 +08:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2009-09-12 09:23:48 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-10-28 01:49:50 +08:00
|
|
|
#include "../assembly.h"
|
2009-09-12 09:23:48 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// extern double __gtdf2vfp(double a, double b);
|
|
|
|
//
|
|
|
|
// Returns one iff a > b and neither is NaN.
|
|
|
|
// Uses Darwin calling convention where double precision arguments are passsed
|
|
|
|
// like in GPR pairs.
|
|
|
|
//
|
2011-08-24 00:40:18 +08:00
|
|
|
.syntax unified
|
2014-05-12 23:23:37 +08:00
|
|
|
.p2align 2
|
2009-10-28 01:50:21 +08:00
|
|
|
DEFINE_COMPILERRT_FUNCTION(__gtdf2vfp)
|
2017-01-12 00:19:25 +08:00
|
|
|
#if defined(COMPILER_RT_ARMHF_TARGET)
|
|
|
|
vcmp.f64 d0, d1
|
|
|
|
#else
|
2011-08-24 00:40:18 +08:00
|
|
|
vmov d6, r0, r1 // load r0/r1 pair in double register
|
|
|
|
vmov d7, r2, r3 // load r2/r3 pair in double register
|
|
|
|
vcmp.f64 d6, d7
|
2017-01-12 00:19:25 +08:00
|
|
|
#endif
|
2011-08-24 00:40:18 +08:00
|
|
|
vmrs apsr_nzcv, fpscr
|
2017-05-24 23:53:24 +08:00
|
|
|
ITE(gt)
|
2009-09-12 09:23:48 +08:00
|
|
|
movgt r0, #1 // set result register to 1 if equal
|
|
|
|
movle r0, #0
|
|
|
|
bx lr
|
2014-01-24 22:33:42 +08:00
|
|
|
END_COMPILERRT_FUNCTION(__gtdf2vfp)
|
2016-06-23 06:09:42 +08:00
|
|
|
|
|
|
|
NO_EXEC_STACK_DIRECTIVE
|
|
|
|
|