2017-01-01 01:14:16 +01:00
|
|
|
/* Copyright (C) 1996-2017 Free Software Foundation, Inc.
|
2012-11-19 16:15:18 +01:00
|
|
|
|
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#ifndef FUNC
|
2012-11-21 00:14:25 +01:00
|
|
|
# define FUNC lrint
|
2012-11-19 16:15:18 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ITYPE
|
2012-11-21 00:14:25 +01:00
|
|
|
# define ITYPE double
|
|
|
|
# define IREGS "d"
|
2012-11-19 16:15:18 +01:00
|
|
|
#else
|
2012-11-21 00:14:25 +01:00
|
|
|
# ifndef IREGS
|
|
|
|
# error IREGS not defined
|
|
|
|
# endif
|
2012-11-19 16:15:18 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OTYPE
|
2012-11-21 00:14:25 +01:00
|
|
|
# define OTYPE long int
|
2012-11-19 16:15:18 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define OREGS "x"
|
|
|
|
|
|
|
|
#define __CONCATX(a,b) __CONCAT(a,b)
|
|
|
|
|
|
|
|
OTYPE
|
2012-11-21 00:06:26 +01:00
|
|
|
__CONCATX(__,FUNC) (ITYPE x)
|
2012-11-19 16:15:18 +01:00
|
|
|
{
|
|
|
|
OTYPE result;
|
|
|
|
ITYPE temp;
|
|
|
|
asm ( "frintx" "\t%" IREGS "1, %" IREGS "2\n\t"
|
|
|
|
"fcvtzs" "\t%" OREGS "0, %" IREGS "1"
|
|
|
|
: "=r" (result), "=w" (temp) : "w" (x) );
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-11-21 09:03:01 +01:00
|
|
|
weak_alias (__CONCATX(__,FUNC), FUNC)
|