FPComplex.bsv
上传用户:aoptech
上传日期:2014-09-22
资源大小:784k
文件大小:4k
源码类别:

3G开发

开发平台:

Others

  1. //----------------------------------------------------------------------//
  2. // The MIT License 
  3. // 
  4. // Copyright (c) 2007 Alfred Man Cheuk Ng, mcn02@mit.edu 
  5. // 
  6. // Permission is hereby granted, free of charge, to any person 
  7. // obtaining a copy of this software and associated documentation 
  8. // files (the "Software"), to deal in the Software without 
  9. // restriction, including without limitation the rights to use,
  10. // copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. // copies of the Software, and to permit persons to whom the
  12. // Software is furnished to do so, subject to the following conditions:
  13. // 
  14. // The above copyright notice and this permission notice shall be
  15. // included in all copies or substantial portions of the Software.
  16. // 
  17. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  19. // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  21. // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  22. // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  23. // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  24. // OTHER DEALINGS IN THE SOFTWARE.
  25. //----------------------------------------------------------------------//
  26. //////////////////////////////////////////////////////////
  27. // Some useful functions for FixedPoint Complex Type
  28. // Author: Alfred Man C Ng 
  29. // Email: mcn02@mit.edu
  30. // Data: 9-29-2006
  31. /////////////////////////////////////////////////////////
  32. import Complex::*;
  33. import ComplexLibrary::*;
  34. import FixedPoint::*;
  35. import FixedPointLibrary::*;
  36. typedef Complex#(FixedPoint#(i,f)) FPComplex#(type i, type f);
  37. // for displaying FPComplex
  38. function Action fpcmplxWrite(Integer fwidth, FPComplex#(i,f) a)
  39.   provisos(Add#(1,xxA,i),
  40.    Add#(4,xxB,TAdd#(32,f)),
  41.    Add#(i,f,TAdd#(i,f)));
  42.       return cmplxWrite(" "," + ","i",fxptWrite(fwidth),a);
  43. endfunction // Action
  44. //
  45. function Complex#(Bit#(n)) fpcmplxGetMSBs(FPComplex#(ai,af) x)
  46.   provisos (Add#(xxA, n, TAdd#(ai,af)));
  47.       return cmplxMap(fxptGetMSBs,x);
  48. endfunction // Complex
  49. // for fixedpoint complex multiplication 
  50. function FPComplex#(ri,rf) fpcmplxMult(FPComplex#(ai,af) a, FPComplex#(bi,bf) b)
  51.         provisos (Add#(ai,bi,ci),  Add#(af,bf,rf), Add#(TAdd#(ai,af), TAdd#(bi,bf), TAdd#(ci,rf)), 
  52.   Arith#(FixedPoint#(ri,rf)), Add#(1,ci,ri), Add#(1, TAdd#(ci,rf), TAdd#(ri,rf)));
  53.       let rel = fxptSignExtend(fxptMult(a.rel, b.rel)) - fxptSignExtend(fxptMult(a.img, b.img));
  54.       let img = fxptSignExtend(fxptMult(a.rel, b.img)) + fxptSignExtend(fxptMult(a.img, b.rel));
  55.       return cmplx(rel, img);
  56. endfunction // Complex
  57. //for fixedpoint complex signextend
  58. function FPComplex#(ri,rf) fpcmplxSignExtend(FPComplex#(ai,af) a)
  59.   provisos (Add#(xxA,ai,ri), Add#(fdiff,af,rf), Add#(xxC,TAdd#(ai,af),TAdd#(ri,rf)));
  60.       return cmplx(fxptSignExtend(a.rel), fxptSignExtend(a.img));
  61. endfunction // Complex
  62. //for fixedpoint complex truncate
  63. function FPComplex#(ri,rf) fpcmplxTruncate(FPComplex#(ai,af) a)
  64.   provisos (Add#(xxA,ri,ai), Add#(xxB,rf,af), Add#(xxC,TAdd#(ri,rf),TAdd#(ai,af)));
  65.       return cmplx(fxptTruncate(a.rel), fxptTruncate(a.img));
  66. endfunction // Complex
  67. // for fixedpoint complex modulus = rel^2 + img^2, ri = 2ai + 1, rf = 2af
  68. function FixedPoint#(ri,rf)  fpcmplxModSq(FPComplex#(ai,af) a)
  69.   provisos (Add#(ai,ai,ci), Add#(af,af,rf), Add#(TAdd#(ai,af), TAdd#(ai,af), TAdd#(ci,rf)),
  70.     Arith#(FixedPoint#(ri,rf)), Add#(1,ci,ri), Add#(1, TAdd#(ci,rf), TAdd#(ri,rf)));
  71.       return (fxptSignExtend(fxptMult(a.rel, a.rel)) + fxptSignExtend(fxptMult(a.img, a.img)));
  72. endfunction // FixedPoint