fpa11_cpdo.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.     NetWinder Floating Point Emulator
  3.     (c) Rebel.COM, 1998,1999
  4.     Direct questions, comments to Scott Bambrough <scottb@netwinder.org>
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.     This program is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.     GNU General Public License for more details.
  13.     You should have received a copy of the GNU General Public License
  14.     along with this program; if not, write to the Free Software
  15.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. */
  17. #include "fpa11.h"
  18. #include "fpopcode.h"
  19. unsigned int SingleCPDO(const unsigned int opcode);
  20. unsigned int DoubleCPDO(const unsigned int opcode);
  21. unsigned int ExtendedCPDO(const unsigned int opcode);
  22. unsigned int EmulateCPDO(const unsigned int opcode)
  23. {
  24.    FPA11 *fpa11 = GET_FPA11();
  25.    unsigned int Fd, nType, nDest, nRc = 1;
  26.    
  27.    //printk("EmulateCPDO(0x%08x)n",opcode);
  28.    /* Get the destination size.  If not valid let Linux perform
  29.       an invalid instruction trap. */
  30.    nDest = getDestinationSize(opcode);
  31.    if (typeNone == nDest) return 0;
  32.    
  33.    SetRoundingMode(opcode);
  34.      
  35.    /* Compare the size of the operands in Fn and Fm.
  36.       Choose the largest size and perform operations in that size,
  37.       in order to make use of all the precision of the operands. 
  38.       If Fm is a constant, we just grab a constant of a size 
  39.       matching the size of the operand in Fn. */
  40.    if (MONADIC_INSTRUCTION(opcode))
  41.      nType = nDest;
  42.    else
  43.      nType = fpa11->fType[getFn(opcode)];
  44.    
  45.    if (!CONSTANT_FM(opcode))
  46.    {
  47.      register unsigned int Fm = getFm(opcode);
  48.      if (nType < fpa11->fType[Fm])
  49.      {
  50.         nType = fpa11->fType[Fm];
  51.      }
  52.    }
  53.    switch (nType)
  54.    {
  55.       case typeSingle   : nRc = SingleCPDO(opcode);   break;
  56.       case typeDouble   : nRc = DoubleCPDO(opcode);   break;
  57.       case typeExtended : nRc = ExtendedCPDO(opcode); break;
  58.       default           : nRc = 0;
  59.    }
  60.    /* If the operation succeeded, check to see if the result in the
  61.       destination register is the correct size.  If not force it
  62.       to be. */
  63.    Fd = getFd(opcode);
  64.    nType = fpa11->fType[Fd];
  65.    if ((0 != nRc) && (nDest != nType))
  66.    {
  67.      switch (nDest)
  68.      {
  69.        case typeSingle:
  70.        {
  71.          if (typeDouble == nType)
  72.            fpa11->fpreg[Fd].fSingle = 
  73.               float64_to_float32(fpa11->fpreg[Fd].fDouble);
  74.          else
  75.            fpa11->fpreg[Fd].fSingle = 
  76.               floatx80_to_float32(fpa11->fpreg[Fd].fExtended);
  77.        }
  78.        break;
  79.           
  80.        case typeDouble:
  81.        {
  82.          if (typeSingle == nType)
  83.            fpa11->fpreg[Fd].fDouble = 
  84.               float32_to_float64(fpa11->fpreg[Fd].fSingle);
  85.          else
  86.            fpa11->fpreg[Fd].fDouble = 
  87.               floatx80_to_float64(fpa11->fpreg[Fd].fExtended);
  88.        }
  89.        break;
  90.           
  91.        case typeExtended:
  92.        {
  93.          if (typeSingle == nType)
  94.            fpa11->fpreg[Fd].fExtended = 
  95.               float32_to_floatx80(fpa11->fpreg[Fd].fSingle);
  96.          else
  97.            fpa11->fpreg[Fd].fExtended = 
  98.               float64_to_floatx80(fpa11->fpreg[Fd].fDouble);
  99.        }
  100.        break;
  101.      }
  102.      
  103.      fpa11->fType[Fd] = nDest;
  104.    }
  105.    
  106.    return nRc;
  107. }