ddShift.decTest 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. ------------------------------------------------------------------------
  2. -- ddShift.decTest -- shift decDouble coefficient left or right --
  3. -- Copyright (c) IBM Corporation, 1981, 2008. All rights reserved. --
  4. ------------------------------------------------------------------------
  5. -- Please see the document "General Decimal Arithmetic Testcases" --
  6. -- at http://www2.hursley.ibm.com/decimal for the description of --
  7. -- these testcases. --
  8. -- --
  9. -- These testcases are experimental ('beta' versions), and they --
  10. -- may contain errors. They are offered on an as-is basis. In --
  11. -- particular, achieving the same results as the tests here is not --
  12. -- a guarantee that an implementation complies with any Standard --
  13. -- or specification. The tests are not exhaustive. --
  14. -- --
  15. -- Please send comments, suggestions, and corrections to the author: --
  16. -- Mike Cowlishaw, IBM Fellow --
  17. -- IBM UK, PO Box 31, Birmingham Road, Warwick CV34 5JL, UK --
  18. -- mfc@uk.ibm.com --
  19. ------------------------------------------------------------------------
  20. version: 2.59
  21. precision: 16
  22. maxExponent: 384
  23. minExponent: -383
  24. extended: 1
  25. clamp: 1
  26. rounding: half_even
  27. -- Sanity check
  28. ddshi001 shift 0 0 -> 0
  29. ddshi002 shift 0 2 -> 0
  30. ddshi003 shift 1 2 -> 100
  31. ddshi004 shift 1 15 -> 1000000000000000
  32. ddshi005 shift 1 16 -> 0
  33. ddshi006 shift 1 -1 -> 0
  34. ddshi007 shift 0 -2 -> 0
  35. ddshi008 shift 1234567890123456 -1 -> 123456789012345
  36. ddshi009 shift 1234567890123456 -15 -> 1
  37. ddshi010 shift 1234567890123456 -16 -> 0
  38. ddshi011 shift 9934567890123456 -15 -> 9
  39. ddshi012 shift 9934567890123456 -16 -> 0
  40. -- rhs must be an integer
  41. ddshi015 shift 1 1.5 -> NaN Invalid_operation
  42. ddshi016 shift 1 1.0 -> NaN Invalid_operation
  43. ddshi017 shift 1 0.1 -> NaN Invalid_operation
  44. ddshi018 shift 1 0.0 -> NaN Invalid_operation
  45. ddshi019 shift 1 1E+1 -> NaN Invalid_operation
  46. ddshi020 shift 1 1E+99 -> NaN Invalid_operation
  47. ddshi021 shift 1 Inf -> NaN Invalid_operation
  48. ddshi022 shift 1 -Inf -> NaN Invalid_operation
  49. -- and |rhs| <= precision
  50. ddshi025 shift 1 -1000 -> NaN Invalid_operation
  51. ddshi026 shift 1 -17 -> NaN Invalid_operation
  52. ddshi027 shift 1 17 -> NaN Invalid_operation
  53. ddshi028 shift 1 1000 -> NaN Invalid_operation
  54. -- full shifting pattern
  55. ddshi030 shift 1234567890123456 -16 -> 0
  56. ddshi031 shift 1234567890123456 -15 -> 1
  57. ddshi032 shift 1234567890123456 -14 -> 12
  58. ddshi033 shift 1234567890123456 -13 -> 123
  59. ddshi034 shift 1234567890123456 -12 -> 1234
  60. ddshi035 shift 1234567890123456 -11 -> 12345
  61. ddshi036 shift 1234567890123456 -10 -> 123456
  62. ddshi037 shift 1234567890123456 -9 -> 1234567
  63. ddshi038 shift 1234567890123456 -8 -> 12345678
  64. ddshi039 shift 1234567890123456 -7 -> 123456789
  65. ddshi040 shift 1234567890123456 -6 -> 1234567890
  66. ddshi041 shift 1234567890123456 -5 -> 12345678901
  67. ddshi042 shift 1234567890123456 -4 -> 123456789012
  68. ddshi043 shift 1234567890123456 -3 -> 1234567890123
  69. ddshi044 shift 1234567890123456 -2 -> 12345678901234
  70. ddshi045 shift 1234567890123456 -1 -> 123456789012345
  71. ddshi046 shift 1234567890123456 -0 -> 1234567890123456
  72. ddshi047 shift 1234567890123456 +0 -> 1234567890123456
  73. ddshi048 shift 1234567890123456 +1 -> 2345678901234560
  74. ddshi049 shift 1234567890123456 +2 -> 3456789012345600
  75. ddshi050 shift 1234567890123456 +3 -> 4567890123456000
  76. ddshi051 shift 1234567890123456 +4 -> 5678901234560000
  77. ddshi052 shift 1234567890123456 +5 -> 6789012345600000
  78. ddshi053 shift 1234567890123456 +6 -> 7890123456000000
  79. ddshi054 shift 1234567890123456 +7 -> 8901234560000000
  80. ddshi055 shift 1234567890123456 +8 -> 9012345600000000
  81. ddshi056 shift 1234567890123456 +9 -> 123456000000000
  82. ddshi057 shift 1234567890123456 +10 -> 1234560000000000
  83. ddshi058 shift 1234567890123456 +11 -> 2345600000000000
  84. ddshi059 shift 1234567890123456 +12 -> 3456000000000000
  85. ddshi060 shift 1234567890123456 +13 -> 4560000000000000
  86. ddshi061 shift 1234567890123456 +14 -> 5600000000000000
  87. ddshi062 shift 1234567890123456 +15 -> 6000000000000000
  88. ddshi063 shift 1234567890123456 +16 -> 0
  89. -- zeros
  90. ddshi070 shift 0E-10 +9 -> 0E-10
  91. ddshi071 shift 0E-10 -9 -> 0E-10
  92. ddshi072 shift 0.000 +9 -> 0.000
  93. ddshi073 shift 0.000 -9 -> 0.000
  94. ddshi074 shift 0E+10 +9 -> 0E+10
  95. ddshi075 shift 0E+10 -9 -> 0E+10
  96. ddshi076 shift -0E-10 +9 -> -0E-10
  97. ddshi077 shift -0E-10 -9 -> -0E-10
  98. ddshi078 shift -0.000 +9 -> -0.000
  99. ddshi079 shift -0.000 -9 -> -0.000
  100. ddshi080 shift -0E+10 +9 -> -0E+10
  101. ddshi081 shift -0E+10 -9 -> -0E+10
  102. -- Nmax, Nmin, Ntiny
  103. ddshi141 shift 9.999999999999999E+384 -1 -> 9.99999999999999E+383
  104. ddshi142 shift 9.999999999999999E+384 -15 -> 9E+369
  105. ddshi143 shift 9.999999999999999E+384 1 -> 9.999999999999990E+384
  106. ddshi144 shift 9.999999999999999E+384 15 -> 9.000000000000000E+384
  107. ddshi145 shift 1E-383 -1 -> 0E-383
  108. ddshi146 shift 1E-383 -15 -> 0E-383
  109. ddshi147 shift 1E-383 1 -> 1.0E-382
  110. ddshi148 shift 1E-383 15 -> 1.000000000000000E-368
  111. ddshi151 shift 1.000000000000000E-383 -1 -> 1.00000000000000E-384
  112. ddshi152 shift 1.000000000000000E-383 -15 -> 1E-398
  113. ddshi153 shift 1.000000000000000E-383 1 -> 0E-398
  114. ddshi154 shift 1.000000000000000E-383 15 -> 0E-398
  115. ddshi155 shift 9.000000000000000E-383 -1 -> 9.00000000000000E-384
  116. ddshi156 shift 9.000000000000000E-383 -15 -> 9E-398
  117. ddshi157 shift 9.000000000000000E-383 1 -> 0E-398
  118. ddshi158 shift 9.000000000000000E-383 15 -> 0E-398
  119. ddshi160 shift 1E-398 -1 -> 0E-398
  120. ddshi161 shift 1E-398 -15 -> 0E-398
  121. ddshi162 shift 1E-398 1 -> 1.0E-397
  122. ddshi163 shift 1E-398 15 -> 1.000000000000000E-383
  123. -- negatives
  124. ddshi171 shift -9.999999999999999E+384 -1 -> -9.99999999999999E+383
  125. ddshi172 shift -9.999999999999999E+384 -15 -> -9E+369
  126. ddshi173 shift -9.999999999999999E+384 1 -> -9.999999999999990E+384
  127. ddshi174 shift -9.999999999999999E+384 15 -> -9.000000000000000E+384
  128. ddshi175 shift -1E-383 -1 -> -0E-383
  129. ddshi176 shift -1E-383 -15 -> -0E-383
  130. ddshi177 shift -1E-383 1 -> -1.0E-382
  131. ddshi178 shift -1E-383 15 -> -1.000000000000000E-368
  132. ddshi181 shift -1.000000000000000E-383 -1 -> -1.00000000000000E-384
  133. ddshi182 shift -1.000000000000000E-383 -15 -> -1E-398
  134. ddshi183 shift -1.000000000000000E-383 1 -> -0E-398
  135. ddshi184 shift -1.000000000000000E-383 15 -> -0E-398
  136. ddshi185 shift -9.000000000000000E-383 -1 -> -9.00000000000000E-384
  137. ddshi186 shift -9.000000000000000E-383 -15 -> -9E-398
  138. ddshi187 shift -9.000000000000000E-383 1 -> -0E-398
  139. ddshi188 shift -9.000000000000000E-383 15 -> -0E-398
  140. ddshi190 shift -1E-398 -1 -> -0E-398
  141. ddshi191 shift -1E-398 -15 -> -0E-398
  142. ddshi192 shift -1E-398 1 -> -1.0E-397
  143. ddshi193 shift -1E-398 15 -> -1.000000000000000E-383
  144. -- more negatives (of sanities)
  145. ddshi201 shift -0 0 -> -0
  146. ddshi202 shift -0 2 -> -0
  147. ddshi203 shift -1 2 -> -100
  148. ddshi204 shift -1 15 -> -1000000000000000
  149. ddshi205 shift -1 16 -> -0
  150. ddshi206 shift -1 -1 -> -0
  151. ddshi207 shift -0 -2 -> -0
  152. ddshi208 shift -1234567890123456 -1 -> -123456789012345
  153. ddshi209 shift -1234567890123456 -15 -> -1
  154. ddshi210 shift -1234567890123456 -16 -> -0
  155. ddshi211 shift -9934567890123456 -15 -> -9
  156. ddshi212 shift -9934567890123456 -16 -> -0
  157. -- Specials; NaNs are handled as usual
  158. ddshi781 shift -Inf -8 -> -Infinity
  159. ddshi782 shift -Inf -1 -> -Infinity
  160. ddshi783 shift -Inf -0 -> -Infinity
  161. ddshi784 shift -Inf 0 -> -Infinity
  162. ddshi785 shift -Inf 1 -> -Infinity
  163. ddshi786 shift -Inf 8 -> -Infinity
  164. ddshi787 shift -1000 -Inf -> NaN Invalid_operation
  165. ddshi788 shift -Inf -Inf -> NaN Invalid_operation
  166. ddshi789 shift -1 -Inf -> NaN Invalid_operation
  167. ddshi790 shift -0 -Inf -> NaN Invalid_operation
  168. ddshi791 shift 0 -Inf -> NaN Invalid_operation
  169. ddshi792 shift 1 -Inf -> NaN Invalid_operation
  170. ddshi793 shift 1000 -Inf -> NaN Invalid_operation
  171. ddshi794 shift Inf -Inf -> NaN Invalid_operation
  172. ddshi800 shift Inf -Inf -> NaN Invalid_operation
  173. ddshi801 shift Inf -8 -> Infinity
  174. ddshi802 shift Inf -1 -> Infinity
  175. ddshi803 shift Inf -0 -> Infinity
  176. ddshi804 shift Inf 0 -> Infinity
  177. ddshi805 shift Inf 1 -> Infinity
  178. ddshi806 shift Inf 8 -> Infinity
  179. ddshi807 shift Inf Inf -> NaN Invalid_operation
  180. ddshi808 shift -1000 Inf -> NaN Invalid_operation
  181. ddshi809 shift -Inf Inf -> NaN Invalid_operation
  182. ddshi810 shift -1 Inf -> NaN Invalid_operation
  183. ddshi811 shift -0 Inf -> NaN Invalid_operation
  184. ddshi812 shift 0 Inf -> NaN Invalid_operation
  185. ddshi813 shift 1 Inf -> NaN Invalid_operation
  186. ddshi814 shift 1000 Inf -> NaN Invalid_operation
  187. ddshi815 shift Inf Inf -> NaN Invalid_operation
  188. ddshi821 shift NaN -Inf -> NaN
  189. ddshi822 shift NaN -1000 -> NaN
  190. ddshi823 shift NaN -1 -> NaN
  191. ddshi824 shift NaN -0 -> NaN
  192. ddshi825 shift NaN 0 -> NaN
  193. ddshi826 shift NaN 1 -> NaN
  194. ddshi827 shift NaN 1000 -> NaN
  195. ddshi828 shift NaN Inf -> NaN
  196. ddshi829 shift NaN NaN -> NaN
  197. ddshi830 shift -Inf NaN -> NaN
  198. ddshi831 shift -1000 NaN -> NaN
  199. ddshi832 shift -1 NaN -> NaN
  200. ddshi833 shift -0 NaN -> NaN
  201. ddshi834 shift 0 NaN -> NaN
  202. ddshi835 shift 1 NaN -> NaN
  203. ddshi836 shift 1000 NaN -> NaN
  204. ddshi837 shift Inf NaN -> NaN
  205. ddshi841 shift sNaN -Inf -> NaN Invalid_operation
  206. ddshi842 shift sNaN -1000 -> NaN Invalid_operation
  207. ddshi843 shift sNaN -1 -> NaN Invalid_operation
  208. ddshi844 shift sNaN -0 -> NaN Invalid_operation
  209. ddshi845 shift sNaN 0 -> NaN Invalid_operation
  210. ddshi846 shift sNaN 1 -> NaN Invalid_operation
  211. ddshi847 shift sNaN 1000 -> NaN Invalid_operation
  212. ddshi848 shift sNaN NaN -> NaN Invalid_operation
  213. ddshi849 shift sNaN sNaN -> NaN Invalid_operation
  214. ddshi850 shift NaN sNaN -> NaN Invalid_operation
  215. ddshi851 shift -Inf sNaN -> NaN Invalid_operation
  216. ddshi852 shift -1000 sNaN -> NaN Invalid_operation
  217. ddshi853 shift -1 sNaN -> NaN Invalid_operation
  218. ddshi854 shift -0 sNaN -> NaN Invalid_operation
  219. ddshi855 shift 0 sNaN -> NaN Invalid_operation
  220. ddshi856 shift 1 sNaN -> NaN Invalid_operation
  221. ddshi857 shift 1000 sNaN -> NaN Invalid_operation
  222. ddshi858 shift Inf sNaN -> NaN Invalid_operation
  223. ddshi859 shift NaN sNaN -> NaN Invalid_operation
  224. -- propagating NaNs
  225. ddshi861 shift NaN1 -Inf -> NaN1
  226. ddshi862 shift +NaN2 -1000 -> NaN2
  227. ddshi863 shift NaN3 1000 -> NaN3
  228. ddshi864 shift NaN4 Inf -> NaN4
  229. ddshi865 shift NaN5 +NaN6 -> NaN5
  230. ddshi866 shift -Inf NaN7 -> NaN7
  231. ddshi867 shift -1000 NaN8 -> NaN8
  232. ddshi868 shift 1000 NaN9 -> NaN9
  233. ddshi869 shift Inf +NaN10 -> NaN10
  234. ddshi871 shift sNaN11 -Inf -> NaN11 Invalid_operation
  235. ddshi872 shift sNaN12 -1000 -> NaN12 Invalid_operation
  236. ddshi873 shift sNaN13 1000 -> NaN13 Invalid_operation
  237. ddshi874 shift sNaN14 NaN17 -> NaN14 Invalid_operation
  238. ddshi875 shift sNaN15 sNaN18 -> NaN15 Invalid_operation
  239. ddshi876 shift NaN16 sNaN19 -> NaN19 Invalid_operation
  240. ddshi877 shift -Inf +sNaN20 -> NaN20 Invalid_operation
  241. ddshi878 shift -1000 sNaN21 -> NaN21 Invalid_operation
  242. ddshi879 shift 1000 sNaN22 -> NaN22 Invalid_operation
  243. ddshi880 shift Inf sNaN23 -> NaN23 Invalid_operation
  244. ddshi881 shift +NaN25 +sNaN24 -> NaN24 Invalid_operation
  245. ddshi882 shift -NaN26 NaN28 -> -NaN26
  246. ddshi883 shift -sNaN27 sNaN29 -> -NaN27 Invalid_operation
  247. ddshi884 shift 1000 -NaN30 -> -NaN30
  248. ddshi885 shift 1000 -sNaN31 -> -NaN31 Invalid_operation