2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
|
2008-06-04 07:59:29 +00:00
|
|
|
#include <asm/sfp-machine.h>
|
|
|
|
#include <math-emu/soft-fp.h>
|
|
|
|
#include <math-emu/double.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
fctiw(u32 *frD, void *frB)
|
|
|
|
{
|
|
|
|
FP_DECL_D(B);
|
2008-06-04 07:59:29 +00:00
|
|
|
FP_DECL_EX;
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned int r;
|
|
|
|
|
2008-06-04 07:59:29 +00:00
|
|
|
FP_UNPACK_DP(B, frB);
|
2005-04-16 22:20:36 +00:00
|
|
|
FP_TO_INT_D(r, B, 32, 1);
|
|
|
|
frD[1] = r;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2008-03-28 21:21:07 +00:00
|
|
|
printk("%s: D %p, B %p: ", __func__, frD, frB);
|
2005-04-16 22:20:36 +00:00
|
|
|
dump_double(frD);
|
|
|
|
printk("\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|