x_store.S
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. |
  2. | x_store.sa 3.2 1/24/91
  3. |
  4. | store --- store operand to memory or register
  5. |
  6. | Used by underflow and overflow handlers.
  7. |
  8. | a6 = points to fp value to be stored.
  9. |
  10. | Copyright (C) Motorola, Inc. 1990
  11. | All Rights Reserved
  12. |
  13. | THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF MOTOROLA 
  14. | The copyright notice above does not evidence any  
  15. | actual or intended publication of such source code.
  16. X_STORE: |idnt    2,1 | Motorola 040 Floating Point Software Package
  17. |section 8
  18. fpreg_mask:
  19. .byte 0x80,0x40,0x20,0x10,0x08,0x04,0x02,0x01
  20. .include "fpsp.h"
  21. |xref mem_write
  22. |xref get_fline
  23. |xref g_opcls
  24. |xref g_dfmtou
  25. |xref reg_dest
  26. .global dest_ext
  27. .global dest_dbl
  28. .global dest_sgl
  29. .global store
  30. store:
  31. btstb #E3,E_BYTE(%a6)
  32. beqs E1_sto
  33. E3_sto:
  34. movel CMDREG3B(%a6),%d0
  35. bfextu %d0{#6:#3},%d0 |isolate dest. reg from cmdreg3b
  36. sto_fp:
  37. lea fpreg_mask,%a1
  38. moveb (%a1,%d0.w),%d0 |convert reg# to dynamic register mask
  39. tstb LOCAL_SGN(%a0)
  40. beqs is_pos
  41. bsetb #sign_bit,LOCAL_EX(%a0)
  42. is_pos:
  43. fmovemx (%a0),%d0 |move to correct register
  44. |
  45. | if fp0-fp3 is being modified, we must put a copy
  46. | in the USER_FPn variable on the stack because all exception
  47. | handlers restore fp0-fp3 from there.
  48. |
  49. cmpb #0x80,%d0
  50. bnes not_fp0
  51. fmovemx %fp0-%fp0,USER_FP0(%a6)
  52. rts
  53. not_fp0:
  54. cmpb #0x40,%d0
  55. bnes not_fp1
  56. fmovemx %fp1-%fp1,USER_FP1(%a6)
  57. rts
  58. not_fp1:
  59. cmpb #0x20,%d0
  60. bnes not_fp2
  61. fmovemx %fp2-%fp2,USER_FP2(%a6)
  62. rts
  63. not_fp2:
  64. cmpb #0x10,%d0
  65. bnes not_fp3
  66. fmovemx %fp3-%fp3,USER_FP3(%a6)
  67. rts
  68. not_fp3:
  69. rts
  70. E1_sto:
  71. bsrl g_opcls |returns opclass in d0
  72. cmpib #3,%d0
  73. beq opc011 |branch if opclass 3
  74. movel CMDREG1B(%a6),%d0
  75. bfextu %d0{#6:#3},%d0 |extract destination register
  76. bras sto_fp
  77. opc011:
  78. bsrl g_dfmtou |returns dest format in d0
  79. | ;ext=00, sgl=01, dbl=10
  80. movel %a0,%a1 |save source addr in a1
  81. movel EXC_EA(%a6),%a0 |get the address
  82. cmpil #0,%d0 |if dest format is extended
  83. beq dest_ext |then branch
  84. cmpil #1,%d0 |if dest format is single
  85. beq dest_sgl |then branch
  86. |
  87. | fall through to dest_dbl
  88. |
  89. |
  90. | dest_dbl --- write double precision value to user space
  91. |
  92. |Input
  93. | a0 -> destination address
  94. | a1 -> source in extended precision
  95. |Output
  96. | a0 -> destroyed
  97. | a1 -> destroyed
  98. | d0 -> 0
  99. |
  100. |Changes extended precision to double precision.
  101. | Note: no attempt is made to round the extended value to double.
  102. | dbl_sign = ext_sign
  103. | dbl_exp = ext_exp - $3fff(ext bias) + $7ff(dbl bias)
  104. | get rid of ext integer bit
  105. | dbl_mant = ext_mant{62:12}
  106. |
  107. |      ---------------   ---------------    ---------------
  108. |  extended ->  |s|    exp    |   |1| ms mant   |    | ls mant     |
  109. |      ---------------   ---------------    ---------------
  110. |      95     64    63 62       32      31     11   0
  111. |      |      |
  112. |      |      |
  113. |      |      |
  114. |                v         v
  115. |            ---------------   ---------------
  116. |  double   ->         |s|exp| mant  |   |  mant       |
  117. |            ---------------   ---------------
  118. |             63     51   32   31        0
  119. |
  120. dest_dbl:
  121. clrl %d0 |clear d0
  122. movew LOCAL_EX(%a1),%d0 |get exponent
  123. subw #0x3fff,%d0 |subtract extended precision bias
  124. cmpw #0x4000,%d0 |check if inf
  125. beqs inf |if so, special case
  126. addw #0x3ff,%d0 |add double precision bias
  127. swap %d0 |d0 now in upper word
  128. lsll #4,%d0 |d0 now in proper place for dbl prec exp
  129. tstb LOCAL_SGN(%a1)
  130. beqs get_mant |if positive, go process mantissa
  131. bsetl #31,%d0 |if negative, put in sign information
  132. | ; before continuing
  133. bras get_mant |go process mantissa
  134. inf:
  135. movel #0x7ff00000,%d0 |load dbl inf exponent
  136. clrl LOCAL_HI(%a1) |clear msb
  137. tstb LOCAL_SGN(%a1)
  138. beqs dbl_inf |if positive, go ahead and write it
  139. bsetl #31,%d0 |if negative put in sign information
  140. dbl_inf:
  141. movel %d0,LOCAL_EX(%a1) |put the new exp back on the stack
  142. bras dbl_wrt
  143. get_mant:
  144. movel LOCAL_HI(%a1),%d1 |get ms mantissa
  145. bfextu %d1{#1:#20},%d1 |get upper 20 bits of ms
  146. orl %d1,%d0 |put these bits in ms word of double
  147. movel %d0,LOCAL_EX(%a1) |put the new exp back on the stack
  148. movel LOCAL_HI(%a1),%d1 |get ms mantissa
  149. movel #21,%d0 |load shift count
  150. lsll %d0,%d1 |put lower 11 bits in upper bits
  151. movel %d1,LOCAL_HI(%a1) |build lower lword in memory
  152. movel LOCAL_LO(%a1),%d1 |get ls mantissa
  153. bfextu %d1{#0:#21},%d0 |get ls 21 bits of double
  154. orl %d0,LOCAL_HI(%a1) |put them in double result
  155. dbl_wrt:
  156. movel #0x8,%d0 |byte count for double precision number
  157. exg %a0,%a1 |a0=supervisor source, a1=user dest
  158. bsrl mem_write |move the number to the user's memory
  159. rts
  160. |
  161. | dest_sgl --- write single precision value to user space
  162. |
  163. |Input
  164. | a0 -> destination address
  165. | a1 -> source in extended precision
  166. |
  167. |Output
  168. | a0 -> destroyed
  169. | a1 -> destroyed
  170. | d0 -> 0
  171. |
  172. |Changes extended precision to single precision.
  173. | sgl_sign = ext_sign
  174. | sgl_exp = ext_exp - $3fff(ext bias) + $7f(sgl bias)
  175. | get rid of ext integer bit
  176. | sgl_mant = ext_mant{62:12}
  177. |
  178. |      ---------------   ---------------    ---------------
  179. |  extended ->  |s|    exp    |   |1| ms mant   |    | ls mant     |
  180. |      ---------------   ---------------    ---------------
  181. |      95     64    63 62    40 32      31     12   0
  182. |      |    |
  183. |      |    |
  184. |      |    |
  185. |                v     v
  186. |            ---------------
  187. |  single   ->         |s|exp| mant  |
  188. |            ---------------
  189. |             31     22     0
  190. |
  191. dest_sgl:
  192. clrl %d0
  193. movew LOCAL_EX(%a1),%d0 |get exponent
  194. subw #0x3fff,%d0 |subtract extended precision bias
  195. cmpw #0x4000,%d0 |check if inf
  196. beqs sinf |if so, special case
  197. addw #0x7f,%d0 |add single precision bias
  198. swap %d0 |put exp in upper word of d0
  199. lsll #7,%d0 |shift it into single exp bits
  200. tstb LOCAL_SGN(%a1)
  201. beqs get_sman |if positive, continue
  202. bsetl #31,%d0 |if negative, put in sign first
  203. bras get_sman |get mantissa
  204. sinf:
  205. movel #0x7f800000,%d0 |load single inf exp to d0
  206. tstb LOCAL_SGN(%a1)
  207. beqs sgl_wrt |if positive, continue
  208. bsetl #31,%d0 |if negative, put in sign info
  209. bras sgl_wrt
  210. get_sman:
  211. movel LOCAL_HI(%a1),%d1 |get ms mantissa
  212. bfextu %d1{#1:#23},%d1 |get upper 23 bits of ms
  213. orl %d1,%d0 |put these bits in ms word of single
  214. sgl_wrt:
  215. movel %d0,L_SCR1(%a6) |put the new exp back on the stack
  216. movel #0x4,%d0 |byte count for single precision number
  217. tstl %a0 |users destination address
  218. beqs sgl_Dn |destination is a data register
  219. exg %a0,%a1 |a0=supervisor source, a1=user dest
  220. leal L_SCR1(%a6),%a0 |point a0 to data
  221. bsrl mem_write |move the number to the user's memory
  222. rts
  223. sgl_Dn:
  224. bsrl get_fline |returns fline word in d0
  225. andw #0x7,%d0 |isolate register number
  226. movel %d0,%d1 |d1 has size:reg formatted for reg_dest
  227. orl #0x10,%d1 |reg_dest wants size added to reg#
  228. bral reg_dest |size is X, rts in reg_dest will
  229. | ;return to caller of dest_sgl
  230. dest_ext:
  231. tstb LOCAL_SGN(%a1) |put back sign into exponent word
  232. beqs dstx_cont
  233. bsetb #sign_bit,LOCAL_EX(%a1)
  234. dstx_cont:
  235. clrb LOCAL_SGN(%a1) |clear out the sign byte
  236. movel #0x0c,%d0 |byte count for extended number
  237. exg %a0,%a1 |a0=supervisor source, a1=user dest
  238. bsrl mem_write |move the number to the user's memory
  239. rts
  240. |end