blob: e857045bba26532bd765e958a7830ba9c99534f9 [file] [log] [blame]
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07001/* ----------------------------------------------------------------------- *
Cyrill Gorcunov1598a232009-10-11 13:17:52 +04002 *
H. Peter Anvin79a070e2018-11-26 14:17:40 -08003 * Copyright 1996-2018 The NASM Authors - All Rights Reserved
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07004 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00006 *
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07007 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
9 * conditions are met:
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000010 *
H. Peter Anvin9e6747c2009-06-28 17:13:04 -070011 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
Cyrill Gorcunov1598a232009-10-11 13:17:52 +040017 *
H. Peter Anvin9e6747c2009-06-28 17:13:04 -070018 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * ----------------------------------------------------------------------- */
33
34/*
35 * float.c floating-point constant support for the Netwide Assembler
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000036 */
37
H. Peter Anvinfe501952007-10-02 21:53:51 -070038#include "compiler.h"
39
H. Peter Anvinfe2177f2007-09-18 18:31:26 -070040#include <ctype.h>
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000041#include <stdio.h>
42#include <stdlib.h>
43#include <string.h>
44
45#include "nasm.h"
H. Peter Anvin214f5492007-10-15 19:46:32 -070046#include "float.h"
H. Peter Anvinb20bc732017-03-07 19:23:03 -080047#include "error.h"
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000048
49/*
H. Peter Anvin214f5492007-10-15 19:46:32 -070050 * -----------------
51 * local variables
52 * -----------------
53 */
H. Peter Anvin214f5492007-10-15 19:46:32 -070054static bool daz = false; /* denormals as zero */
55static enum float_round rc = FLOAT_RC_NEAR; /* rounding control */
56
57/*
58 * -----------
59 * constants
60 * -----------
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000061 */
62
H. Peter Anvin2ce02742007-10-29 20:20:12 -070063/* "A limb is like a digit but bigger */
64typedef uint32_t fp_limb;
65typedef uint64_t fp_2limb;
66
Cyrill Gorcunov1598a232009-10-11 13:17:52 +040067#define LIMB_BITS 32
H. Peter Anvin2ce02742007-10-29 20:20:12 -070068#define LIMB_BYTES (LIMB_BITS/8)
Cyrill Gorcunov1598a232009-10-11 13:17:52 +040069#define LIMB_TOP_BIT ((fp_limb)1 << (LIMB_BITS-1))
70#define LIMB_MASK ((fp_limb)(~0))
71#define LIMB_ALL_BYTES ((fp_limb)0x01010101)
72#define LIMB_BYTE(x) ((x)*LIMB_ALL_BYTES)
H. Peter Anvin2ce02742007-10-29 20:20:12 -070073
H. Peter Anvin214f5492007-10-15 19:46:32 -070074/* 112 bits + 64 bits for accuracy + 16 bits for rounding */
H. Peter Anvin2ce02742007-10-29 20:20:12 -070075#define MANT_LIMBS 6
H. Peter Anvin214f5492007-10-15 19:46:32 -070076
77/* 52 digits fit in 176 bits because 10^53 > 2^176 > 10^52 */
78#define MANT_DIGITS 52
79
H. Peter Anvin2ce02742007-10-29 20:20:12 -070080/* the format and the argument list depend on MANT_LIMBS */
81#define MANT_FMT "%08x_%08x_%08x_%08x_%08x_%08x"
H. Peter Anvin214f5492007-10-15 19:46:32 -070082#define MANT_ARG SOME_ARG(mant, 0)
83
Cyrill Gorcunov1598a232009-10-11 13:17:52 +040084#define SOME_ARG(a,i) (a)[(i)+0], (a)[(i)+1], (a)[(i)+2], \
85 (a)[(i)+3], (a)[(i)+4], (a)[(i)+5]
H. Peter Anvin214f5492007-10-15 19:46:32 -070086
87/*
88 * ---------------------------------------------------------------------------
89 * emit a printf()-like debug message... but only if DEBUG_FLOAT was defined
90 * ---------------------------------------------------------------------------
91 */
92
93#ifdef DEBUG_FLOAT
94#define dprintf(x) printf x
Cyrill Gorcunov1598a232009-10-11 13:17:52 +040095#else
H. Peter Anvin214f5492007-10-15 19:46:32 -070096#define dprintf(x) do { } while (0)
Cyrill Gorcunov1598a232009-10-11 13:17:52 +040097#endif
H. Peter Anvin214f5492007-10-15 19:46:32 -070098
99/*
100 * ---------------------------------------------------------------------------
101 * multiply
102 * ---------------------------------------------------------------------------
103 */
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700104static int float_multiply(fp_limb *to, fp_limb *from)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000105{
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700106 fp_2limb temp[MANT_LIMBS * 2];
107 int i, j;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000108
H. Peter Anvin70653092007-10-19 14:42:29 -0700109 /*
H. Peter Anvin214f5492007-10-15 19:46:32 -0700110 * guaranteed that top bit of 'from' is set -- so we only have
111 * to worry about _one_ bit shift to the left
112 */
113 dprintf(("%s=" MANT_FMT "\n", "mul1", SOME_ARG(to, 0)));
114 dprintf(("%s=" MANT_FMT "\n", "mul2", SOME_ARG(from, 0)));
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000115
H. Peter Anvin214f5492007-10-15 19:46:32 -0700116 memset(temp, 0, sizeof temp);
117
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700118 for (i = 0; i < MANT_LIMBS; i++) {
119 for (j = 0; j < MANT_LIMBS; j++) {
120 fp_2limb n;
121 n = (fp_2limb) to[i] * (fp_2limb) from[j];
122 temp[i + j] += n >> LIMB_BITS;
123 temp[i + j + 1] += (fp_limb)n;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000124 }
H. Peter Anvin214f5492007-10-15 19:46:32 -0700125 }
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000126
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700127 for (i = MANT_LIMBS * 2; --i;) {
128 temp[i - 1] += temp[i] >> LIMB_BITS;
129 temp[i] &= LIMB_MASK;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000130 }
H. Peter Anvin214f5492007-10-15 19:46:32 -0700131
132 dprintf(("%s=" MANT_FMT "_" MANT_FMT "\n", "temp", SOME_ARG(temp, 0),
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700133 SOME_ARG(temp, MANT_LIMBS)));
H. Peter Anvin214f5492007-10-15 19:46:32 -0700134
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700135 if (temp[0] & LIMB_TOP_BIT) {
136 for (i = 0; i < MANT_LIMBS; i++) {
137 to[i] = temp[i] & LIMB_MASK;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700138 }
139 dprintf(("%s=" MANT_FMT " (%i)\n", "prod", SOME_ARG(to, 0), 0));
140 return 0;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000141 } else {
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700142 for (i = 0; i < MANT_LIMBS; i++) {
143 to[i] = (temp[i] << 1) + !!(temp[i + 1] & LIMB_TOP_BIT);
H. Peter Anvin214f5492007-10-15 19:46:32 -0700144 }
145 dprintf(("%s=" MANT_FMT " (%i)\n", "prod", SOME_ARG(to, 0), -1));
H. Peter Anvine2c80182005-01-15 22:15:51 +0000146 return -1;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000147 }
148}
149
H. Peter Anvin214f5492007-10-15 19:46:32 -0700150/*
151 * ---------------------------------------------------------------------------
H. Peter Anvin2ef4aac2007-10-19 13:10:46 -0700152 * read an exponent; returns INT32_MAX on error
153 * ---------------------------------------------------------------------------
154 */
H. Peter Anvin3514ad02007-10-19 14:17:51 -0700155static int32_t read_exponent(const char *string, int32_t max)
H. Peter Anvin2ef4aac2007-10-19 13:10:46 -0700156{
157 int32_t i = 0;
158 bool neg = false;
H. Peter Anvin70653092007-10-19 14:42:29 -0700159
H. Peter Anvin2ef4aac2007-10-19 13:10:46 -0700160 if (*string == '+') {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400161 string++;
H. Peter Anvin2ef4aac2007-10-19 13:10:46 -0700162 } else if (*string == '-') {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400163 neg = true;
164 string++;
H. Peter Anvin2ef4aac2007-10-19 13:10:46 -0700165 }
166 while (*string) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400167 if (*string >= '0' && *string <= '9') {
168 i = (i * 10) + (*string - '0');
H. Peter Anvin70653092007-10-19 14:42:29 -0700169
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400170 /*
171 * To ensure that underflows and overflows are
172 * handled properly we must avoid wraparounds of
173 * the signed integer value that is used to hold
174 * the exponent. Therefore we cap the exponent at
175 * +/-5000, which is slightly more/less than
176 * what's required for normal and denormal numbers
177 * in single, double, and extended precision, but
178 * sufficient to avoid signed integer wraparound.
179 */
180 if (i > max)
181 i = max;
182 } else if (*string == '_') {
183 /* do nothing */
184 } else {
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300185 nasm_nonfatal("invalid character in floating-point constant %s: '%c'",
186 "exponent", *string);
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400187 return INT32_MAX;
188 }
189 string++;
H. Peter Anvin2ef4aac2007-10-19 13:10:46 -0700190 }
191
192 return neg ? -i : i;
193}
194
195/*
196 * ---------------------------------------------------------------------------
H. Peter Anvin214f5492007-10-15 19:46:32 -0700197 * convert
198 * ---------------------------------------------------------------------------
199 */
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700200static bool ieee_flconvert(const char *string, fp_limb *mant,
H. Peter Anvin214f5492007-10-15 19:46:32 -0700201 int32_t * exponent)
202{
203 char digits[MANT_DIGITS];
204 char *p, *q, *r;
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700205 fp_limb mult[MANT_LIMBS], bit;
206 fp_limb *m;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700207 int32_t tenpwr, twopwr;
208 int32_t extratwos;
209 bool started, seendot, warned;
H. Peter Anvin136dcdb2007-11-12 18:25:24 -0800210
211 warned = false;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700212 p = digits;
213 tenpwr = 0;
H. Peter Anvinfab3a6c2007-10-16 11:48:07 -0700214 started = seendot = false;
H. Peter Anvin136dcdb2007-11-12 18:25:24 -0800215
H. Peter Anvin214f5492007-10-15 19:46:32 -0700216 while (*string && *string != 'E' && *string != 'e') {
217 if (*string == '.') {
218 if (!seendot) {
219 seendot = true;
220 } else {
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300221 nasm_nonfatal("too many periods in floating-point constant");
H. Peter Anvin214f5492007-10-15 19:46:32 -0700222 return false;
223 }
224 } else if (*string >= '0' && *string <= '9') {
225 if (*string == '0' && !started) {
226 if (seendot) {
227 tenpwr--;
228 }
229 } else {
230 started = true;
231 if (p < digits + sizeof(digits)) {
232 *p++ = *string - '0';
233 } else {
234 if (!warned) {
H. Peter Anvin (Intel)df4d3422018-12-12 17:48:38 -0800235 nasm_warnf(WARN_FL_TOOLONG|ERR_PASS2,
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300236 "floating-point constant significand contains "
237 "more than %i digits", MANT_DIGITS);
H. Peter Anvin214f5492007-10-15 19:46:32 -0700238 warned = true;
239 }
240 }
241 if (!seendot) {
242 tenpwr++;
243 }
244 }
245 } else if (*string == '_') {
H. Peter Anvin214f5492007-10-15 19:46:32 -0700246 /* do nothing */
247 } else {
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300248 nasm_nonfatalf(ERR_PASS2,
249 "invalid character in floating-point constant %s: '%c'",
250 "significand", *string);
H. Peter Anvin214f5492007-10-15 19:46:32 -0700251 return false;
252 }
253 string++;
254 }
H. Peter Anvin70653092007-10-19 14:42:29 -0700255
H. Peter Anvin214f5492007-10-15 19:46:32 -0700256 if (*string) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400257 int32_t e;
H. Peter Anvin2ef4aac2007-10-19 13:10:46 -0700258
H. Peter Anvin214f5492007-10-15 19:46:32 -0700259 string++; /* eat the E */
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400260 e = read_exponent(string, 5000);
261 if (e == INT32_MAX)
262 return false;
263 tenpwr += e;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700264 }
265
266 /*
267 * At this point, the memory interval [digits,p) contains a
268 * series of decimal digits zzzzzzz, such that our number X
269 * satisfies X = 0.zzzzzzz * 10^tenpwr.
270 */
271 q = digits;
272 dprintf(("X = 0."));
273 while (q < p) {
274 dprintf(("%c", *q + '0'));
275 q++;
276 }
277 dprintf((" * 10^%i\n", tenpwr));
278
279 /*
280 * Now convert [digits,p) to our internal representation.
281 */
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700282 bit = LIMB_TOP_BIT;
283 for (m = mant; m < mant + MANT_LIMBS; m++) {
H. Peter Anvin214f5492007-10-15 19:46:32 -0700284 *m = 0;
285 }
286 m = mant;
287 q = digits;
288 started = false;
289 twopwr = 0;
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700290 while (m < mant + MANT_LIMBS) {
291 fp_limb carry = 0;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700292 while (p > q && !p[-1]) {
293 p--;
294 }
295 if (p <= q) {
296 break;
297 }
298 for (r = p; r-- > q;) {
299 int32_t i;
300 i = 2 * *r + carry;
301 if (i >= 10) {
302 carry = 1;
303 i -= 10;
304 } else {
305 carry = 0;
306 }
307 *r = i;
308 }
309 if (carry) {
310 *m |= bit;
311 started = true;
312 }
313 if (started) {
314 if (bit == 1) {
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700315 bit = LIMB_TOP_BIT;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700316 m++;
317 } else {
318 bit >>= 1;
319 }
320 } else {
321 twopwr--;
322 }
323 }
324 twopwr += tenpwr;
325
326 /*
327 * At this point, the 'mant' array contains the first frac-
328 * tional places of a base-2^16 real number which when mul-
329 * tiplied by 2^twopwr and 5^tenpwr gives X.
330 */
331 dprintf(("X = " MANT_FMT " * 2^%i * 5^%i\n", MANT_ARG, twopwr,
332 tenpwr));
333
334 /*
335 * Now multiply 'mant' by 5^tenpwr.
336 */
337 if (tenpwr < 0) { /* mult = 5^-1 = 0.2 */
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700338 for (m = mult; m < mult + MANT_LIMBS - 1; m++) {
339 *m = LIMB_BYTE(0xcc);
H. Peter Anvin214f5492007-10-15 19:46:32 -0700340 }
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700341 mult[MANT_LIMBS - 1] = LIMB_BYTE(0xcc)+1;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700342 extratwos = -2;
343 tenpwr = -tenpwr;
344
345 /*
346 * If tenpwr was 1000...000b, then it becomes 1000...000b. See
347 * the "ANSI C" comment below for more details on that case.
348 *
349 * Because we already truncated tenpwr to +5000...-5000 inside
350 * the exponent parsing code, this shouldn't happen though.
351 */
352 } else if (tenpwr > 0) { /* mult = 5^+1 = 5.0 */
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700353 mult[0] = (fp_limb)5 << (LIMB_BITS-3); /* 0xA000... */
354 for (m = mult + 1; m < mult + MANT_LIMBS; m++) {
H. Peter Anvin214f5492007-10-15 19:46:32 -0700355 *m = 0;
356 }
357 extratwos = 3;
358 } else {
359 extratwos = 0;
360 }
361 while (tenpwr) {
362 dprintf(("loop=" MANT_FMT " * 2^%i * 5^%i (%i)\n", MANT_ARG,
363 twopwr, tenpwr, extratwos));
364 if (tenpwr & 1) {
365 dprintf(("mant*mult\n"));
366 twopwr += extratwos + float_multiply(mant, mult);
367 }
368 dprintf(("mult*mult\n"));
369 extratwos = extratwos * 2 + float_multiply(mult, mult);
370 tenpwr >>= 1;
371
372 /*
373 * In ANSI C, the result of right-shifting a signed integer is
374 * considered implementation-specific. To ensure that the loop
375 * terminates even if tenpwr was 1000...000b to begin with, we
376 * manually clear the MSB, in case a 1 was shifted in.
377 *
378 * Because we already truncated tenpwr to +5000...-5000 inside
379 * the exponent parsing code, this shouldn't matter; neverthe-
380 * less it is the right thing to do here.
381 */
382 tenpwr &= (uint32_t) - 1 >> 1;
383 }
384
385 /*
386 * At this point, the 'mant' array contains the first frac-
387 * tional places of a base-2^16 real number in [0.5,1) that
388 * when multiplied by 2^twopwr gives X. Or it contains zero
389 * of course. We are done.
390 */
391 *exponent = twopwr;
392 return true;
393}
394
395/*
396 * ---------------------------------------------------------------------------
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700397 * operations of specific bits
398 * ---------------------------------------------------------------------------
399 */
400
401/* Set a bit, using *bigendian* bit numbering (0 = MSB) */
402static void set_bit(fp_limb *mant, int bit)
403{
404 mant[bit/LIMB_BITS] |= LIMB_TOP_BIT >> (bit & (LIMB_BITS-1));
405}
406
407/* Test a single bit */
408static int test_bit(const fp_limb *mant, int bit)
409{
410 return (mant[bit/LIMB_BITS] >> (~bit & (LIMB_BITS-1))) & 1;
411}
412
413/* Report if the mantissa value is all zero */
414static bool is_zero(const fp_limb *mant)
415{
416 int i;
417
418 for (i = 0; i < MANT_LIMBS; i++)
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400419 if (mant[i])
420 return false;
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700421
422 return true;
423}
424
425/*
426 * ---------------------------------------------------------------------------
H. Peter Anvin214f5492007-10-15 19:46:32 -0700427 * round a mantissa off after i words
428 * ---------------------------------------------------------------------------
429 */
430
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400431#define ROUND_COLLECT_BITS \
432 do { \
433 m = mant[i] & (2*bit-1); \
434 for (j = i+1; j < MANT_LIMBS; j++) \
435 m = m | mant[j]; \
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700436 } while (0)
H. Peter Anvin214f5492007-10-15 19:46:32 -0700437
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400438#define ROUND_ABS_DOWN \
439 do { \
440 mant[i] &= ~(bit-1); \
441 for (j = i+1; j < MANT_LIMBS; j++) \
442 mant[j] = 0; \
443 return false; \
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700444 } while (0)
H. Peter Anvin214f5492007-10-15 19:46:32 -0700445
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400446#define ROUND_ABS_UP \
447 do { \
448 mant[i] = (mant[i] & ~(bit-1)) + bit; \
449 for (j = i+1; j < MANT_LIMBS; j++) \
450 mant[j] = 0; \
451 while (i > 0 && !mant[i]) \
452 ++mant[--i]; \
453 return !mant[0]; \
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700454 } while (0)
H. Peter Anvin214f5492007-10-15 19:46:32 -0700455
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700456static bool ieee_round(bool minus, fp_limb *mant, int bits)
H. Peter Anvin214f5492007-10-15 19:46:32 -0700457{
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700458 fp_limb m = 0;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700459 int32_t j;
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700460 int i = bits / LIMB_BITS;
461 int p = bits % LIMB_BITS;
462 fp_limb bit = LIMB_TOP_BIT >> p;
463
464 if (rc == FLOAT_RC_NEAR) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400465 if (mant[i] & bit) {
466 mant[i] &= ~bit;
467 ROUND_COLLECT_BITS;
468 mant[i] |= bit;
469 if (m) {
470 ROUND_ABS_UP;
471 } else {
472 if (test_bit(mant, bits-1)) {
473 ROUND_ABS_UP;
474 } else {
475 ROUND_ABS_DOWN;
476 }
477 }
478 } else {
479 ROUND_ABS_DOWN;
480 }
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700481 } else if (rc == FLOAT_RC_ZERO ||
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400482 rc == (minus ? FLOAT_RC_UP : FLOAT_RC_DOWN)) {
483 ROUND_ABS_DOWN;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700484 } else {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400485 /* rc == (minus ? FLOAT_RC_DOWN : FLOAT_RC_UP) */
486 /* Round toward +/- infinity */
487 ROUND_COLLECT_BITS;
488 if (m) {
489 ROUND_ABS_UP;
490 } else {
491 ROUND_ABS_DOWN;
492 }
H. Peter Anvin214f5492007-10-15 19:46:32 -0700493 }
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700494 return false;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700495}
496
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700497/* Returns a value >= 16 if not a valid hex digit */
498static unsigned int hexval(char c)
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700499{
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700500 unsigned int v = (unsigned char) c;
501
502 if (v >= '0' && v <= '9')
503 return v - '0';
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700504 else
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700505 return (v|0x20) - 'a' + 10;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700506}
507
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700508/* Handle floating-point numbers with radix 2^bits and binary exponent */
509static bool ieee_flconvert_bin(const char *string, int bits,
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400510 fp_limb *mant, int32_t *exponent)
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700511{
512 static const int log2tbl[16] =
H. Peter Anvin214f5492007-10-15 19:46:32 -0700513 { -1, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3 };
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700514 fp_limb mult[MANT_LIMBS + 1], *mp;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700515 int ms;
516 int32_t twopwr;
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700517 bool seendot, seendigit;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700518 unsigned char c;
H. Peter Anvin45f22922008-07-03 20:12:37 -0700519 const int radix = 1 << bits;
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700520 fp_limb v;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700521
522 twopwr = 0;
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700523 seendot = seendigit = false;
H. Peter Anvin82f9f632007-09-24 20:53:48 -0700524 ms = 0;
525 mp = NULL;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700526
527 memset(mult, 0, sizeof mult);
528
529 while ((c = *string++) != '\0') {
H. Peter Anvin214f5492007-10-15 19:46:32 -0700530 if (c == '.') {
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700531 if (!seendot)
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700532 seendot = true;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700533 else {
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300534 nasm_nonfatal("too many periods in floating-point constant");
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700535 return false;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700536 }
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700537 } else if ((v = hexval(c)) < (unsigned int)radix) {
H. Peter Anvin214f5492007-10-15 19:46:32 -0700538 if (!seendigit && v) {
539 int l = log2tbl[v];
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700540
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700541 seendigit = true;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700542 mp = mult;
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700543 ms = (LIMB_BITS-1)-l;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700544
H. Peter Anvin3646e7d2017-04-05 21:47:20 -0700545 twopwr += l+1-bits;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700546 }
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700547
H. Peter Anvin214f5492007-10-15 19:46:32 -0700548 if (seendigit) {
H. Peter Anvin79a070e2018-11-26 14:17:40 -0800549 if (ms < 0) {
550 /* Cast to fp_2limb as ms == -LIMB_BITS is possible. */
551 *mp |= (fp_2limb)v >> -ms;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700552 mp++;
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700553 if (mp > &mult[MANT_LIMBS])
554 mp = &mult[MANT_LIMBS]; /* Guard slot */
555 ms += LIMB_BITS;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700556 }
H. Peter Anvin79a070e2018-11-26 14:17:40 -0800557 *mp |= v << ms;
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700558 ms -= bits;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700559
H. Peter Anvin214f5492007-10-15 19:46:32 -0700560 if (!seendot)
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700561 twopwr += bits;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700562 } else {
563 if (seendot)
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700564 twopwr -= bits;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700565 }
566 } else if (c == 'p' || c == 'P') {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400567 int32_t e;
568 e = read_exponent(string, 20000);
569 if (e == INT32_MAX)
570 return false;
571 twopwr += e;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700572 break;
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400573 } else if (c == '_') {
574 /* ignore */
H. Peter Anvin214f5492007-10-15 19:46:32 -0700575 } else {
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300576 nasm_nonfatal("floating-point constant: `%c' is invalid character", c);
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700577 return false;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700578 }
579 }
580
581 if (!seendigit) {
H. Peter Anvin5aa689f2008-07-03 20:11:30 -0700582 memset(mant, 0, MANT_LIMBS*sizeof(fp_limb)); /* Zero */
H. Peter Anvin214f5492007-10-15 19:46:32 -0700583 *exponent = 0;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700584 } else {
H. Peter Anvin5aa689f2008-07-03 20:11:30 -0700585 memcpy(mant, mult, MANT_LIMBS*sizeof(fp_limb));
H. Peter Anvin214f5492007-10-15 19:46:32 -0700586 *exponent = twopwr;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700587 }
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700588
589 return true;
H. Peter Anvinfe2177f2007-09-18 18:31:26 -0700590}
591
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000592/*
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700593 * Shift a mantissa to the right by i bits.
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000594 */
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700595static void ieee_shr(fp_limb *mant, int i)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000596{
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700597 fp_limb n, m;
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700598 int j = 0;
599 int sr, sl, offs;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000600
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700601 sr = i % LIMB_BITS; sl = LIMB_BITS-sr;
602 offs = i/LIMB_BITS;
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700603
604 if (sr == 0) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400605 if (offs)
606 for (j = MANT_LIMBS-1; j >= offs; j--)
607 mant[j] = mant[j-offs];
Adam Majerc7c28352018-07-05 17:40:24 +0200608 } else if (MANT_LIMBS-1-offs < 0) {
609 j = MANT_LIMBS-1;
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700610 } else {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400611 n = mant[MANT_LIMBS-1-offs] >> sr;
612 for (j = MANT_LIMBS-1; j > offs; j--) {
613 m = mant[j-offs-1];
614 mant[j] = (m << sl) | n;
615 n = m >> sr;
616 }
617 mant[j--] = n;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000618 }
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700619 while (j >= 0)
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400620 mant[j--] = 0;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000621}
622
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700623/* Produce standard IEEE formats, with implicit or explicit integer
624 bit; this makes the following assumptions:
625
626 - the sign bit is the MSB, followed by the exponent,
627 followed by the integer bit if present.
H. Peter Anvine31747e2007-09-18 17:50:34 -0700628 - the sign bit plus exponent fit in 16 bits.
629 - the exponent bias is 2^(n-1)-1 for an n-bit exponent */
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000630
H. Peter Anvine31747e2007-09-18 17:50:34 -0700631struct ieee_format {
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700632 int bytes;
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700633 int mantissa; /* Fractional bits in the mantissa */
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400634 int explicit; /* Explicit integer */
H. Peter Anvin214f5492007-10-15 19:46:32 -0700635 int exponent; /* Bits in the exponent */
H. Peter Anvine31747e2007-09-18 17:50:34 -0700636};
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000637
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700638/*
639 * The 16- and 128-bit formats are expected to be in IEEE 754r.
640 * AMD SSE5 uses the 16-bit format.
641 *
642 * The 32- and 64-bit formats are the original IEEE 754 formats.
643 *
644 * The 80-bit format is x87-specific, but widely used.
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700645 *
646 * The 8-bit format appears to be the consensus 8-bit floating-point
647 * format. It is apparently used in graphics applications.
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700648 */
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700649static const struct ieee_format ieee_8 = { 1, 3, 0, 4 };
650static const struct ieee_format ieee_16 = { 2, 10, 0, 5 };
651static const struct ieee_format ieee_32 = { 4, 23, 0, 8 };
652static const struct ieee_format ieee_64 = { 8, 52, 0, 11 };
653static const struct ieee_format ieee_80 = { 10, 63, 1, 15 };
654static const struct ieee_format ieee_128 = { 16, 112, 0, 15 };
H. Peter Anvine31747e2007-09-18 17:50:34 -0700655
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700656/* Types of values we can generate */
657enum floats {
658 FL_ZERO,
659 FL_DENORMAL,
660 FL_NORMAL,
661 FL_INFINITY,
662 FL_QNAN,
663 FL_SNAN
664};
665
H. Peter Anvin63ebf162008-07-03 20:16:07 -0700666static int to_packed_bcd(const char *str, const char *p,
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400667 int s, uint8_t *result,
668 const struct ieee_format *fmt)
H. Peter Anvin45f22922008-07-03 20:12:37 -0700669{
670 int n = 0;
671 char c;
672 int tv = -1;
H. Peter Anvin45f22922008-07-03 20:12:37 -0700673
674 if (fmt != &ieee_80) {
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300675 nasm_nonfatal("packed BCD requires an 80-bit format");
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400676 return 0;
H. Peter Anvin45f22922008-07-03 20:12:37 -0700677 }
678
679 while (p >= str) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400680 c = *p--;
681 if (c >= '0' && c <= '9') {
682 if (tv < 0) {
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300683 if (n == 9)
684 nasm_warnf(ERR_PASS2, "packed BCD truncated to 18 digits");
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400685 tv = c-'0';
686 } else {
687 if (n < 9)
688 *result++ = tv + ((c-'0') << 4);
689 n++;
690 tv = -1;
691 }
692 } else if (c == '_') {
693 /* do nothing */
694 } else {
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300695 nasm_nonfatal("invalid character `%c' in packed BCD constant", c);
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400696 return 0;
697 }
H. Peter Anvin45f22922008-07-03 20:12:37 -0700698 }
699 if (tv >= 0) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400700 if (n < 9)
701 *result++ = tv;
702 n++;
H. Peter Anvin45f22922008-07-03 20:12:37 -0700703 }
704 while (n < 9) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400705 *result++ = 0;
706 n++;
H. Peter Anvin45f22922008-07-03 20:12:37 -0700707 }
708 *result = (s < 0) ? 0x80 : 0;
709
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400710 return 1; /* success */
H. Peter Anvin45f22922008-07-03 20:12:37 -0700711}
712
713static int to_float(const char *str, int s, uint8_t *result,
H. Peter Anvin214f5492007-10-15 19:46:32 -0700714 const struct ieee_format *fmt)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000715{
H. Peter Anvinf7bd02a2008-01-21 16:19:52 -0800716 fp_limb mant[MANT_LIMBS];
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700717 int32_t exponent = 0;
H. Peter Anvin45f22922008-07-03 20:12:37 -0700718 const int32_t expmax = 1 << (fmt->exponent - 1);
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700719 fp_limb one_mask = LIMB_TOP_BIT >>
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400720 ((fmt->exponent+fmt->explicit) % LIMB_BITS);
H. Peter Anvin45f22922008-07-03 20:12:37 -0700721 const int one_pos = (fmt->exponent+fmt->explicit)/LIMB_BITS;
H. Peter Anvine31747e2007-09-18 17:50:34 -0700722 int i;
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700723 int shift;
724 enum floats type;
725 bool ok;
H. Peter Anvin45f22922008-07-03 20:12:37 -0700726 const bool minus = s < 0;
727 const int bits = fmt->bytes * 8;
728 const char *strend;
729
H. Peter Anvinc5136902018-06-15 18:20:17 -0700730 nasm_assert(str[0]);
H. Peter Anvin45f22922008-07-03 20:12:37 -0700731
732 strend = strchr(str, '\0');
733 if (strend[-1] == 'P' || strend[-1] == 'p')
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400734 return to_packed_bcd(str, strend-2, s, result, fmt);
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000735
H. Peter Anvinf48bc6f2007-09-18 21:55:56 -0700736 if (str[0] == '_') {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400737 /* Special tokens */
H. Peter Anvine31747e2007-09-18 17:50:34 -0700738
H. Peter Anvin214f5492007-10-15 19:46:32 -0700739 switch (str[2]) {
740 case 'n': /* __nan__ */
741 case 'N':
742 case 'q': /* __qnan__ */
743 case 'Q':
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400744 type = FL_QNAN;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700745 break;
746 case 's': /* __snan__ */
747 case 'S':
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400748 type = FL_SNAN;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700749 break;
750 case 'i': /* __infinity__ */
751 case 'I':
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400752 type = FL_INFINITY;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700753 break;
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400754 default:
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300755 nasm_nonfatal("internal error: unknown FP constant token `%s'", str);
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400756 type = FL_QNAN;
757 break;
H. Peter Anvin214f5492007-10-15 19:46:32 -0700758 }
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000759 } else {
H. Peter Anvinc65a2f62007-10-22 17:34:10 -0700760 if (str[0] == '0') {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400761 switch (str[1]) {
762 case 'x': case 'X':
763 case 'h': case 'H':
764 ok = ieee_flconvert_bin(str+2, 4, mant, &exponent);
765 break;
766 case 'o': case 'O':
767 case 'q': case 'Q':
768 ok = ieee_flconvert_bin(str+2, 3, mant, &exponent);
769 break;
770 case 'b': case 'B':
771 case 'y': case 'Y':
772 ok = ieee_flconvert_bin(str+2, 1, mant, &exponent);
773 break;
774 case 'd': case 'D':
775 case 't': case 'T':
776 ok = ieee_flconvert(str+2, mant, &exponent);
777 break;
778 case 'p': case 'P':
779 return to_packed_bcd(str+2, strend-1, s, result, fmt);
780 default:
781 /* Leading zero was just a zero? */
782 ok = ieee_flconvert(str, mant, &exponent);
783 break;
784 }
785 } else if (str[0] == '$') {
786 ok = ieee_flconvert_bin(str+1, 4, mant, &exponent);
787 } else {
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700788 ok = ieee_flconvert(str, mant, &exponent);
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400789 }
H. Peter Anvin214f5492007-10-15 19:46:32 -0700790
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400791 if (!ok) {
792 type = FL_QNAN;
793 } else if (mant[0] & LIMB_TOP_BIT) {
H. Peter Anvin214f5492007-10-15 19:46:32 -0700794 /*
795 * Non-zero.
796 */
797 exponent--;
798 if (exponent >= 2 - expmax && exponent <= expmax) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400799 type = FL_NORMAL;
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700800 } else if (exponent > 0) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400801 if (pass0 == 1)
H. Peter Anvin (Intel)df4d3422018-12-12 17:48:38 -0800802 nasm_warnf(WARN_FL_OVERFLOW|ERR_PASS2,
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300803 "overflow in floating-point constant");
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400804 type = FL_INFINITY;
805 } else {
806 /* underflow or denormal; the denormal code handles
807 actual underflow. */
808 type = FL_DENORMAL;
809 }
810 } else {
811 /* Zero */
812 type = FL_ZERO;
813 }
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700814 }
H. Peter Anvin214f5492007-10-15 19:46:32 -0700815
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700816 switch (type) {
817 case FL_ZERO:
H. Peter Anvin125c8782007-10-16 11:32:58 -0700818 zero:
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400819 memset(mant, 0, sizeof mant);
820 break;
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700821
822 case FL_DENORMAL:
823 {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400824 shift = -(exponent + expmax - 2 - fmt->exponent)
825 + fmt->explicit;
826 ieee_shr(mant, shift);
827 ieee_round(minus, mant, bits);
828 if (mant[one_pos] & one_mask) {
829 /* One's position is set, we rounded up into normal range */
830 exponent = 1;
831 if (!fmt->explicit)
832 mant[one_pos] &= ~one_mask; /* remove explicit one */
833 mant[0] |= exponent << (LIMB_BITS-1 - fmt->exponent);
834 } else {
835 if (daz || is_zero(mant)) {
836 /* Flush denormals to zero */
H. Peter Anvin (Intel)df4d3422018-12-12 17:48:38 -0800837 nasm_warnf(WARN_FL_UNDERFLOW|ERR_PASS2,
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300838 "underflow in floating-point constant");
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400839 goto zero;
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300840 } else
H. Peter Anvin (Intel)df4d3422018-12-12 17:48:38 -0800841 nasm_warnf(WARN_FL_DENORM|ERR_PASS2,
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300842 "denormal floating-point constant");
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400843 }
844 break;
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700845 }
846
847 case FL_NORMAL:
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400848 exponent += expmax - 1;
849 ieee_shr(mant, fmt->exponent+fmt->explicit);
850 ieee_round(minus, mant, bits);
851 /* did we scale up by one? */
852 if (test_bit(mant, fmt->exponent+fmt->explicit-1)) {
853 ieee_shr(mant, 1);
854 exponent++;
855 if (exponent >= (expmax << 1)-1) {
H. Peter Anvin (Intel)df4d3422018-12-12 17:48:38 -0800856 nasm_warnf(WARN_FL_OVERFLOW|ERR_PASS2,
Cyrill Gorcunov194f9332018-12-01 20:01:40 +0300857 "overflow in floating-point constant");
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400858 type = FL_INFINITY;
859 goto overflow;
860 }
861 }
H. Peter Anvin70653092007-10-19 14:42:29 -0700862
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400863 if (!fmt->explicit)
864 mant[one_pos] &= ~one_mask; /* remove explicit one */
865 mant[0] |= exponent << (LIMB_BITS-1 - fmt->exponent);
866 break;
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700867
868 case FL_INFINITY:
869 case FL_QNAN:
870 case FL_SNAN:
H. Peter Anvin125c8782007-10-16 11:32:58 -0700871 overflow:
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400872 memset(mant, 0, sizeof mant);
873 mant[0] = (((fp_limb)1 << fmt->exponent)-1)
874 << (LIMB_BITS-1 - fmt->exponent);
875 if (fmt->explicit)
876 mant[one_pos] |= one_mask;
877 if (type == FL_QNAN)
878 set_bit(mant, fmt->exponent+fmt->explicit+1);
879 else if (type == FL_SNAN)
880 set_bit(mant, fmt->exponent+fmt->explicit+fmt->mantissa);
881 break;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000882 }
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000883
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700884 mant[0] |= minus ? LIMB_TOP_BIT : 0;
H. Peter Anvin141d7cf2007-09-18 16:39:03 -0700885
H. Peter Anvinf7bd02a2008-01-21 16:19:52 -0800886 for (i = fmt->bytes - 1; i >= 0; i--)
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400887 *result++ = mant[i/LIMB_BYTES] >> (((LIMB_BYTES-1)-(i%LIMB_BYTES))*8);
H. Peter Anvine31747e2007-09-18 17:50:34 -0700888
889 return 1; /* success */
H. Peter Anvin141d7cf2007-09-18 16:39:03 -0700890}
891
H. Peter Anvin215186f2016-02-17 20:27:41 -0800892int float_const(const char *number, int sign, uint8_t *result, int bytes)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000893{
H. Peter Anvin141d7cf2007-09-18 16:39:03 -0700894 switch (bytes) {
H. Peter Anvin2ce02742007-10-29 20:20:12 -0700895 case 1:
896 return to_float(number, sign, result, &ieee_8);
H. Peter Anvin141d7cf2007-09-18 16:39:03 -0700897 case 2:
H. Peter Anvin214f5492007-10-15 19:46:32 -0700898 return to_float(number, sign, result, &ieee_16);
H. Peter Anvin141d7cf2007-09-18 16:39:03 -0700899 case 4:
H. Peter Anvin214f5492007-10-15 19:46:32 -0700900 return to_float(number, sign, result, &ieee_32);
H. Peter Anvin141d7cf2007-09-18 16:39:03 -0700901 case 8:
H. Peter Anvin214f5492007-10-15 19:46:32 -0700902 return to_float(number, sign, result, &ieee_64);
H. Peter Anvin141d7cf2007-09-18 16:39:03 -0700903 case 10:
H. Peter Anvin4da5b8c2007-10-16 10:32:57 -0700904 return to_float(number, sign, result, &ieee_80);
H. Peter Anvine31747e2007-09-18 17:50:34 -0700905 case 16:
H. Peter Anvin214f5492007-10-15 19:46:32 -0700906 return to_float(number, sign, result, &ieee_128);
H. Peter Anvin141d7cf2007-09-18 16:39:03 -0700907 default:
H. Peter Anvinc5136902018-06-15 18:20:17 -0700908 nasm_panic("strange value %d passed to float_const", bytes);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000909 return 0;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000910 }
911}
H. Peter Anvinf6c9e652007-10-16 14:40:27 -0700912
913/* Set floating-point options */
914int float_option(const char *option)
915{
916 if (!nasm_stricmp(option, "daz")) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400917 daz = true;
918 return 0;
H. Peter Anvinf6c9e652007-10-16 14:40:27 -0700919 } else if (!nasm_stricmp(option, "nodaz")) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400920 daz = false;
921 return 0;
H. Peter Anvinf6c9e652007-10-16 14:40:27 -0700922 } else if (!nasm_stricmp(option, "near")) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400923 rc = FLOAT_RC_NEAR;
924 return 0;
H. Peter Anvinf6c9e652007-10-16 14:40:27 -0700925 } else if (!nasm_stricmp(option, "down")) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400926 rc = FLOAT_RC_DOWN;
927 return 0;
H. Peter Anvinf6c9e652007-10-16 14:40:27 -0700928 } else if (!nasm_stricmp(option, "up")) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400929 rc = FLOAT_RC_UP;
930 return 0;
H. Peter Anvinf6c9e652007-10-16 14:40:27 -0700931 } else if (!nasm_stricmp(option, "zero")) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400932 rc = FLOAT_RC_ZERO;
933 return 0;
H. Peter Anvinf6c9e652007-10-16 14:40:27 -0700934 } else if (!nasm_stricmp(option, "default")) {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400935 rc = FLOAT_RC_NEAR;
936 daz = false;
937 return 0;
H. Peter Anvinf6c9e652007-10-16 14:40:27 -0700938 } else {
Cyrill Gorcunov1598a232009-10-11 13:17:52 +0400939 return -1; /* Unknown option */
H. Peter Anvinf6c9e652007-10-16 14:40:27 -0700940 }
941}