Skip to content
print.d 61.1 KiB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
/* -*- mode: c -*- */
/*
    print.d -- Print.
*/
/*
    Copyright (c) 1984, Taiichi Yuasa and Masami Hagiya.
    Copyright (c) 1990, Giuseppe Attardi.
    Copyright (c) 2001, Juan Jose Garcia Ripoll.
    Copyright (c) 2011-2012, Jean-Claude Beaudoin.

    MKCL is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 3 of the License, or (at your option) any later version.

    See file '../../Copyright' for full details.
*/

#include <mkcl/mkcl.h>
#include <mkcl/mkcl-math.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <stdio.h>
#include <float.h>
#ifndef _MSC_VER
#include <unistd.h>
#endif
#include <mkcl/internal.h>
#include <mkcl/mkcl-fenv.h>
#include <mkcl/bytecode.h>



/**********************************************************************/

#define	to_be_escaped(c) \
	(mkcl_core.standard_readtable->readtable.table[(c)&0377].syntax_type \
	 != mkcl_cat_constituent || \
	 mkcl_lower_case_p((c)&0377) || (c) == ':')

static bool object_will_print_as_hash(MKCL, mkcl_object x);
static mkcl_word search_print_circle(MKCL, mkcl_object x);
static bool potential_number_p(MKCL, mkcl_object s, mkcl_word base);

static void mkcl_FEprint_not_readable(MKCL, mkcl_object x) /*__attribute__((noreturn))*/;

static void
mkcl_FEprint_not_readable(MKCL, mkcl_object x)
{
  mk_cl_error(env, 3, @'print-not-readable', @':object', x);
}

static mkcl_object
stream_or_default_output(MKCL, mkcl_object stream)
{
  if (mkcl_Null(stream))
    return MKCL_SYM_VAL(env,@'*standard-output*');
  else if (stream == mk_cl_Ct)
    return MKCL_SYM_VAL(env,@'*terminal-io*');
  return stream;
}

mkcl_word
mkcl_print_base(MKCL)
{
  mkcl_object object = mkcl_symbol_value(env, @'*print-base*');
  mkcl_word base;
  if (!MKCL_FIXNUMP(object) || (base = mkcl_fixnum_to_word(object)) < 2 || base > 36) {
    MKCL_SETQ(env, @'*print-base*', MKCL_MAKE_FIXNUM(10));
    mkcl_FEerror(env, "~S is an illegal PRINT-BASE.", 1, object);
  }
  return base;
}

mkcl_word
mkcl_print_level(MKCL)
{
  mkcl_object object = mkcl_symbol_value(env, @'*print-level*');
  mkcl_word level;
  if (object == mk_cl_Cnil) {
    level = MKCL_MOST_POSITIVE_FIXNUM;
  } else if (MKCL_FIXNUMP(object)) {
    level = mkcl_fixnum_to_word(object);
    if (level < 0) {
    _MKCL_ERROR:	MKCL_SETQ(env, @'*print-level*', mk_cl_Cnil);
      mkcl_FEerror(env, "~S is an illegal PRINT-LEVEL.", 1, object);
    }
  } else if (mkcl_type_of(object) != mkcl_t_bignum) {
    goto _MKCL_ERROR;
  } else {
    level = MKCL_MOST_POSITIVE_FIXNUM;
  }
  return level;
}

mkcl_word
mkcl_print_length(MKCL)
{
  mkcl_object object = mkcl_symbol_value(env, @'*print-length*');
  mkcl_word length;
  if (object == mk_cl_Cnil) {
    length = MKCL_MOST_POSITIVE_FIXNUM;
  } else if (MKCL_FIXNUMP(object)) {
    length = mkcl_fixnum_to_word(object);
    if (length < 0) {
    _MKCL_ERROR:	MKCL_SETQ(env, @'*print-length*', mk_cl_Cnil);
      mkcl_FEerror(env, "~S is an illegal PRINT-LENGTH.", 1, object);
    }
  } else if (mkcl_type_of(object) != mkcl_t_bignum) {
    goto _MKCL_ERROR;
  } else {
    length = MKCL_MOST_POSITIVE_FIXNUM;
  }
  return length;
}

bool
mkcl_print_radix(MKCL)
{
  return mkcl_symbol_value(env, @'*print-radix*') != mk_cl_Cnil;
}

mkcl_object
mkcl_print_case(MKCL)
{
  mkcl_object output = mkcl_symbol_value(env, @'*print-case*');
  if (output != @':upcase' && output != @':downcase' &&
      output != @':capitalize') {
    MKCL_SETQ(env, @'*print-case*', @':downcase');
    mkcl_FEerror(env, "~S is an illegal PRINT-CASE.", 1, output);
  }
  return output;
}

bool
mkcl_print_gensym(MKCL)
{
  return mkcl_symbol_value(env, @'*print-gensym*') != mk_cl_Cnil;
}

bool
mkcl_print_array(MKCL)
{
  return mkcl_symbol_value(env, @'*print-array*') != mk_cl_Cnil;
}

bool
mkcl_print_readably(MKCL)
{
  return mkcl_symbol_value(env, @'*print-readably*') != mk_cl_Cnil;
}

bool
mkcl_print_escape(MKCL)
{
  return mkcl_symbol_value(env, @'*print-escape*') != mk_cl_Cnil;
}

bool
mkcl_print_circle(MKCL)
{
  return mkcl_symbol_value(env, @'*print-circle*') != mk_cl_Cnil;
}

static void
write_str(MKCL, const char *s, mkcl_object stream)
{
  while (*s != '\0')
    mkcl_write_char(env, *s++, stream);
}

static void
write_readable_pathname(MKCL, mkcl_object path, mkcl_object stream)
{
  mkcl_object l = mk_cl_list(env, 15,
			     @'make-pathname',
			     @':host', path->pathname.host,
			     @':device', path->pathname.device,
			     @':directory', mkcl_funcall1(env, @+'si::maybe-quote', path->pathname.directory),
			     @':name', path->pathname.name,
			     @':type', path->pathname.type,
			     @':version', path->pathname.version,
			     @':defaults', mk_cl_Cnil);
  write_str(env, "#.", stream);
  mk_si_write_object(env, l, stream);
}

static void
write_pathname(MKCL, mkcl_object path, mkcl_object stream)
{
  mkcl_object namestring = mkcl_namestring(env, path, FALSE);
  bool readably = mkcl_print_readably(env);
  if (namestring == mk_cl_Cnil) {
    if (readably) {
      write_readable_pathname(env, path, stream);
      return;
    }
    namestring = mkcl_namestring(env, path, TRUE);
    if (namestring == mk_cl_Cnil) {
      write_str(env, "#<Unprintable pathname>", stream);
      return;
    }
  }
  if (readably || mkcl_print_escape(env))
    write_str(env, "#P", stream);
  mk_si_write_ugly_object(env, namestring, stream);
}

static void
write_positive_fixnum(MKCL, mkcl_index i, int base, mkcl_index len, mkcl_object stream)
{
  /* The maximum number of digits is achieved for base 2 and it
     is always < MKCL_WORD_BITS, since we use at least one bit for
     tagging */
  short digits[MKCL_WORD_BITS];
  int j = 0;
  if (i == 0) {
    digits[j++] = '0';
  } else do {
      digits[j++] = mkcl_digit_char(i % base, base);
      i /= base;
    } while (i > 0);
  while (len-- > j)
    mkcl_write_char(env, '0', stream);
  while (j-- > 0)
    mkcl_write_char(env, digits[j], stream);
}

static void
write_decimal(MKCL, mkcl_word i, mkcl_object stream)
{
  write_positive_fixnum(env, i, 10, 0, stream);
}

static void
write_addr(MKCL, mkcl_object x, mkcl_object stream)
{
  mkcl_word i, j;

  i = (mkcl_index)x;
  for (j = sizeof(i)*8-4;  j >= 0;  j -= 4) {
    int k = (i>>j) & 0xf;
    if (k < 10)
      mkcl_write_char(env, '0' + k, stream);
    else
      mkcl_write_char(env, 'a' + k - 10, stream);
  }
}

static void
write_base(MKCL, int base, mkcl_object stream)
{
  if (base == 2)
    write_str(env, "#b", stream);
  else if (base == 8)
    write_str(env, "#o", stream);
  else if (base == 16)
    write_str(env, "#x", stream);
  else if (base >= 10) {
    mkcl_write_char(env, '#', stream);
    mkcl_write_char(env, base/10+'0', stream);
    mkcl_write_char(env, base%10+'0', stream);
    mkcl_write_char(env, 'r', stream);
  } else {
    mkcl_write_char(env, '#', stream);
    mkcl_write_char(env, base+'0', stream);
    mkcl_write_char(env, 'r', stream);
  }
}

/* The floating point precision is required to make the
   most-positive-long-float printed expression readable.
   If this is too small, then the rounded off fraction, may be too big
   to read */

/* Maximum number of significant digits required to represent accurately
 * a double or single float. */

#define TIMES_LOG10_2(val) (((val)*3)/10)  /* an integral approximation good to 0.35% as long as there is no overflow */
#define DBL_SIG ((TIMES_LOG10_2(DBL_MANT_DIG) + 1))
#define FLT_SIG ((TIMES_LOG10_2(FLT_MANT_DIG) + 1))

/* This is the maximum number of decimal digits that our numbers will have.
 * Notice that we leave some extra margin, to ensure that reading the number
 * again will produce the same floating point number.
 */

#define LDBL_SIG ((TIMES_LOG10_2(LDBL_MANT_DIG) + 1))
#define LDBL_MAX_DIGITS (LDBL_SIG + 3)
#define LDBL_EXPONENT_SIZE (1 + 1 + 4)

#define DBL_MAX_DIGITS (DBL_SIG + 3)
#define DBL_EXPONENT_SIZE (1 + 1 + 3) /* Exponent marker 'e' + sign + digits .*/


/* The sinificant digits + the possible sign + the decimal dot. */
#define LDBL_MANTISSA_SIZE (LDBL_MAX_DIGITS + 1 + 1)
/* Total estimated size that a floating point number can take. */
#define LDBL_SIZE (LDBL_MANTISSA_SIZE + LDBL_EXPONENT_SIZE)

/* The sinificant digits + the possible sign + the decimal dot. */
#define DBL_MANTISSA_SIZE (DBL_MAX_DIGITS + 1 + 1)
/* Total estimated size that a floating point number can take. */
#define DBL_SIZE (DBL_MANTISSA_SIZE + DBL_EXPONENT_SIZE)

#define LONG_EXP_STRING "Le"
#define LONG_G_EXP_STRING "Lg"

#define EXP_STRING "e"
#define G_EXP_STRING "g"
#define DBL_TYPE double

static int edit_long_double(MKCL, int n, long double d, int *sp, char *s, int *ep)
{
  char *exponent, buff[LDBL_SIZE + 1];
  int length;

  if (isnan(d) || !isfinite(d))
    mkcl_FEerror(env, "Can't print a non-number.", 0);
  if (!isnormal(d))
    mkcl_FEerror(env, "Can't print a subnormal number.", 0);
  {
    long double ld_abs = fabsl(d);

    if ((ld_abs < LDBL_MIN) || (LDBL_MAX < ld_abs))
      mkcl_FEerror(env, "Can't print a denormalized number.", 0);
  }
  if (n < -LDBL_MAX_DIGITS)
    n = LDBL_MAX_DIGITS;
  if (n < 0) {
    long double aux;
    n = -n;
    do {
      sprintf(buff, "%- *.*" LONG_EXP_STRING,
	      n + 1 + 1 + LDBL_EXPONENT_SIZE, n-1, d);
      errno = 0;
      aux = strtold(buff, NULL);
      if ( errno == ERANGE )
	{
	  char msg_pattern[] = "underflow or overflow: "
	                       "strtold in edit_long_double on: %s";
	  char msg[sizeof(buff) + sizeof(msg_pattern) + 16];
	  
	  sprintf(msg, msg_pattern, buff);
	  mkcl_C_lose(env, msg);
	}
      n++;
    } while (d != aux && n <= LDBL_MAX_DIGITS);
    n--;
  } else {
    sprintf(buff, "%- *.*" LONG_EXP_STRING, LDBL_SIZE,
	    (n <= LDBL_MAX_DIGITS)? (n-1) : (LDBL_MAX_DIGITS-1), d);
  }
  exponent = strchr(buff, 'e');

  /* Get the exponent */
  *ep = strtol(exponent+1, NULL, 10);

  /* Get the sign */
  *sp = (buff[0] == '-') ? -1 : +1;

  /* Get the digits of the mantissa */
  buff[2] = buff[1];

  /* Get the actual number of digits in the mantissa */
  length = exponent - (buff + 2);

  /* The output consists of a string {d1,d2,d3,...,dn}
     with all N digits of the mantissa. If we ask for more
     digits than there are, the last ones are set to zero. */
  if (n <= length) {
    memcpy(s, buff+2, n);
  } else {
    mkcl_index i;
    memcpy(s, buff+2, length);
    for (i = length;  i < n;  i++)
      s[i] = '0';
  }
  s[n] = '\0';
  return length;
}

static int edit_double(MKCL, int n, double d, int *sp, char *s, int *ep)
{
  char *exponent, buff[DBL_SIZE + 1];
  int length;

  if (isnan(d) || !isfinite(d))
    mkcl_FEerror(env, "Can't print a non-number.", 0);
  if (!isnormal(d))
    mkcl_FEerror(env, "Can't print a subnormal number.", 0);
  {
    double d_abs = fabs(d);

    if ((d_abs < DBL_MIN) || (DBL_MAX < d_abs))
      mkcl_FEerror(env, "Can't print a denormalized number.", 0);
  }
  if (n < -DBL_MAX_DIGITS)
    n = DBL_MAX_DIGITS;
  if (n < 0) {
    double aux = 0;
    n = -n + 1;
    do {
      sprintf(buff, "%- *.*" EXP_STRING, n + 1 + 1 + DBL_EXPONENT_SIZE, n-1, d);
      errno = 0;
      aux = strtod(buff, NULL);
      if ( errno == ERANGE )
	{
	  char msg_pattern[] = "underflow or overflow: "
	                       "strtod in edit_double on: %s";
	  char msg[sizeof(buff) + sizeof(msg_pattern) + 16];
	  
	  sprintf(msg, msg_pattern, buff);
	  mkcl_C_lose(env, msg);
	}
      n++;
    } while (d != aux && n <= DBL_MAX_DIGITS);
    n--;
  } else {
    sprintf(buff, "%- *.*" EXP_STRING, DBL_SIZE,
	    (n <= DBL_MAX_DIGITS)? (n-1) : (DBL_MAX_DIGITS-1), d);
  }
  exponent = strchr(buff, 'e');

  /* Get the exponent */
  *ep = strtol(exponent+1, NULL, 10);

  /* Get the sign */
  *sp = (buff[0] == '-') ? -1 : +1;

  /* Get the digits of the mantissa */
  buff[2] = buff[1];

  /* Get the actual number of digits in the mantissa */
  length = exponent - (buff + 2);

  /* The output consists of a string {d1,d2,d3,...,dn}
     with all N digits of the mantissa. If we ask for more
     digits than there are, the last ones are set to zero. */
  if (n <= length) {
    memcpy(s, buff+2, n);
  } else {
    mkcl_index i;
    memcpy(s, buff+2, length);
    for (i = length;  i < n;  i++)
      s[i] = '0';
  }
  s[n] = '\0';

  return length;
}

static void
write_long_double(MKCL, long double d, mkcl_character e, int n, mkcl_object stream, mkcl_object o)
{
  int exp;
  bool fe_inexact_on = FALSE;
  mkcl_object print_exactly_p = mkcl_symbol_value(env, @'si::*print-float-exactly*'); 

  if (mkcl_Null(print_exactly_p))
    {
      fe_inexact_on = FE_INEXACT & fegetexcept();
      if (fe_inexact_on)
	{
	  /* printf("\nwrite_long_double: turning off FE_INEXACT!\n"); fflush(NULL); */
	  fedisableexcept(FE_INEXACT);
	}
    }
  else
    { printf("\nwrite_long_double told to print exactly!\n"); fflush(NULL); }

  if (!mkcl_Null(mk_cl_fboundp(env, @'si::output-float')))
    {
      mkcl_funcall2(env, @+'si::output-float', o, stream);
    }
  else if (isnan(d)) {
    if (mkcl_print_readably(env)) {
      mkcl_FEprint_not_readable(env, mkcl_make_longfloat(env, d));
    }
    mkcl_funcall2(env, @+'si::output-float-nan', o, stream);
  }
  else if (!isfinite(d)) {
    mkcl_funcall2(env, @+'si::output-float-infinity', o, stream);
  }
  else {
    if (d < 0) {
      mkcl_write_char(env, '-', stream);
      d = -d;
    }
    if (d == 0.0) {
#if defined(MKCL_SIGNED_ZERO) && defined(signbit)
      if (signbit(d))
	write_str(env, "-0.0", stream);
      else
#endif
	write_str(env, "0.0", stream);
      exp = 0;
    } else if (d < 1e-3 || d > 1e7) {
      int sign;
      char buff[LDBL_MANTISSA_SIZE + 1];
      n = edit_long_double(env, -n, d, &sign, buff, &exp);
      mkcl_write_char(env, buff[0], stream);
      mkcl_write_char(env, '.', stream);
      for (;  --n > 1; ) {
	if (buff[n] != '0') {
	  break;
	}
	buff[n] = '\0';
      }
      write_str(env, buff+1, stream);
    } else {
      char buff[LDBL_MANTISSA_SIZE + 1];
      int i;
      long double aux;
      /* Print in fixed point notation with enough number of
       * digits to preserve all information when reading again
       */
      do {
	sprintf(buff, "%0*.*" LONG_G_EXP_STRING, LDBL_MANTISSA_SIZE, n, d);
	aux = strtod(buff, NULL);

	if (n < LDBL_SIG) aux = (double)aux; /* What is the use of this? JCB */
	if (n < DBL_SIG) aux = (float)aux; /* What is the use of this? JCB */

	n++;
      } while (aux != d && n <= LDBL_MAX_DIGITS);
      n--;
      /* We look for the first nonzero character. There is
       * always one because our floating point number is not
       * zero.*/
      for (i = 0; buff[i] == '0' && buff[i+1] != '.'; i++)
	;
      write_str(env, buff + i, stream);
      if (strchr(buff, '.') == 0) {
	write_str(env, ".0", stream);
      }
      exp = 0;
    }
    if (exp || e) {
      if (e == 0)
	e = 'E';
      mkcl_write_char(env, e, stream);
      if (exp < 0) {
	mkcl_write_char(env, '-', stream);
	exp = -exp;
      }
      write_decimal(env, exp, stream);
    }
  }

  feclearexcept(FE_INEXACT); /* Clear leftovers from casting. */ /* should it be FE_ALL_EXCEPT? JCB*/
  if (fe_inexact_on)
    {
      /* printf("\nwrite_long_double: turning on FE_INEXACT!\n"); fflush(NULL); */
      feenableexcept(FE_INEXACT);
    }

}

static void
write_double(MKCL, double d, mkcl_character e, int n, mkcl_object stream, mkcl_object o)
{
  int exp;
  bool fe_inexact_on = FALSE;
  mkcl_object print_exactly_p = mkcl_symbol_value(env, @'si::*print-float-exactly*'); 

  if (mkcl_Null(print_exactly_p))
    {
      fe_inexact_on = FE_INEXACT & fegetexcept();
      if (fe_inexact_on)
	{
	  /* printf("\nwrite_double: turning off FE_INEXACT!\n"); fflush(NULL); */
	  fedisableexcept(FE_INEXACT);
	}
    }
  else
    { printf("\nwrite_double told to print exactly!\n"); fflush(NULL); }

  if (!mkcl_Null(mk_cl_fboundp(env, @'si::output-float')))
    {
      mkcl_funcall2(env, @+'si::output-float', o, stream);
    }
  else if (isnan(d)) {
    if (mkcl_print_readably(env)) {
      mkcl_FEprint_not_readable(env, mkcl_make_doublefloat(env, d));
    }
    mkcl_funcall2(env, @+'si::output-float-nan', o, stream);
  }
  else if (!isfinite(d)) {
    mkcl_funcall2(env, @+'si::output-float-infinity', o, stream);
  }
  else {
    if (d < 0) {
      mkcl_write_char(env, '-', stream);
      d = -d;
    }
    if (d == 0.0) {
#if defined(MKCL_SIGNED_ZERO) && defined(signbit)
      if (signbit(d))
	write_str(env, "-0.0", stream);
      else
#endif
	write_str(env, "0.0", stream);
      exp = 0;
    } else if (d < 1e-3 || d > 1e7) {
      int sign;
      char buff[DBL_MANTISSA_SIZE + 1];
      n = edit_double(env, -n, d, &sign, buff, &exp);
      mkcl_write_char(env, buff[0], stream);
      mkcl_write_char(env, '.', stream);
      for (;  --n > 1; ) {
	if (buff[n] != '0') {
	  break;
	}
	buff[n] = '\0';
      }
      write_str(env, buff+1, stream);
    } else {
      char buff[DBL_MANTISSA_SIZE + 1];
      int i;
      double aux;
      /* Print in fixed point notation with enough number of
       * digits to preserve all information when reading again
       */
      do {
	sprintf(buff, "%0*.*" G_EXP_STRING, DBL_MANTISSA_SIZE, n, d);
	aux = strtod(buff, NULL);
	if (n < DBL_SIG) aux = (float)aux; /* What is the use of this? JCB */

	n++;
      } while (aux != d && n <= DBL_MAX_DIGITS);
      n--;
      /* We look for the first nonzero character. There is
       * always one because our floating point number is not
       * zero.*/
      for (i = 0; buff[i] == '0' && buff[i+1] != '.'; i++)
	;
      write_str(env, buff + i, stream);
      if (strchr(buff, '.') == 0) {
	write_str(env, ".0", stream);
      }
      exp = 0;
    }
    if (exp || e) {
      if (e == 0)
	e = 'E';
      mkcl_write_char(env, e, stream);
      if (exp < 0) {
	mkcl_write_char(env, '-', stream);
	exp = -exp;
      }
      write_decimal(env, exp, stream);
    }
  }

  feclearexcept(FE_INEXACT); /* Clear leftovers from casting. */ /* should it be FE_ALL_EXCEPT? JCB*/
  if (fe_inexact_on)
    {
      /* printf("\nwrite_double: turning on FE_INEXACT!\n"); fflush(NULL); */
      feenableexcept(FE_INEXACT);
    }

}


struct powers {
  mkcl_object number;
  mkcl_index n_digits;
  int base;
};

static void
do_write_integer(MKCL, mkcl_object x, struct powers *powers, mkcl_index len,
		 mkcl_object stream)
{
  mkcl_object left;
  do {
    if (MKCL_FIXNUMP(x)) {
      write_positive_fixnum(env, mkcl_fixnum_to_word(x), powers->base, len, stream);
      return;
    }
    while (mkcl_number_compare(env, x, powers->number) < 0) {
      if (len)
	write_positive_fixnum(env, 0, powers->base, len, stream);
      powers--;
    }
    left = mkcl_floor2(env, x, powers->number);
    x = MKCL_VALUES(1);
    if (len) len -= powers->n_digits;
    do_write_integer(env, left, powers-1, len, stream);
    len = powers->n_digits;
    powers--;
  } while(1);
}

static void
write_bignum(MKCL, mkcl_object x, mkcl_object stream)
{
  int base = mkcl_print_base(env);
  mkcl_index str_size = mpz_sizeinbase(x->big.big_num, base);
  mkcl_word num_powers = mkcl_word_bit_length(str_size-1);
#if 0
  struct powers powers[num_powers]; /* VLA */
#else
  mkcl_VLA(env, struct powers, powers, num_powers);
#endif
    mkcl_object p;
    mkcl_index i, n_digits;
    powers[0].number = p = MKCL_MAKE_FIXNUM(base);
    powers[0].n_digits = n_digits = 1;
    powers[0].base = base;
    for (i = 1; i < num_powers; i++) {
      powers[i].number = p = mkcl_times(env, p, p);
      powers[i].n_digits = n_digits = 2*n_digits;
      powers[i].base = base;
    }
    if (mkcl_minusp(env, x)) {
      mkcl_write_char(env, '-', stream);
      x = mkcl_negate(env, x);
    }
    do_write_integer(env, x, &powers[num_powers-1], 0, stream);
}

static bool
all_dots(MKCL, mkcl_object s)
{
  mkcl_index i;
  mkcl_index len = mkcl_string_length(env, s);
  for (i = 0;  i < len;  i++)
    if (mkcl_char(env, s, i) != '.')
      return 0;
  return 1;
}

static bool
needs_to_be_escaped(MKCL, mkcl_object s, mkcl_object readtable, mkcl_object print_case)
{
  int action = readtable->readtable.read_case;
  mkcl_index i;
  if (potential_number_p(env, s, mkcl_print_base(env)))
    return 1;
  /* The value of *PRINT-ESCAPE* is T. We need to check whether the
   * symbol name S needs to be escaped. This will happen if it has some
   * strange character, or if it has a lowercase character (because such
   * a character cannot be read with the standard readtable) or if the
   * string has to be escaped according to readtable case and the rules
   * of 22.1.3.3.2. */
  mkcl_index len = mkcl_string_length(env, s);
  for (i = 0; i < len;  i++) {
    mkcl_character c = mkcl_char(env, s, i);
    enum mkcl_chattrib syntax = mkcl_readtable_get(env, readtable, c, 0);
    if (syntax != mkcl_cat_constituent || mkcl_invalid_constituent_character_p(c) || (c) == ':')
      return 1;
    if ((action == mkcl_case_downcase) && mkcl_upper_case_p(c))
      return 1;
    if (mkcl_lower_case_p(c))
      return 1;
  }
  return 0;
}

#define needs_to_be_inverted(s) (mkcl_string_case(s) != 0)

static void
write_symbol_string(MKCL, mkcl_object s, int action, mkcl_object print_case,
		    mkcl_object stream, bool escape)
{
  mkcl_index i;
  bool capitalize;
  if (action == mkcl_case_invert) {
    if (!needs_to_be_inverted(s))
      action = mkcl_case_preserve;
  }
  if (escape)
    mkcl_write_char(env, '|', stream);
  capitalize = 1;

  mkcl_index len = mkcl_string_length(env, s);
  for (i = 0;  i < len;  i++) {
    int c = mkcl_char(env, s, i);
    if (escape) {
      if (c == '|' || c == '\\') {
	mkcl_write_char(env, '\\', stream);
      }
    } else if (action != mkcl_case_preserve) {
      if (mkcl_upper_case_p(c)) {
	if ((action == mkcl_case_invert) ||
	    ((action == mkcl_case_upcase) &&
	     ((print_case == @':downcase') ||
	      ((print_case == @':capitalize') && !capitalize))))
	  {
	    c = mkcl_char_downcase(c);
	  }
	capitalize = 0;
      } else if (mkcl_lower_case_p(c)) {
	if ((action == mkcl_case_invert) ||
	    ((action == mkcl_case_downcase) &&
	     ((print_case == @':upcase') ||
	      ((print_case == @':capitalize') && capitalize))))
	  {
	    c = mkcl_char_upcase(c);
	  }
	capitalize = 0;
      } else {
	capitalize = !mkcl_alphanumericp(c);
      }
    }
    mkcl_write_char(env, c, stream);
  }
  if (escape)
    mkcl_write_char(env, '|', stream);
}

static void
write_symbol(MKCL, mkcl_object x, mkcl_object stream)
{
  mkcl_object print_package = mkcl_symbol_value(env, @'si::*print-package*');
  mkcl_object readtable = mkcl_current_readtable(env);
  mkcl_object print_case = mkcl_print_case(env);
  mkcl_object package;
  mkcl_object name;
  int intern_flag;
  bool print_readably = mkcl_print_readably(env);

  if (mkcl_Null(x)) {
    package = mk_cl_Cnil_symbol->symbol.hpack;
    name = mk_cl_Cnil_symbol->symbol.name;
  } else {
    package = x->symbol.hpack;
    name = x->symbol.name;
  }

  if (!print_readably && !mkcl_print_escape(env)) {
    write_symbol_string(env, name, readtable->readtable.read_case,
			print_case, stream, 0);
    return;
  }
  /* From here on, print-escape is true which means that it should
   * be possible to recover the same symbol by reading it with
   * the standard readtable (which has readtable-case = :UPCASE)
   */
  if (mkcl_Null(package)) {
    if (mkcl_print_gensym(env) || print_readably)
      write_str(env, "#:", stream);
  } else if (package == mkcl_core.keyword_package) {
    mkcl_write_char(env, ':', stream);
  } else if ((print_package != mk_cl_Cnil && package != print_package)
	     || (mkcl_find_symbol(env, x, mkcl_current_package(env), &intern_flag)!=x
		 && x != mk_cl_Cnil_symbol)
	     || intern_flag == 0)
    {
      mkcl_object name = package->pack.name;
      write_symbol_string(env, name, readtable->readtable.read_case,
			  print_case, stream,
			  needs_to_be_escaped(env, name, readtable, print_case));
      if ((mkcl_find_symbol(env, x, package, &intern_flag) != x) && x != mk_cl_Cnil_symbol)
	{
#if 0
	  mkcl_lose(env, "can't print symbol"); /* A bit too radical. JCB */
#else
	  mkcl_FEerror(env, "Corrupted symbol, symbol-name = ~S", 1, mkcl_symbol_name(env, x));
#endif
	}
      if ((print_package != mk_cl_Cnil && package != print_package)
	  || intern_flag == MKCL_SYMBOL_IS_INTERNAL) {
	write_str(env, "::", stream);
      } else if (intern_flag == MKCL_SYMBOL_IS_EXTERNAL) {
	mkcl_write_char(env, ':', stream);
      } else {
	mkcl_FEerror(env, "Pathological symbol --- cannot print.", 0);
      }
    }
  write_symbol_string(env, name, readtable->readtable.read_case, print_case, stream,
		      needs_to_be_escaped(env, name, readtable, print_case) ||
		      all_dots(env, name));
}

static void
write_character(MKCL, int i, mkcl_object stream)
{
  if (!mkcl_print_escape(env) && !mkcl_print_readably(env)) {
    mkcl_write_char(env, i, stream);
  } else {
    write_str(env, "#\\", stream);
    if ((i > 0x020) && (i < 0x07F)) /* ASCII printable character? */
      {
	mkcl_write_char(env, i, stream);
      }
#if 0 /* This turns out to be a bad idea. JCB */
    else if ((0x0A0 < i) && (i <= 0x0FF)) /* Upper part of ISO-8859-1 printable character? */
      {
	mkcl_write_char(env, i, stream);
      }
#endif
    else if (((0 <= i) && (i <= 0x020)) || i == 0x07F) /* ASCII control character? */
      {
	mkcl_object name = mk_cl_char_name(env, MKCL_CODE_CHAR(i));
	if (mkcl_Null(name))
	  write_str(env, "U????", stream); /* Somehow we don't know its name! Should never happen. */
	else
	  write_str(env, (char*)name->base_string.self, stream);
      } 
    else
      {
	int  index = 0;
	char name[20] = { '\0' };
	
	if (i < 0) /* invalid negative code point character? */
	  sprintf(name, "U-????"); 
	else if (i < 0x010000) /* Are we confined to 16 bits? */
	  sprintf(name, "U%04x", i);
	else if (i < 0x0110000) /* valid Unicode character? */
	  sprintf(name, "U%06x", i);
	else
	  sprintf(name, "U+????"); /* character is above valid Unicode range. */
	while(name[index])
	  mkcl_write_char(env, name[index++], stream);
      }
  }
}

static void
write_array(MKCL, bool vector, mkcl_object x, mkcl_object stream)
{
  const mkcl_index *adims;
  mkcl_index subscripts[MKCL_ARANKLIM];
  mkcl_word n, j, m, k, i;
  mkcl_word print_length;
  mkcl_word print_level;
  bool readably = mkcl_print_readably(env);

  if (vector) {
    adims = &x->vector.fillp;
    n = 1;
  } else {
    adims = x->array.dims;
    n = x->array.rank;
  }
  if (readably) {
    print_length = MKCL_MOST_POSITIVE_FIXNUM;
    print_level = MKCL_MOST_POSITIVE_FIXNUM;
  } else {
    if (!mkcl_print_array(env)) {
      write_str(env, vector ? "#<vector " : "#<array ", stream);
      write_addr(env, x, stream);
      mkcl_write_char(env, '>', stream);
      return;
    }
    print_level = mkcl_print_level(env);
    print_length = mkcl_print_length(env);
  }
  mkcl_write_char(env, '#', stream);
  if (print_level == 0)
    return;
  if (readably) {
    mkcl_write_char(env, 'A', stream);
    mkcl_write_char(env, '(', stream);
    mk_si_write_object(env, mkcl_elttype_to_symbol(env, mkcl_array_elttype(env, x)), stream);
    mkcl_write_char(env, ' ', stream);
    if (n > 0) {
      mkcl_write_char(env, '(', stream);
      for (j=0; j<n; j++) {
	mk_si_write_object(env, MKCL_MAKE_FIXNUM(adims[j]), stream);
	if (j < n-1)
	  mkcl_write_char(env, ' ', stream);
      }
      mkcl_write_char(env, ')', stream);
    } else {
      mk_si_write_object(env, mk_cl_Cnil, stream);
    }
    mkcl_write_char(env, ' ', stream);
  } else if (!vector) {
    write_decimal(env, n, stream);
    mkcl_write_char(env, 'A', stream);
  }

  if (print_level >= n) {
    /* We can write the elements of the array */
    print_level -= n;
    mkcl_bds_bind(env, @'*print-level*', MKCL_MAKE_FIXNUM(print_level));
  } else {
    /* The elements of the array are not printed */
    n = print_level;
    print_level = -1;
  }

  for (j = 0;  j < n;  j++)
    subscripts[j] = 0;
  for (m = 0, j = 0;;) {
    for (i = j;  i < n;  i++) {
      if (subscripts[i] == 0) {
	mkcl_write_char(env, '(', stream);
	if (adims[i] == 0) {
	  mkcl_write_char(env, ')', stream);
	  
	  j = i-1;
	  k = 0;
	  goto INC;
	}