当前位置:主页   - 电脑 - 程序设计 - C/C++
Vdsp(bf561)中的浮点运算(7):float乘法运算
来源:网络   作者:快乐虾   更新时间:2011-07-19
收藏此页】    【字号    】    【打印】    【关闭

  1.1    Vdsp对float乘法运算的处理

  在vdsp下,可以很简单地用:

float mul(float x, float y)
{
       float r = x * y;
       return r;
}

  来完成浮点乘法运算,编译器自动将里面的乘法操作转换为___float32_mul的函数调用,这个函数的调用实现在libdsp/fpmult.asm中,在这个文件的开头说明了这个函数的用法:

/***************************************************************************
Copyright (c) 2000-2008 Analog Devices Inc. All rights reserved.

****************************************************************************
  File name :  fpmult.asm

  This function performs 32 bit floating point multiplication. Implemention
  is based on the algorithm mentioned in the reference. Some more conditionS
  are added in the present algorithm to take care of various testcases.
   
  Registers used:
    Operands in  R0 & R1
                 R0 - X operand,
                 R1 - Y operand
                 R2 - R7
      

  Special case:
    1) If (x AND y) == 0, Return 0,
    2) Overflow  :  If(Exp(x) + Exp(y) > 254,
                           Return 0X7F80000 or 0xFF80000
                           depending upon sign of X and y.

    3) Underflow :  If(Exp(x) + Exp(y) <= -149, RETURN 0.

  Reference  : Computer Architecture a Quantitative Approach 2nd Ed.
               by Jhon L Hennessy and David Patterson

  !!NOTE- Uses non-standard clobber set in compiler:
          DefaultClobMinusBIMandLoopRegs

  Remember to change the #pragma regs_clobbered in fpmult.c in softfloat if you
  change this clobber set

**************************************************************/

编缉推荐阅读以下文章

  • Vdsp(bf561)中的浮点运算(9):long double和float的比较
  • Vdsp(bf561)中的浮点运算(8):float除法运算
  • Vdsp(bf561)中的浮点运算(6):float加减运算
  • Vdsp(bf561)中的浮点运算(5):float类型表示总结
  • Vdsp(bf561)中的浮点运算(4):FLT_MAX
  • Vdsp(bf561)中的浮点运算(3):FLT_MIN
  • Vdsp(bf561)中的浮点运算(2):float的疑问
  • Vdsp(bf561)中的浮点运算(1):文档的说法
其它资源
来源声明

版权与免责声明
1、本站所发布的文章仅供技术交流参考,本站不主张将其做为决策的依据,浏览者可自愿选择采信与否,本站不对因采信这些信息所产生的任何问题负责。
2、本站部分文章来源于网络,其版权为原权利人所有。由于来源之故,有的文章未能获得作者姓名,署“未知”或“佚名”。对于这些文章,有知悉作者姓名的请告知本站,以便及时署名。如果作者要求删除,我们将予以删除。除此之外本站不再承担其它责任。
3、本站部分文章来源于本站原创,本站拥有所有权利。
4、如对本站发布的信息有异议,请联系我们,经本站确认后,将在三个工作日内做出修改或删除处理。
请参阅权责声明