2011-06-13 10:54:37 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
Copyright (C) 2011 Thilo Schulz <thilo@tjps.eu>
|
|
|
|
|
|
|
|
This file is part of Quake III Arena source code.
|
|
|
|
|
|
|
|
Quake III Arena source code is free software; you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2 of the License,
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
Quake III Arena source code 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Quake III Arena source code; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qasm-inline.h"
|
|
|
|
|
2011-09-27 14:43:20 +00:00
|
|
|
static const unsigned short fpucw = 0x0C7F;
|
|
|
|
|
2011-06-13 10:54:37 +00:00
|
|
|
/*
|
|
|
|
* GNU inline asm ftol conversion functions using SSE or FPU
|
|
|
|
*/
|
|
|
|
|
|
|
|
long qftolsse(float f)
|
|
|
|
{
|
2011-06-22 14:36:11 +00:00
|
|
|
long retval;
|
2011-06-13 10:54:37 +00:00
|
|
|
|
|
|
|
__asm__ volatile
|
|
|
|
(
|
|
|
|
"cvttss2si %1, %0\n"
|
2011-06-13 11:07:13 +00:00
|
|
|
: "=r" (retval)
|
2011-06-13 10:54:37 +00:00
|
|
|
: "x" (f)
|
|
|
|
);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2011-06-22 14:36:11 +00:00
|
|
|
int qvmftolsse(void)
|
2011-06-13 10:54:37 +00:00
|
|
|
{
|
2011-06-22 14:36:11 +00:00
|
|
|
int retval;
|
|
|
|
|
2011-06-13 10:54:37 +00:00
|
|
|
__asm__ volatile
|
|
|
|
(
|
|
|
|
"movss (" EDI ", " EBX ", 4), %%xmm0\n"
|
2011-06-22 14:36:11 +00:00
|
|
|
"cvttss2si %%xmm0, %0\n"
|
|
|
|
: "=r" (retval)
|
2011-06-13 10:54:37 +00:00
|
|
|
:
|
|
|
|
: "%xmm0"
|
|
|
|
);
|
2011-06-22 14:36:11 +00:00
|
|
|
|
|
|
|
return retval;
|
2011-06-13 10:54:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
long qftolx87(float f)
|
|
|
|
{
|
2011-06-22 14:36:11 +00:00
|
|
|
long retval;
|
2011-09-27 14:43:20 +00:00
|
|
|
unsigned short oldcw;
|
2011-06-13 10:54:37 +00:00
|
|
|
|
|
|
|
__asm__ volatile
|
|
|
|
(
|
2011-09-27 14:43:20 +00:00
|
|
|
"fnstcw %2\n"
|
|
|
|
"fldcw %3\n"
|
2011-06-13 10:54:37 +00:00
|
|
|
"flds %1\n"
|
|
|
|
"fistpl %1\n"
|
2011-09-27 14:43:20 +00:00
|
|
|
"fldcw %2\n"
|
2011-06-13 10:54:37 +00:00
|
|
|
"mov %1, %0\n"
|
2011-06-13 11:07:13 +00:00
|
|
|
: "=r" (retval)
|
2011-09-27 14:43:20 +00:00
|
|
|
: "m" (f), "m" (oldcw), "m" (fpucw)
|
2011-06-13 10:54:37 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2011-06-22 14:36:11 +00:00
|
|
|
int qvmftolx87(void)
|
2011-06-13 10:54:37 +00:00
|
|
|
{
|
2011-06-22 14:36:11 +00:00
|
|
|
int retval;
|
2011-09-27 14:43:20 +00:00
|
|
|
unsigned short oldcw;
|
2011-06-22 14:36:11 +00:00
|
|
|
|
2011-06-13 10:54:37 +00:00
|
|
|
__asm__ volatile
|
|
|
|
(
|
2011-09-27 14:43:20 +00:00
|
|
|
"fnstcw %1\n"
|
|
|
|
"fldcw %2\n"
|
2011-06-13 10:54:37 +00:00
|
|
|
"flds (" EDI ", " EBX ", 4)\n"
|
|
|
|
"fistpl (" EDI ", " EBX ", 4)\n"
|
2011-09-27 14:43:20 +00:00
|
|
|
"fldcw %2\n"
|
2011-06-22 14:36:11 +00:00
|
|
|
"mov (" EDI ", " EBX ", 4), %0\n"
|
|
|
|
: "=r" (retval)
|
2011-09-27 14:43:20 +00:00
|
|
|
: "m" (oldcw), "m" (fpucw)
|
2011-06-13 10:54:37 +00:00
|
|
|
);
|
2011-06-22 14:36:11 +00:00
|
|
|
|
|
|
|
return retval;
|
2011-06-13 10:54:37 +00:00
|
|
|
}
|