vfpdouble.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188
  1. /*
  2. * linux/arch/arm/vfp/vfpdouble.c
  3. *
  4. * This code is derived in part from John R. Housers softfloat library, which
  5. * carries the following notice:
  6. *
  7. * ===========================================================================
  8. * This C source file is part of the SoftFloat IEC/IEEE Floating-point
  9. * Arithmetic Package, Release 2.
  10. *
  11. * Written by John R. Hauser. This work was made possible in part by the
  12. * International Computer Science Institute, located at Suite 600, 1947 Center
  13. * Street, Berkeley, California 94704. Funding was partially provided by the
  14. * National Science Foundation under grant MIP-9311980. The original version
  15. * of this code was written as part of a project to build a fixed-point vector
  16. * processor in collaboration with the University of California at Berkeley,
  17. * overseen by Profs. Nelson Morgan and John Wawrzynek. More information
  18. * is available through the web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
  19. * arithmetic/softfloat.html'.
  20. *
  21. * THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort
  22. * has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
  23. * TIMES RESULT IN INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO
  24. * PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
  25. * AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
  26. *
  27. * Derivative works are acceptable, even for commercial purposes, so long as
  28. * (1) they include prominent notice that the work is derivative, and (2) they
  29. * include prominent notice akin to these three paragraphs for those parts of
  30. * this code that are retained.
  31. * ===========================================================================
  32. */
  33. #include <linux/kernel.h>
  34. #include <linux/bitops.h>
  35. #include <asm/div64.h>
  36. #include <asm/ptrace.h>
  37. #include <asm/vfp.h>
  38. #include "vfpinstr.h"
  39. #include "vfp.h"
  40. static struct vfp_double vfp_double_default_qnan = {
  41. .exponent = 2047,
  42. .sign = 0,
  43. .significand = VFP_DOUBLE_SIGNIFICAND_QNAN,
  44. };
  45. static void vfp_double_dump(const char *str, struct vfp_double *d)
  46. {
  47. pr_debug("VFP: %s: sign=%d exponent=%d significand=%016llx\n",
  48. str, d->sign != 0, d->exponent, d->significand);
  49. }
  50. static void vfp_double_normalise_denormal(struct vfp_double *vd)
  51. {
  52. int bits = 31 - fls(vd->significand >> 32);
  53. if (bits == 31)
  54. bits = 62 - fls(vd->significand);
  55. vfp_double_dump("normalise_denormal: in", vd);
  56. if (bits) {
  57. vd->exponent -= bits - 1;
  58. vd->significand <<= bits;
  59. }
  60. vfp_double_dump("normalise_denormal: out", vd);
  61. }
  62. u32 vfp_double_normaliseround(int dd, struct vfp_double *vd, u32 fpscr, u32 exceptions, const char *func)
  63. {
  64. u64 significand, incr;
  65. int exponent, shift, underflow;
  66. u32 rmode;
  67. vfp_double_dump("pack: in", vd);
  68. /*
  69. * Infinities and NaNs are a special case.
  70. */
  71. if (vd->exponent == 2047 && (vd->significand == 0 || exceptions))
  72. goto pack;
  73. /*
  74. * Special-case zero.
  75. */
  76. if (vd->significand == 0) {
  77. vd->exponent = 0;
  78. goto pack;
  79. }
  80. exponent = vd->exponent;
  81. significand = vd->significand;
  82. shift = 32 - fls(significand >> 32);
  83. if (shift == 32)
  84. shift = 64 - fls(significand);
  85. if (shift) {
  86. exponent -= shift;
  87. significand <<= shift;
  88. }
  89. #ifdef DEBUG
  90. vd->exponent = exponent;
  91. vd->significand = significand;
  92. vfp_double_dump("pack: normalised", vd);
  93. #endif
  94. /*
  95. * Tiny number?
  96. */
  97. underflow = exponent < 0;
  98. if (underflow) {
  99. significand = vfp_shiftright64jamming(significand, -exponent);
  100. exponent = 0;
  101. #ifdef DEBUG
  102. vd->exponent = exponent;
  103. vd->significand = significand;
  104. vfp_double_dump("pack: tiny number", vd);
  105. #endif
  106. if (!(significand & ((1ULL << (VFP_DOUBLE_LOW_BITS + 1)) - 1)))
  107. underflow = 0;
  108. }
  109. /*
  110. * Select rounding increment.
  111. */
  112. incr = 0;
  113. rmode = fpscr & FPSCR_RMODE_MASK;
  114. if (rmode == FPSCR_ROUND_NEAREST) {
  115. incr = 1ULL << VFP_DOUBLE_LOW_BITS;
  116. if ((significand & (1ULL << (VFP_DOUBLE_LOW_BITS + 1))) == 0)
  117. incr -= 1;
  118. } else if (rmode == FPSCR_ROUND_TOZERO) {
  119. incr = 0;
  120. } else if ((rmode == FPSCR_ROUND_PLUSINF) ^ (vd->sign != 0))
  121. incr = (1ULL << (VFP_DOUBLE_LOW_BITS + 1)) - 1;
  122. pr_debug("VFP: rounding increment = 0x%08llx\n", incr);
  123. /*
  124. * Is our rounding going to overflow?
  125. */
  126. if ((significand + incr) < significand) {
  127. exponent += 1;
  128. significand = (significand >> 1) | (significand & 1);
  129. incr >>= 1;
  130. #ifdef DEBUG
  131. vd->exponent = exponent;
  132. vd->significand = significand;
  133. vfp_double_dump("pack: overflow", vd);
  134. #endif
  135. }
  136. /*
  137. * If any of the low bits (which will be shifted out of the
  138. * number) are non-zero, the result is inexact.
  139. */
  140. if (significand & ((1 << (VFP_DOUBLE_LOW_BITS + 1)) - 1))
  141. exceptions |= FPSCR_IXC;
  142. /*
  143. * Do our rounding.
  144. */
  145. significand += incr;
  146. /*
  147. * Infinity?
  148. */
  149. if (exponent >= 2046) {
  150. exceptions |= FPSCR_OFC | FPSCR_IXC;
  151. if (incr == 0) {
  152. vd->exponent = 2045;
  153. vd->significand = 0x7fffffffffffffffULL;
  154. } else {
  155. vd->exponent = 2047; /* infinity */
  156. vd->significand = 0;
  157. }
  158. } else {
  159. if (significand >> (VFP_DOUBLE_LOW_BITS + 1) == 0)
  160. exponent = 0;
  161. if (exponent || significand > 0x8000000000000000ULL)
  162. underflow = 0;
  163. if (underflow)
  164. exceptions |= FPSCR_UFC;
  165. vd->exponent = exponent;
  166. vd->significand = significand >> 1;
  167. }
  168. pack:
  169. vfp_double_dump("pack: final", vd);
  170. {
  171. s64 d = vfp_double_pack(vd);
  172. pr_debug("VFP: %s: d(d%d)=%016llx exceptions=%08x\n", func,
  173. dd, d, exceptions);
  174. vfp_put_double(dd, d);
  175. }
  176. return exceptions & ~VFP_NAN_FLAG;
  177. }
  178. /*
  179. * Propagate the NaN, setting exceptions if it is signalling.
  180. * 'n' is always a NaN. 'm' may be a number, NaN or infinity.
  181. */
  182. static u32
  183. vfp_propagate_nan(struct vfp_double *vdd, struct vfp_double *vdn,
  184. struct vfp_double *vdm, u32 fpscr)
  185. {
  186. struct vfp_double *nan;
  187. int tn, tm = 0;
  188. tn = vfp_double_type(vdn);
  189. if (vdm)
  190. tm = vfp_double_type(vdm);
  191. if (fpscr & FPSCR_DEFAULT_NAN)
  192. /*
  193. * Default NaN mode - always returns a quiet NaN
  194. */
  195. nan = &vfp_double_default_qnan;
  196. else {
  197. /*
  198. * Contemporary mode - select the first signalling
  199. * NAN, or if neither are signalling, the first
  200. * quiet NAN.
  201. */
  202. if (tn == VFP_SNAN || (tm != VFP_SNAN && tn == VFP_QNAN))
  203. nan = vdn;
  204. else
  205. nan = vdm;
  206. /*
  207. * Make the NaN quiet.
  208. */
  209. nan->significand |= VFP_DOUBLE_SIGNIFICAND_QNAN;
  210. }
  211. *vdd = *nan;
  212. /*
  213. * If one was a signalling NAN, raise invalid operation.
  214. */
  215. return tn == VFP_SNAN || tm == VFP_SNAN ? FPSCR_IOC : VFP_NAN_FLAG;
  216. }
  217. /*
  218. * Extended operations
  219. */
  220. static u32 vfp_double_fabs(int dd, int unused, int dm, u32 fpscr)
  221. {
  222. vfp_put_double(dd, vfp_double_packed_abs(vfp_get_double(dm)));
  223. return 0;
  224. }
  225. static u32 vfp_double_fcpy(int dd, int unused, int dm, u32 fpscr)
  226. {
  227. vfp_put_double(dd, vfp_get_double(dm));
  228. return 0;
  229. }
  230. static u32 vfp_double_fneg(int dd, int unused, int dm, u32 fpscr)
  231. {
  232. vfp_put_double(dd, vfp_double_packed_negate(vfp_get_double(dm)));
  233. return 0;
  234. }
  235. static u32 vfp_double_fsqrt(int dd, int unused, int dm, u32 fpscr)
  236. {
  237. struct vfp_double vdm, vdd;
  238. int ret, tm;
  239. vfp_double_unpack(&vdm, vfp_get_double(dm));
  240. tm = vfp_double_type(&vdm);
  241. if (tm & (VFP_NAN|VFP_INFINITY)) {
  242. struct vfp_double *vdp = &vdd;
  243. if (tm & VFP_NAN)
  244. ret = vfp_propagate_nan(vdp, &vdm, NULL, fpscr);
  245. else if (vdm.sign == 0) {
  246. sqrt_copy:
  247. vdp = &vdm;
  248. ret = 0;
  249. } else {
  250. sqrt_invalid:
  251. vdp = &vfp_double_default_qnan;
  252. ret = FPSCR_IOC;
  253. }
  254. vfp_put_double(dd, vfp_double_pack(vdp));
  255. return ret;
  256. }
  257. /*
  258. * sqrt(+/- 0) == +/- 0
  259. */
  260. if (tm & VFP_ZERO)
  261. goto sqrt_copy;
  262. /*
  263. * Normalise a denormalised number
  264. */
  265. if (tm & VFP_DENORMAL)
  266. vfp_double_normalise_denormal(&vdm);
  267. /*
  268. * sqrt(<0) = invalid
  269. */
  270. if (vdm.sign)
  271. goto sqrt_invalid;
  272. vfp_double_dump("sqrt", &vdm);
  273. /*
  274. * Estimate the square root.
  275. */
  276. vdd.sign = 0;
  277. vdd.exponent = ((vdm.exponent - 1023) >> 1) + 1023;
  278. vdd.significand = (u64)vfp_estimate_sqrt_significand(vdm.exponent, vdm.significand >> 32) << 31;
  279. vfp_double_dump("sqrt estimate1", &vdd);
  280. vdm.significand >>= 1 + (vdm.exponent & 1);
  281. vdd.significand += 2 + vfp_estimate_div128to64(vdm.significand, 0, vdd.significand);
  282. vfp_double_dump("sqrt estimate2", &vdd);
  283. /*
  284. * And now adjust.
  285. */
  286. if ((vdd.significand & VFP_DOUBLE_LOW_BITS_MASK) <= 5) {
  287. if (vdd.significand < 2) {
  288. vdd.significand = ~0ULL;
  289. } else {
  290. u64 termh, terml, remh, reml;
  291. vdm.significand <<= 2;
  292. mul64to128(&termh, &terml, vdd.significand, vdd.significand);
  293. sub128(&remh, &reml, vdm.significand, 0, termh, terml);
  294. while ((s64)remh < 0) {
  295. vdd.significand -= 1;
  296. shift64left(&termh, &terml, vdd.significand);
  297. terml |= 1;
  298. add128(&remh, &reml, remh, reml, termh, terml);
  299. }
  300. vdd.significand |= (remh | reml) != 0;
  301. }
  302. }
  303. vdd.significand = vfp_shiftright64jamming(vdd.significand, 1);
  304. return vfp_double_normaliseround(dd, &vdd, fpscr, 0, "fsqrt");
  305. }
  306. /*
  307. * Equal := ZC
  308. * Less than := N
  309. * Greater than := C
  310. * Unordered := CV
  311. */
  312. static u32 vfp_compare(int dd, int signal_on_qnan, int dm, u32 fpscr)
  313. {
  314. s64 d, m;
  315. u32 ret = 0;
  316. m = vfp_get_double(dm);
  317. if (vfp_double_packed_exponent(m) == 2047 && vfp_double_packed_mantissa(m)) {
  318. ret |= FPSCR_C | FPSCR_V;
  319. if (signal_on_qnan || !(vfp_double_packed_mantissa(m) & (1ULL << (VFP_DOUBLE_MANTISSA_BITS - 1))))
  320. /*
  321. * Signalling NaN, or signalling on quiet NaN
  322. */
  323. ret |= FPSCR_IOC;
  324. }
  325. d = vfp_get_double(dd);
  326. if (vfp_double_packed_exponent(d) == 2047 && vfp_double_packed_mantissa(d)) {
  327. ret |= FPSCR_C | FPSCR_V;
  328. if (signal_on_qnan || !(vfp_double_packed_mantissa(d) & (1ULL << (VFP_DOUBLE_MANTISSA_BITS - 1))))
  329. /*
  330. * Signalling NaN, or signalling on quiet NaN
  331. */
  332. ret |= FPSCR_IOC;
  333. }
  334. if (ret == 0) {
  335. if (d == m || vfp_double_packed_abs(d | m) == 0) {
  336. /*
  337. * equal
  338. */
  339. ret |= FPSCR_Z | FPSCR_C;
  340. } else if (vfp_double_packed_sign(d ^ m)) {
  341. /*
  342. * different signs
  343. */
  344. if (vfp_double_packed_sign(d))
  345. /*
  346. * d is negative, so d < m
  347. */
  348. ret |= FPSCR_N;
  349. else
  350. /*
  351. * d is positive, so d > m
  352. */
  353. ret |= FPSCR_C;
  354. } else if ((vfp_double_packed_sign(d) != 0) ^ (d < m)) {
  355. /*
  356. * d < m
  357. */
  358. ret |= FPSCR_N;
  359. } else if ((vfp_double_packed_sign(d) != 0) ^ (d > m)) {
  360. /*
  361. * d > m
  362. */
  363. ret |= FPSCR_C;
  364. }
  365. }
  366. return ret;
  367. }
  368. static u32 vfp_double_fcmp(int dd, int unused, int dm, u32 fpscr)
  369. {
  370. return vfp_compare(dd, 0, dm, fpscr);
  371. }
  372. static u32 vfp_double_fcmpe(int dd, int unused, int dm, u32 fpscr)
  373. {
  374. return vfp_compare(dd, 1, dm, fpscr);
  375. }
  376. static u32 vfp_double_fcmpz(int dd, int unused, int dm, u32 fpscr)
  377. {
  378. return vfp_compare(dd, 0, VFP_REG_ZERO, fpscr);
  379. }
  380. static u32 vfp_double_fcmpez(int dd, int unused, int dm, u32 fpscr)
  381. {
  382. return vfp_compare(dd, 1, VFP_REG_ZERO, fpscr);
  383. }
  384. static u32 vfp_double_fcvts(int sd, int unused, int dm, u32 fpscr)
  385. {
  386. struct vfp_double vdm;
  387. struct vfp_single vsd;
  388. int tm;
  389. u32 exceptions = 0;
  390. vfp_double_unpack(&vdm, vfp_get_double(dm));
  391. tm = vfp_double_type(&vdm);
  392. /*
  393. * If we have a signalling NaN, signal invalid operation.
  394. */
  395. if (tm == VFP_SNAN)
  396. exceptions = FPSCR_IOC;
  397. if (tm & VFP_DENORMAL)
  398. vfp_double_normalise_denormal(&vdm);
  399. vsd.sign = vdm.sign;
  400. vsd.significand = vfp_hi64to32jamming(vdm.significand);
  401. /*
  402. * If we have an infinity or a NaN, the exponent must be 255
  403. */
  404. if (tm & (VFP_INFINITY|VFP_NAN)) {
  405. vsd.exponent = 255;
  406. if (tm & VFP_NAN)
  407. vsd.significand |= VFP_SINGLE_SIGNIFICAND_QNAN;
  408. goto pack_nan;
  409. } else if (tm & VFP_ZERO)
  410. vsd.exponent = 0;
  411. else
  412. vsd.exponent = vdm.exponent - (1023 - 127);
  413. return vfp_single_normaliseround(sd, &vsd, fpscr, exceptions, "fcvts");
  414. pack_nan:
  415. vfp_put_float(sd, vfp_single_pack(&vsd));
  416. return exceptions;
  417. }
  418. static u32 vfp_double_fuito(int dd, int unused, int dm, u32 fpscr)
  419. {
  420. struct vfp_double vdm;
  421. u32 m = vfp_get_float(dm);
  422. vdm.sign = 0;
  423. vdm.exponent = 1023 + 63 - 1;
  424. vdm.significand = (u64)m;
  425. return vfp_double_normaliseround(dd, &vdm, fpscr, 0, "fuito");
  426. }
  427. static u32 vfp_double_fsito(int dd, int unused, int dm, u32 fpscr)
  428. {
  429. struct vfp_double vdm;
  430. u32 m = vfp_get_float(dm);
  431. vdm.sign = (m & 0x80000000) >> 16;
  432. vdm.exponent = 1023 + 63 - 1;
  433. vdm.significand = vdm.sign ? -m : m;
  434. return vfp_double_normaliseround(dd, &vdm, fpscr, 0, "fsito");
  435. }
  436. static u32 vfp_double_ftoui(int sd, int unused, int dm, u32 fpscr)
  437. {
  438. struct vfp_double vdm;
  439. u32 d, exceptions = 0;
  440. int rmode = fpscr & FPSCR_RMODE_MASK;
  441. int tm;
  442. vfp_double_unpack(&vdm, vfp_get_double(dm));
  443. /*
  444. * Do we have a denormalised number?
  445. */
  446. tm = vfp_double_type(&vdm);
  447. if (tm & VFP_DENORMAL)
  448. exceptions |= FPSCR_IDC;
  449. if (tm & VFP_NAN)
  450. vdm.sign = 0;
  451. if (vdm.exponent >= 1023 + 32) {
  452. d = vdm.sign ? 0 : 0xffffffff;
  453. exceptions = FPSCR_IOC;
  454. } else if (vdm.exponent >= 1023 - 1) {
  455. int shift = 1023 + 63 - vdm.exponent;
  456. u64 rem, incr = 0;
  457. /*
  458. * 2^0 <= m < 2^32-2^8
  459. */
  460. d = (vdm.significand << 1) >> shift;
  461. rem = vdm.significand << (65 - shift);
  462. if (rmode == FPSCR_ROUND_NEAREST) {
  463. incr = 0x8000000000000000ULL;
  464. if ((d & 1) == 0)
  465. incr -= 1;
  466. } else if (rmode == FPSCR_ROUND_TOZERO) {
  467. incr = 0;
  468. } else if ((rmode == FPSCR_ROUND_PLUSINF) ^ (vdm.sign != 0)) {
  469. incr = ~0ULL;
  470. }
  471. if ((rem + incr) < rem) {
  472. if (d < 0xffffffff)
  473. d += 1;
  474. else
  475. exceptions |= FPSCR_IOC;
  476. }
  477. if (d && vdm.sign) {
  478. d = 0;
  479. exceptions |= FPSCR_IOC;
  480. } else if (rem)
  481. exceptions |= FPSCR_IXC;
  482. } else {
  483. d = 0;
  484. if (vdm.exponent | vdm.significand) {
  485. exceptions |= FPSCR_IXC;
  486. if (rmode == FPSCR_ROUND_PLUSINF && vdm.sign == 0)
  487. d = 1;
  488. else if (rmode == FPSCR_ROUND_MINUSINF && vdm.sign) {
  489. d = 0;
  490. exceptions |= FPSCR_IOC;
  491. }
  492. }
  493. }
  494. pr_debug("VFP: ftoui: d(s%d)=%08x exceptions=%08x\n", sd, d, exceptions);
  495. vfp_put_float(sd, d);
  496. return exceptions;
  497. }
  498. static u32 vfp_double_ftouiz(int sd, int unused, int dm, u32 fpscr)
  499. {
  500. return vfp_double_ftoui(sd, unused, dm, FPSCR_ROUND_TOZERO);
  501. }
  502. static u32 vfp_double_ftosi(int sd, int unused, int dm, u32 fpscr)
  503. {
  504. struct vfp_double vdm;
  505. u32 d, exceptions = 0;
  506. int rmode = fpscr & FPSCR_RMODE_MASK;
  507. vfp_double_unpack(&vdm, vfp_get_double(dm));
  508. vfp_double_dump("VDM", &vdm);
  509. /*
  510. * Do we have denormalised number?
  511. */
  512. if (vfp_double_type(&vdm) & VFP_DENORMAL)
  513. exceptions |= FPSCR_IDC;
  514. if (vdm.exponent >= 1023 + 32) {
  515. d = 0x7fffffff;
  516. if (vdm.sign)
  517. d = ~d;
  518. exceptions |= FPSCR_IOC;
  519. } else if (vdm.exponent >= 1023 - 1) {
  520. int shift = 1023 + 63 - vdm.exponent; /* 58 */
  521. u64 rem, incr = 0;
  522. d = (vdm.significand << 1) >> shift;
  523. rem = vdm.significand << (65 - shift);
  524. if (rmode == FPSCR_ROUND_NEAREST) {
  525. incr = 0x8000000000000000ULL;
  526. if ((d & 1) == 0)
  527. incr -= 1;
  528. } else if (rmode == FPSCR_ROUND_TOZERO) {
  529. incr = 0;
  530. } else if ((rmode == FPSCR_ROUND_PLUSINF) ^ (vdm.sign != 0)) {
  531. incr = ~0ULL;
  532. }
  533. if ((rem + incr) < rem && d < 0xffffffff)
  534. d += 1;
  535. if (d > 0x7fffffff + (vdm.sign != 0)) {
  536. d = 0x7fffffff + (vdm.sign != 0);
  537. exceptions |= FPSCR_IOC;
  538. } else if (rem)
  539. exceptions |= FPSCR_IXC;
  540. if (vdm.sign)
  541. d = -d;
  542. } else {
  543. d = 0;
  544. if (vdm.exponent | vdm.significand) {
  545. exceptions |= FPSCR_IXC;
  546. if (rmode == FPSCR_ROUND_PLUSINF && vdm.sign == 0)
  547. d = 1;
  548. else if (rmode == FPSCR_ROUND_MINUSINF && vdm.sign)
  549. d = -1;
  550. }
  551. }
  552. pr_debug("VFP: ftosi: d(s%d)=%08x exceptions=%08x\n", sd, d, exceptions);
  553. vfp_put_float(sd, (s32)d);
  554. return exceptions;
  555. }
  556. static u32 vfp_double_ftosiz(int dd, int unused, int dm, u32 fpscr)
  557. {
  558. return vfp_double_ftosi(dd, unused, dm, FPSCR_ROUND_TOZERO);
  559. }
  560. static u32 (* const fop_extfns[32])(int dd, int unused, int dm, u32 fpscr) = {
  561. [FEXT_TO_IDX(FEXT_FCPY)] = vfp_double_fcpy,
  562. [FEXT_TO_IDX(FEXT_FABS)] = vfp_double_fabs,
  563. [FEXT_TO_IDX(FEXT_FNEG)] = vfp_double_fneg,
  564. [FEXT_TO_IDX(FEXT_FSQRT)] = vfp_double_fsqrt,
  565. [FEXT_TO_IDX(FEXT_FCMP)] = vfp_double_fcmp,
  566. [FEXT_TO_IDX(FEXT_FCMPE)] = vfp_double_fcmpe,
  567. [FEXT_TO_IDX(FEXT_FCMPZ)] = vfp_double_fcmpz,
  568. [FEXT_TO_IDX(FEXT_FCMPEZ)] = vfp_double_fcmpez,
  569. [FEXT_TO_IDX(FEXT_FCVT)] = vfp_double_fcvts,
  570. [FEXT_TO_IDX(FEXT_FUITO)] = vfp_double_fuito,
  571. [FEXT_TO_IDX(FEXT_FSITO)] = vfp_double_fsito,
  572. [FEXT_TO_IDX(FEXT_FTOUI)] = vfp_double_ftoui,
  573. [FEXT_TO_IDX(FEXT_FTOUIZ)] = vfp_double_ftouiz,
  574. [FEXT_TO_IDX(FEXT_FTOSI)] = vfp_double_ftosi,
  575. [FEXT_TO_IDX(FEXT_FTOSIZ)] = vfp_double_ftosiz,
  576. };
  577. static u32
  578. vfp_double_fadd_nonnumber(struct vfp_double *vdd, struct vfp_double *vdn,
  579. struct vfp_double *vdm, u32 fpscr)
  580. {
  581. struct vfp_double *vdp;
  582. u32 exceptions = 0;
  583. int tn, tm;
  584. tn = vfp_double_type(vdn);
  585. tm = vfp_double_type(vdm);
  586. if (tn & tm & VFP_INFINITY) {
  587. /*
  588. * Two infinities. Are they different signs?
  589. */
  590. if (vdn->sign ^ vdm->sign) {
  591. /*
  592. * different signs -> invalid
  593. */
  594. exceptions = FPSCR_IOC;
  595. vdp = &vfp_double_default_qnan;
  596. } else {
  597. /*
  598. * same signs -> valid
  599. */
  600. vdp = vdn;
  601. }
  602. } else if (tn & VFP_INFINITY && tm & VFP_NUMBER) {
  603. /*
  604. * One infinity and one number -> infinity
  605. */
  606. vdp = vdn;
  607. } else {
  608. /*
  609. * 'n' is a NaN of some type
  610. */
  611. return vfp_propagate_nan(vdd, vdn, vdm, fpscr);
  612. }
  613. *vdd = *vdp;
  614. return exceptions;
  615. }
  616. static u32
  617. vfp_double_add(struct vfp_double *vdd, struct vfp_double *vdn,
  618. struct vfp_double *vdm, u32 fpscr)
  619. {
  620. u32 exp_diff;
  621. u64 m_sig;
  622. if (vdn->significand & (1ULL << 63) ||
  623. vdm->significand & (1ULL << 63)) {
  624. pr_info("VFP: bad FP values in %s\n", __func__);
  625. vfp_double_dump("VDN", vdn);
  626. vfp_double_dump("VDM", vdm);
  627. }
  628. /*
  629. * Ensure that 'n' is the largest magnitude number. Note that
  630. * if 'n' and 'm' have equal exponents, we do not swap them.
  631. * This ensures that NaN propagation works correctly.
  632. */
  633. if (vdn->exponent < vdm->exponent) {
  634. struct vfp_double *t = vdn;
  635. vdn = vdm;
  636. vdm = t;
  637. }
  638. /*
  639. * Is 'n' an infinity or a NaN? Note that 'm' may be a number,
  640. * infinity or a NaN here.
  641. */
  642. if (vdn->exponent == 2047)
  643. return vfp_double_fadd_nonnumber(vdd, vdn, vdm, fpscr);
  644. /*
  645. * We have two proper numbers, where 'vdn' is the larger magnitude.
  646. *
  647. * Copy 'n' to 'd' before doing the arithmetic.
  648. */
  649. *vdd = *vdn;
  650. /*
  651. * Align 'm' with the result.
  652. */
  653. exp_diff = vdn->exponent - vdm->exponent;
  654. m_sig = vfp_shiftright64jamming(vdm->significand, exp_diff);
  655. /*
  656. * If the signs are different, we are really subtracting.
  657. */
  658. if (vdn->sign ^ vdm->sign) {
  659. m_sig = vdn->significand - m_sig;
  660. if ((s64)m_sig < 0) {
  661. vdd->sign = vfp_sign_negate(vdd->sign);
  662. m_sig = -m_sig;
  663. }
  664. } else {
  665. m_sig += vdn->significand;
  666. }
  667. vdd->significand = m_sig;
  668. return 0;
  669. }
  670. static u32
  671. vfp_double_multiply(struct vfp_double *vdd, struct vfp_double *vdn,
  672. struct vfp_double *vdm, u32 fpscr)
  673. {
  674. vfp_double_dump("VDN", vdn);
  675. vfp_double_dump("VDM", vdm);
  676. /*
  677. * Ensure that 'n' is the largest magnitude number. Note that
  678. * if 'n' and 'm' have equal exponents, we do not swap them.
  679. * This ensures that NaN propagation works correctly.
  680. */
  681. if (vdn->exponent < vdm->exponent) {
  682. struct vfp_double *t = vdn;
  683. vdn = vdm;
  684. vdm = t;
  685. pr_debug("VFP: swapping M <-> N\n");
  686. }
  687. vdd->sign = vdn->sign ^ vdm->sign;
  688. /*
  689. * If 'n' is an infinity or NaN, handle it. 'm' may be anything.
  690. */
  691. if (vdn->exponent == 2047) {
  692. if (vdn->significand || (vdm->exponent == 2047 && vdm->significand))
  693. return vfp_propagate_nan(vdd, vdn, vdm, fpscr);
  694. if ((vdm->exponent | vdm->significand) == 0) {
  695. *vdd = vfp_double_default_qnan;
  696. return FPSCR_IOC;
  697. }
  698. vdd->exponent = vdn->exponent;
  699. vdd->significand = 0;
  700. return 0;
  701. }
  702. /*
  703. * If 'm' is zero, the result is always zero. In this case,
  704. * 'n' may be zero or a number, but it doesn't matter which.
  705. */
  706. if ((vdm->exponent | vdm->significand) == 0) {
  707. vdd->exponent = 0;
  708. vdd->significand = 0;
  709. return 0;
  710. }
  711. /*
  712. * We add 2 to the destination exponent for the same reason
  713. * as the addition case - though this time we have +1 from
  714. * each input operand.
  715. */
  716. vdd->exponent = vdn->exponent + vdm->exponent - 1023 + 2;
  717. vdd->significand = vfp_hi64multiply64(vdn->significand, vdm->significand);
  718. vfp_double_dump("VDD", vdd);
  719. return 0;
  720. }
  721. #define NEG_MULTIPLY (1 << 0)
  722. #define NEG_SUBTRACT (1 << 1)
  723. static u32
  724. vfp_double_multiply_accumulate(int dd, int dn, int dm, u32 fpscr, u32 negate, char *func)
  725. {
  726. struct vfp_double vdd, vdp, vdn, vdm;
  727. u32 exceptions;
  728. vfp_double_unpack(&vdn, vfp_get_double(dn));
  729. if (vdn.exponent == 0 && vdn.significand)
  730. vfp_double_normalise_denormal(&vdn);
  731. vfp_double_unpack(&vdm, vfp_get_double(dm));
  732. if (vdm.exponent == 0 && vdm.significand)
  733. vfp_double_normalise_denormal(&vdm);
  734. exceptions = vfp_double_multiply(&vdp, &vdn, &vdm, fpscr);
  735. if (negate & NEG_MULTIPLY)
  736. vdp.sign = vfp_sign_negate(vdp.sign);
  737. vfp_double_unpack(&vdn, vfp_get_double(dd));
  738. if (negate & NEG_SUBTRACT)
  739. vdn.sign = vfp_sign_negate(vdn.sign);
  740. exceptions |= vfp_double_add(&vdd, &vdn, &vdp, fpscr);
  741. return vfp_double_normaliseround(dd, &vdd, fpscr, exceptions, func);
  742. }
  743. /*
  744. * Standard operations
  745. */
  746. /*
  747. * sd = sd + (sn * sm)
  748. */
  749. static u32 vfp_double_fmac(int dd, int dn, int dm, u32 fpscr)
  750. {
  751. return vfp_double_multiply_accumulate(dd, dn, dm, fpscr, 0, "fmac");
  752. }
  753. /*
  754. * sd = sd - (sn * sm)
  755. */
  756. static u32 vfp_double_fnmac(int dd, int dn, int dm, u32 fpscr)
  757. {
  758. return vfp_double_multiply_accumulate(dd, dn, dm, fpscr, NEG_MULTIPLY, "fnmac");
  759. }
  760. /*
  761. * sd = -sd + (sn * sm)
  762. */
  763. static u32 vfp_double_fmsc(int dd, int dn, int dm, u32 fpscr)
  764. {
  765. return vfp_double_multiply_accumulate(dd, dn, dm, fpscr, NEG_SUBTRACT, "fmsc");
  766. }
  767. /*
  768. * sd = -sd - (sn * sm)
  769. */
  770. static u32 vfp_double_fnmsc(int dd, int dn, int dm, u32 fpscr)
  771. {
  772. return vfp_double_multiply_accumulate(dd, dn, dm, fpscr, NEG_SUBTRACT | NEG_MULTIPLY, "fnmsc");
  773. }
  774. /*
  775. * sd = sn * sm
  776. */
  777. static u32 vfp_double_fmul(int dd, int dn, int dm, u32 fpscr)
  778. {
  779. struct vfp_double vdd, vdn, vdm;
  780. u32 exceptions;
  781. vfp_double_unpack(&vdn, vfp_get_double(dn));
  782. if (vdn.exponent == 0 && vdn.significand)
  783. vfp_double_normalise_denormal(&vdn);
  784. vfp_double_unpack(&vdm, vfp_get_double(dm));
  785. if (vdm.exponent == 0 && vdm.significand)
  786. vfp_double_normalise_denormal(&vdm);
  787. exceptions = vfp_double_multiply(&vdd, &vdn, &vdm, fpscr);
  788. return vfp_double_normaliseround(dd, &vdd, fpscr, exceptions, "fmul");
  789. }
  790. /*
  791. * sd = -(sn * sm)
  792. */
  793. static u32 vfp_double_fnmul(int dd, int dn, int dm, u32 fpscr)
  794. {
  795. struct vfp_double vdd, vdn, vdm;
  796. u32 exceptions;
  797. vfp_double_unpack(&vdn, vfp_get_double(dn));
  798. if (vdn.exponent == 0 && vdn.significand)
  799. vfp_double_normalise_denormal(&vdn);
  800. vfp_double_unpack(&vdm, vfp_get_double(dm));
  801. if (vdm.exponent == 0 && vdm.significand)
  802. vfp_double_normalise_denormal(&vdm);
  803. exceptions = vfp_double_multiply(&vdd, &vdn, &vdm, fpscr);
  804. vdd.sign = vfp_sign_negate(vdd.sign);
  805. return vfp_double_normaliseround(dd, &vdd, fpscr, exceptions, "fnmul");
  806. }
  807. /*
  808. * sd = sn + sm
  809. */
  810. static u32 vfp_double_fadd(int dd, int dn, int dm, u32 fpscr)
  811. {
  812. struct vfp_double vdd, vdn, vdm;
  813. u32 exceptions;
  814. vfp_double_unpack(&vdn, vfp_get_double(dn));
  815. if (vdn.exponent == 0 && vdn.significand)
  816. vfp_double_normalise_denormal(&vdn);
  817. vfp_double_unpack(&vdm, vfp_get_double(dm));
  818. if (vdm.exponent == 0 && vdm.significand)
  819. vfp_double_normalise_denormal(&vdm);
  820. exceptions = vfp_double_add(&vdd, &vdn, &vdm, fpscr);
  821. return vfp_double_normaliseround(dd, &vdd, fpscr, exceptions, "fadd");
  822. }
  823. /*
  824. * sd = sn - sm
  825. */
  826. static u32 vfp_double_fsub(int dd, int dn, int dm, u32 fpscr)
  827. {
  828. struct vfp_double vdd, vdn, vdm;
  829. u32 exceptions;
  830. vfp_double_unpack(&vdn, vfp_get_double(dn));
  831. if (vdn.exponent == 0 && vdn.significand)
  832. vfp_double_normalise_denormal(&vdn);
  833. vfp_double_unpack(&vdm, vfp_get_double(dm));
  834. if (vdm.exponent == 0 && vdm.significand)
  835. vfp_double_normalise_denormal(&vdm);
  836. /*
  837. * Subtraction is like addition, but with a negated operand.
  838. */
  839. vdm.sign = vfp_sign_negate(vdm.sign);
  840. exceptions = vfp_double_add(&vdd, &vdn, &vdm, fpscr);
  841. return vfp_double_normaliseround(dd, &vdd, fpscr, exceptions, "fsub");
  842. }
  843. /*
  844. * sd = sn / sm
  845. */
  846. static u32 vfp_double_fdiv(int dd, int dn, int dm, u32 fpscr)
  847. {
  848. struct vfp_double vdd, vdn, vdm;
  849. u32 exceptions = 0;
  850. int tm, tn;
  851. vfp_double_unpack(&vdn, vfp_get_double(dn));
  852. vfp_double_unpack(&vdm, vfp_get_double(dm));
  853. vdd.sign = vdn.sign ^ vdm.sign;
  854. tn = vfp_double_type(&vdn);
  855. tm = vfp_double_type(&vdm);
  856. /*
  857. * Is n a NAN?
  858. */
  859. if (tn & VFP_NAN)
  860. goto vdn_nan;
  861. /*
  862. * Is m a NAN?
  863. */
  864. if (tm & VFP_NAN)
  865. goto vdm_nan;
  866. /*
  867. * If n and m are infinity, the result is invalid
  868. * If n and m are zero, the result is invalid
  869. */
  870. if (tm & tn & (VFP_INFINITY|VFP_ZERO))
  871. goto invalid;
  872. /*
  873. * If n is infinity, the result is infinity
  874. */
  875. if (tn & VFP_INFINITY)
  876. goto infinity;
  877. /*
  878. * If m is zero, raise div0 exceptions
  879. */
  880. if (tm & VFP_ZERO)
  881. goto divzero;
  882. /*
  883. * If m is infinity, or n is zero, the result is zero
  884. */
  885. if (tm & VFP_INFINITY || tn & VFP_ZERO)
  886. goto zero;
  887. if (tn & VFP_DENORMAL)
  888. vfp_double_normalise_denormal(&vdn);
  889. if (tm & VFP_DENORMAL)
  890. vfp_double_normalise_denormal(&vdm);
  891. /*
  892. * Ok, we have two numbers, we can perform division.
  893. */
  894. vdd.exponent = vdn.exponent - vdm.exponent + 1023 - 1;
  895. vdm.significand <<= 1;
  896. if (vdm.significand <= (2 * vdn.significand)) {
  897. vdn.significand >>= 1;
  898. vdd.exponent++;
  899. }
  900. vdd.significand = vfp_estimate_div128to64(vdn.significand, 0, vdm.significand);
  901. if ((vdd.significand & 0x1ff) <= 2) {
  902. u64 termh, terml, remh, reml;
  903. mul64to128(&termh, &terml, vdm.significand, vdd.significand);
  904. sub128(&remh, &reml, vdn.significand, 0, termh, terml);
  905. while ((s64)remh < 0) {
  906. vdd.significand -= 1;
  907. add128(&remh, &reml, remh, reml, 0, vdm.significand);
  908. }
  909. vdd.significand |= (reml != 0);
  910. }
  911. return vfp_double_normaliseround(dd, &vdd, fpscr, 0, "fdiv");
  912. vdn_nan:
  913. exceptions = vfp_propagate_nan(&vdd, &vdn, &vdm, fpscr);
  914. pack:
  915. vfp_put_double(dd, vfp_double_pack(&vdd));
  916. return exceptions;
  917. vdm_nan:
  918. exceptions = vfp_propagate_nan(&vdd, &vdm, &vdn, fpscr);
  919. goto pack;
  920. zero:
  921. vdd.exponent = 0;
  922. vdd.significand = 0;
  923. goto pack;
  924. divzero:
  925. exceptions = FPSCR_DZC;
  926. infinity:
  927. vdd.exponent = 2047;
  928. vdd.significand = 0;
  929. goto pack;
  930. invalid:
  931. vfp_put_double(dd, vfp_double_pack(&vfp_double_default_qnan));
  932. return FPSCR_IOC;
  933. }
  934. static u32 (* const fop_fns[16])(int dd, int dn, int dm, u32 fpscr) = {
  935. [FOP_TO_IDX(FOP_FMAC)] = vfp_double_fmac,
  936. [FOP_TO_IDX(FOP_FNMAC)] = vfp_double_fnmac,
  937. [FOP_TO_IDX(FOP_FMSC)] = vfp_double_fmsc,
  938. [FOP_TO_IDX(FOP_FNMSC)] = vfp_double_fnmsc,
  939. [FOP_TO_IDX(FOP_FMUL)] = vfp_double_fmul,
  940. [FOP_TO_IDX(FOP_FNMUL)] = vfp_double_fnmul,
  941. [FOP_TO_IDX(FOP_FADD)] = vfp_double_fadd,
  942. [FOP_TO_IDX(FOP_FSUB)] = vfp_double_fsub,
  943. [FOP_TO_IDX(FOP_FDIV)] = vfp_double_fdiv,
  944. };
  945. #define FREG_BANK(x) ((x) & 0x0c)
  946. #define FREG_IDX(x) ((x) & 3)
  947. u32 vfp_double_cpdo(u32 inst, u32 fpscr)
  948. {
  949. u32 op = inst & FOP_MASK;
  950. u32 exceptions = 0;
  951. unsigned int dd = vfp_get_sd(inst);
  952. unsigned int dn = vfp_get_sn(inst);
  953. unsigned int dm = vfp_get_sm(inst);
  954. unsigned int vecitr, veclen, vecstride;
  955. u32 (*fop)(int, int, s32, u32);
  956. veclen = fpscr & FPSCR_LENGTH_MASK;
  957. vecstride = (1 + ((fpscr & FPSCR_STRIDE_MASK) == FPSCR_STRIDE_MASK)) * 2;
  958. /*
  959. * If destination bank is zero, vector length is always '1'.
  960. * ARM DDI0100F C5.1.3, C5.3.2.
  961. */
  962. if (FREG_BANK(dd) == 0)
  963. veclen = 0;
  964. pr_debug("VFP: vecstride=%u veclen=%u\n", vecstride,
  965. (veclen >> FPSCR_LENGTH_BIT) + 1);
  966. fop = (op == FOP_EXT) ? fop_extfns[dn] : fop_fns[FOP_TO_IDX(op)];
  967. if (!fop)
  968. goto invalid;
  969. for (vecitr = 0; vecitr <= veclen; vecitr += 1 << FPSCR_LENGTH_BIT) {
  970. u32 except;
  971. if (op == FOP_EXT)
  972. pr_debug("VFP: itr%d (d%u.%u) = op[%u] (d%u.%u)\n",
  973. vecitr >> FPSCR_LENGTH_BIT,
  974. dd >> 1, dd & 1, dn,
  975. dm >> 1, dm & 1);
  976. else
  977. pr_debug("VFP: itr%d (d%u.%u) = (d%u.%u) op[%u] (d%u.%u)\n",
  978. vecitr >> FPSCR_LENGTH_BIT,
  979. dd >> 1, dd & 1,
  980. dn >> 1, dn & 1,
  981. FOP_TO_IDX(op),
  982. dm >> 1, dm & 1);
  983. except = fop(dd, dn, dm, fpscr);
  984. pr_debug("VFP: itr%d: exceptions=%08x\n",
  985. vecitr >> FPSCR_LENGTH_BIT, except);
  986. exceptions |= except;
  987. /*
  988. * This ensures that comparisons only operate on scalars;
  989. * comparisons always return with one FPSCR status bit set.
  990. */
  991. if (except & (FPSCR_N|FPSCR_Z|FPSCR_C|FPSCR_V))
  992. break;
  993. /*
  994. * CHECK: It appears to be undefined whether we stop when
  995. * we encounter an exception. We continue.
  996. */
  997. dd = FREG_BANK(dd) + ((FREG_IDX(dd) + vecstride) & 6);
  998. dn = FREG_BANK(dn) + ((FREG_IDX(dn) + vecstride) & 6);
  999. if (FREG_BANK(dm) != 0)
  1000. dm = FREG_BANK(dm) + ((FREG_IDX(dm) + vecstride) & 6);
  1001. }
  1002. return exceptions;
  1003. invalid:
  1004. return ~0;
  1005. }