2009-09-12 09:23:48 +08:00
|
|
|
//===-- ltdf2vfp.S - Implement ltdf2vfp -----------------------------------===//
|
|
|
|
//
|
2019-01-19 18:56:40 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
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 __ltdf2vfp(double a, double b);
|
|
|
|
//
|
|
|
|
// Returns one iff a < b and neither is NaN.
|
2019-04-29 06:47:49 +08:00
|
|
|
// Uses Darwin calling convention where double precision arguments are passsed
|
2009-09-12 09:23:48 +08:00
|
|
|
// 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(__ltdf2vfp)
|
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(mi)
|
2009-09-12 09:23:48 +08:00
|
|
|
movmi r0, #1 // set result register to 1 if equal
|
|
|
|
movpl r0, #0
|
|
|
|
bx lr
|
2014-01-24 22:33:42 +08:00
|
|
|
END_COMPILERRT_FUNCTION(__ltdf2vfp)
|
2016-06-23 06:09:42 +08:00
|
|
|
|
|
|
|
NO_EXEC_STACK_DIRECTIVE
|
|
|
|
|