2009-09-12 09:23:48 +08:00
|
|
|
//===-- gesf2vfp.S - Implement gesf2vfp -----------------------------------===//
|
|
|
|
//
|
|
|
|
// 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 int __gesf2vfp(float a, float b);
|
|
|
|
//
|
|
|
|
// Returns one iff a >= b and neither is NaN.
|
|
|
|
// Uses Darwin calling convention where single precision arguments are passsed
|
|
|
|
// like 32-bit ints
|
|
|
|
//
|
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(__gesf2vfp)
|
2011-08-24 00:40:18 +08:00
|
|
|
vmov s14, r0 // move from GPR 0 to float register
|
|
|
|
vmov s15, r1 // move from GPR 1 to float register
|
|
|
|
vcmp.f32 s14, s15
|
|
|
|
vmrs apsr_nzcv, fpscr
|
2009-09-12 09:23:48 +08:00
|
|
|
movge r0, #1 // set result register to 1 if greater than or equal
|
|
|
|
movlt r0, #0
|
|
|
|
bx lr
|
2014-01-24 22:33:42 +08:00
|
|
|
END_COMPILERRT_FUNCTION(__gesf2vfp)
|
2016-06-23 06:09:42 +08:00
|
|
|
|
|
|
|
NO_EXEC_STACK_DIRECTIVE
|
|
|
|
|