fpa11.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.     NetWinder Floating Point Emulator
  3.     (c) Rebel.com, 1998-1999
  4.     
  5.     Direct questions, comments to Scott Bambrough <scottb@netwinder.org>
  6.     This program is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; either version 2 of the License, or
  9.     (at your option) any later version.
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.     You should have received a copy of the GNU General Public License
  15.     along with this program; if not, write to the Free Software
  16.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. #ifndef __FPA11_H__
  19. #define __FPA11_H__
  20. #define GET_FPA11() ((FPA11 *)(&current->thread.fpstate))
  21. /*
  22.  * The processes registers are always at the very top of the 8K
  23.  * stack+task struct.  Use the same method as 'current' uses to
  24.  * reach them.
  25.  */
  26. register unsigned int *user_registers asm("sl");
  27. #define GET_USERREG() (user_registers)
  28. /* Need task_struct */
  29. #include <linux/sched.h>
  30. /* includes */
  31. #include "fpsr.h" /* FP control and status register definitions */
  32. #include "softfloat.h"
  33. #define typeNone 0x00
  34. #define typeSingle 0x01
  35. #define typeDouble 0x02
  36. #define typeExtended 0x03
  37. /*
  38.  * This must be no more and no less than 12 bytes.
  39.  */
  40. typedef union tagFPREG {
  41.    floatx80 fExtended;
  42.    float64  fDouble;
  43.    float32  fSingle;
  44. } FPREG;
  45. /*
  46.  * FPA11 device model.
  47.  *
  48.  * This structure is exported to user space.  Do not re-order.
  49.  * Only add new stuff to the end, and do not change the size of
  50.  * any element.  Elements of this structure are used by user
  51.  * space, and must match struct user_fp in include/asm-arm/user.h.
  52.  * We include the byte offsets below for documentation purposes.
  53.  *
  54.  * The size of this structure and FPREG are checked by fpmodule.c
  55.  * on initialisation.  If the rules have been broken, NWFPE will
  56.  * not initialise.
  57.  */
  58. typedef struct tagFPA11 {
  59. /*   0 */  FPREG fpreg[8]; /* 8 floating point registers */
  60. /*  96 */  FPSR fpsr; /* floating point status register */
  61. /* 100 */  FPCR fpcr; /* floating point control register */
  62. /* 104 */  unsigned char fType[8]; /* type of floating point value held in
  63.    floating point registers.  One of none
  64.    single, double or extended. */
  65. /* 112 */  int initflag; /* this is special.  The kernel guarantees
  66.    to set it to 0 when a thread is launched,
  67.    so we can use it to detect whether this
  68.    instance of the emulator needs to be
  69.    initialised. */
  70. } FPA11;
  71. extern void resetFPA11(void);
  72. extern void SetRoundingMode(const unsigned int);
  73. extern void SetRoundingPrecision(const unsigned int);
  74. #endif