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

嵌入式Linux

开发平台:

Unix_Linux

  1. |
  2. | x_bsun.sa 3.3 7/1/91
  3. |
  4. | fpsp_bsun --- FPSP handler for branch/set on unordered exception
  5. |
  6. | Copy the PC to FPIAR to maintain 881/882 compatibility
  7. |
  8. | The real_bsun handler will need to perform further corrective
  9. | measures as outlined in the 040 User's Manual on pages
  10. | 9-41f, section 9.8.3.
  11. |
  12. | Copyright (C) Motorola, Inc. 1990
  13. | All Rights Reserved
  14. |
  15. | THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF MOTOROLA 
  16. | The copyright notice above does not evidence any  
  17. | actual or intended publication of such source code.
  18. X_BSUN: |idnt    2,1 | Motorola 040 Floating Point Software Package
  19. |section 8
  20. .include "fpsp.h"
  21. |xref real_bsun
  22. .global fpsp_bsun
  23. fpsp_bsun:
  24. |
  25. link %a6,#-LOCAL_SIZE
  26. fsave -(%a7)
  27. moveml %d0-%d1/%a0-%a1,USER_DA(%a6)
  28. fmovemx %fp0-%fp3,USER_FP0(%a6)
  29. fmoveml %fpcr/%fpsr/%fpiar,USER_FPCR(%a6)
  30. |
  31. movel EXC_PC(%a6),USER_FPIAR(%a6)
  32. |
  33. moveml USER_DA(%a6),%d0-%d1/%a0-%a1
  34. fmovemx USER_FP0(%a6),%fp0-%fp3
  35. fmoveml USER_FPCR(%a6),%fpcr/%fpsr/%fpiar
  36. frestore (%a7)+
  37. unlk %a6
  38. bral real_bsun
  39. |
  40. |end