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

嵌入式Linux

开发平台:

Unix_Linux

  1. |
  2. | x_snan.sa 3.3 7/1/91
  3. |
  4. | fpsp_snan --- FPSP handler for signalling NAN exception
  5. |
  6. | SNAN for float -> integer conversions (integer conversion of
  7. | an SNAN) is a non-maskable run-time exception.
  8. |
  9. | For trap disabled the 040 does the following:
  10. | If the dest data format is s, d, or x, then the SNAN bit in the NAN
  11. | is set to one and the resulting non-signaling NAN (truncated if
  12. | necessary) is transferred to the dest.  If the dest format is b, w,
  13. | or l, then garbage is written to the dest (actually the upper 32 bits
  14. | of the mantissa are sent to the integer unit).
  15. |
  16. | For trap enabled the 040 does the following:
  17. | If the inst is move_out, then the results are the same as for trap 
  18. | disabled with the exception posted.  If the instruction is not move_
  19. | out, the dest. is not modified, and the exception is posted.
  20. |
  21. | Copyright (C) Motorola, Inc. 1990
  22. | All Rights Reserved
  23. |
  24. | THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF MOTOROLA 
  25. | The copyright notice above does not evidence any  
  26. | actual or intended publication of such source code.
  27. X_SNAN: |idnt    2,1 | Motorola 040 Floating Point Software Package
  28. |section 8
  29. .include "fpsp.h"
  30. |xref get_fline
  31. |xref mem_write
  32. |xref real_snan
  33. |xref real_inex
  34. |xref fpsp_done
  35. |xref reg_dest
  36. .global fpsp_snan
  37. fpsp_snan:
  38. link %a6,#-LOCAL_SIZE
  39. fsave -(%a7)
  40. moveml %d0-%d1/%a0-%a1,USER_DA(%a6)
  41. fmovemx %fp0-%fp3,USER_FP0(%a6)
  42. fmoveml %fpcr/%fpsr/%fpiar,USER_FPCR(%a6)
  43. |
  44. | Check if trap enabled
  45. |
  46. btstb #snan_bit,FPCR_ENABLE(%a6)
  47. bnes ena |If enabled, then branch
  48. bsrl move_out |else SNAN disabled
  49. |
  50. | It is possible to have an inex1 exception with the
  51. | snan.  If the inex enable bit is set in the FPCR, and either
  52. | inex2 or inex1 occurred, we must clean up and branch to the
  53. | real inex handler.
  54. |
  55. ck_inex:
  56. moveb FPCR_ENABLE(%a6),%d0
  57. andb FPSR_EXCEPT(%a6),%d0
  58. andib #0x3,%d0
  59. beq end_snan
  60. |
  61. | Inexact enabled and reported, and we must take an inexact exception.
  62. |
  63. take_inex:
  64. moveb #INEX_VEC,EXC_VEC+1(%a6)
  65. moveml USER_DA(%a6),%d0-%d1/%a0-%a1
  66. fmovemx USER_FP0(%a6),%fp0-%fp3
  67. fmoveml USER_FPCR(%a6),%fpcr/%fpsr/%fpiar
  68. frestore (%a7)+
  69. unlk %a6
  70. bral real_inex
  71. |
  72. | SNAN is enabled.  Check if inst is move_out.
  73. | Make any corrections to the 040 output as necessary.
  74. |
  75. ena:
  76. btstb #5,CMDREG1B(%a6) |if set, inst is move out
  77. beq not_out
  78. bsrl move_out
  79. report_snan:
  80. moveb (%a7),VER_TMP(%a6)
  81. cmpib #VER_40,(%a7) |test for orig unimp frame
  82. bnes ck_rev
  83. moveql #13,%d0 |need to zero 14 lwords
  84. bras rep_con
  85. ck_rev:
  86. moveql #11,%d0 |need to zero 12 lwords
  87. rep_con:
  88. clrl (%a7)
  89. loop1:
  90. clrl -(%a7) |clear and dec a7
  91. dbra %d0,loop1
  92. moveb VER_TMP(%a6),(%a7) |format a busy frame
  93. moveb #BUSY_SIZE-4,1(%a7)
  94. movel USER_FPSR(%a6),FPSR_SHADOW(%a6)
  95. orl #sx_mask,E_BYTE(%a6)
  96. moveml USER_DA(%a6),%d0-%d1/%a0-%a1
  97. fmovemx USER_FP0(%a6),%fp0-%fp3
  98. fmoveml USER_FPCR(%a6),%fpcr/%fpsr/%fpiar
  99. frestore (%a7)+
  100. unlk %a6
  101. bral real_snan
  102. |
  103. | Exit snan handler by expanding the unimp frame into a busy frame
  104. |
  105. end_snan:
  106. bclrb #E1,E_BYTE(%a6)
  107. moveb (%a7),VER_TMP(%a6)
  108. cmpib #VER_40,(%a7) |test for orig unimp frame
  109. bnes ck_rev2
  110. moveql #13,%d0 |need to zero 14 lwords
  111. bras rep_con2
  112. ck_rev2:
  113. moveql #11,%d0 |need to zero 12 lwords
  114. rep_con2:
  115. clrl (%a7)
  116. loop2:
  117. clrl -(%a7) |clear and dec a7
  118. dbra %d0,loop2
  119. moveb VER_TMP(%a6),(%a7) |format a busy frame
  120. moveb #BUSY_SIZE-4,1(%a7) |write busy size
  121. movel USER_FPSR(%a6),FPSR_SHADOW(%a6)
  122. orl #sx_mask,E_BYTE(%a6)
  123. moveml USER_DA(%a6),%d0-%d1/%a0-%a1
  124. fmovemx USER_FP0(%a6),%fp0-%fp3
  125. fmoveml USER_FPCR(%a6),%fpcr/%fpsr/%fpiar
  126. frestore (%a7)+
  127. unlk %a6
  128. bral fpsp_done
  129. |
  130. | Move_out 
  131. |
  132. move_out:
  133. movel EXC_EA(%a6),%a0 |get <ea> from exc frame
  134. bfextu CMDREG1B(%a6){#3:#3},%d0 |move rx field to d0{2:0}
  135. cmpil #0,%d0 |check for long
  136. beqs sto_long |branch if move_out long
  137. cmpil #4,%d0 |check for word
  138. beqs sto_word |branch if move_out word
  139. cmpil #6,%d0 |check for byte
  140. beqs sto_byte |branch if move_out byte
  141. |
  142. | Not byte, word or long
  143. |
  144. rts
  145. |
  146. | Get the 32 most significant bits of etemp mantissa
  147. |
  148. sto_long:
  149. movel ETEMP_HI(%a6),%d1
  150. movel #4,%d0 |load byte count
  151. |
  152. | Set signalling nan bit
  153. |
  154. bsetl #30,%d1
  155. |
  156. | Store to the users destination address
  157. |
  158. tstl %a0 |check if <ea> is 0
  159. beqs wrt_dn |destination is a data register
  160. movel %d1,-(%a7) |move the snan onto the stack
  161. movel %a0,%a1 |load dest addr into a1
  162. movel %a7,%a0 |load src addr of snan into a0
  163. bsrl mem_write |write snan to user memory
  164. movel (%a7)+,%d1 |clear off stack
  165. rts
  166. |
  167. | Get the 16 most significant bits of etemp mantissa
  168. |
  169. sto_word:
  170. movel ETEMP_HI(%a6),%d1
  171. movel #2,%d0 |load byte count
  172. |
  173. | Set signalling nan bit
  174. |
  175. bsetl #30,%d1
  176. |
  177. | Store to the users destination address
  178. |
  179. tstl %a0 |check if <ea> is 0
  180. beqs wrt_dn |destination is a data register
  181. movel %d1,-(%a7) |move the snan onto the stack
  182. movel %a0,%a1 |load dest addr into a1
  183. movel %a7,%a0 |point to low word
  184. bsrl mem_write |write snan to user memory
  185. movel (%a7)+,%d1 |clear off stack
  186. rts
  187. |
  188. | Get the 8 most significant bits of etemp mantissa
  189. |
  190. sto_byte:
  191. movel ETEMP_HI(%a6),%d1
  192. movel #1,%d0 |load byte count
  193. |
  194. | Set signalling nan bit
  195. |
  196. bsetl #30,%d1
  197. |
  198. | Store to the users destination address
  199. |
  200. tstl %a0 |check if <ea> is 0
  201. beqs wrt_dn |destination is a data register
  202. movel %d1,-(%a7) |move the snan onto the stack
  203. movel %a0,%a1 |load dest addr into a1
  204. movel %a7,%a0 |point to source byte
  205. bsrl mem_write |write snan to user memory
  206. movel (%a7)+,%d1 |clear off stack
  207. rts
  208. |
  209. | wrt_dn --- write to a data register
  210. |
  211. | We get here with D1 containing the data to write and D0 the
  212. | number of bytes to write: 1=byte,2=word,4=long.
  213. |
  214. wrt_dn:
  215. movel %d1,L_SCR1(%a6) |data
  216. movel %d0,-(%a7) |size
  217. bsrl get_fline |returns fline word in d0
  218. movel %d0,%d1
  219. andil #0x7,%d1 |d1 now holds register number
  220. movel (%sp)+,%d0 |get original size
  221. cmpil #4,%d0
  222. beqs wrt_long
  223. cmpil #2,%d0
  224. bnes wrt_byte
  225. wrt_word:
  226. orl #0x8,%d1
  227. bral reg_dest
  228. wrt_long:
  229. orl #0x10,%d1
  230. bral reg_dest
  231. wrt_byte:
  232. bral reg_dest
  233. |
  234. | Check if it is a src nan or dst nan
  235. |
  236. not_out:
  237. movel DTAG(%a6),%d0
  238. bfextu %d0{#0:#3},%d0 |isolate dtag in lsbs
  239. cmpib #3,%d0 |check for nan in destination
  240. bnes issrc |destination nan has priority
  241. dst_nan:
  242. btstb #6,FPTEMP_HI(%a6) |check if dest nan is an snan
  243. bnes issrc |no, so check source for snan
  244. movew FPTEMP_EX(%a6),%d0
  245. bras cont
  246. issrc:
  247. movew ETEMP_EX(%a6),%d0
  248. cont:
  249. btstl #15,%d0 |test for sign of snan
  250. beqs clr_neg
  251. bsetb #neg_bit,FPSR_CC(%a6)
  252. bra report_snan
  253. clr_neg:
  254. bclrb #neg_bit,FPSR_CC(%a6)
  255. bra report_snan
  256. |end