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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
|
/*###### eliminate use of malloc/free */
/* Multiple precision integer arithmetic for implementing BIGNUMS
in XLISP-PLUS. Writen by Tom Almy and placed in public domain.
Math algorithms for multiply and divide are based on those in Donald
Knuth's "Art of Computer Programming Volume 2: Seminumerical Algorithms". */
/* Numbers stored in arrays of unsigned shorts, in a S/M "big endian fashion"--
array[0] = sign (0 positive, 1 negative)
array[1] = most significant word
array[2] = next word...
array[N] = least significant word
The code insures that all generated values have no more than one
significant word =0, except that there is always at least two words.
Even with the signed magnitude organization, negative zero cannot be
generated.
The code assumes that a short is 16 bits and a long is 32 bits. IEEE
floating point and little-endian orgainzation assumed for the conversions
to/from floating point -- these would have to be recoded for other
environments.
*/
#include "xlisp.h"
#ifdef BIGNUMS
/* local declarations */
typedef BIGNUMDATA (*LOGFUNCTION) P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL VOID memallocfail(V);
LOCAL double setmant P2H(LVAL, int *);
LOCAL LVAL logbignum P3H(LVAL, LVAL, LOGFUNCTION);
LOCAL BIGNUMDATA andfcn P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL BIGNUMDATA iorfcn P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL BIGNUMDATA xorfcn P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL BIGNUMDATA eqvfcn P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL BIGNUMDATA nandfcn P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL BIGNUMDATA andc1fcn P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL BIGNUMDATA andc2fcn P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL BIGNUMDATA norfcn P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL BIGNUMDATA orc1fcn P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL BIGNUMDATA orc2fcn P2H(BIGNUMDATA, BIGNUMDATA);
LOCAL LVAL logbinary P1H(int);
LOCAL LVAL logbinary2 P1H(int);
LOCAL LVAL ashbignum P2H(LVAL, FIXTYPE);
LOCAL VOID memallocfail(V)
{
xlfail("memory allocation failure in bignum calculations");
}
LVAL copybignum P2C(LVAL, x, int, s)
{
/* returns a copy of bignum x with sign s */
LVAL b = newbignum(getbignumsize(x));
MEMCPY(getbignumarray(b), getbignumarray(x),
(getbignumsize(x)+1)*sizeof(BIGNUMDATA));
*getbignumarray(b) = (BIGNUMDATA) s;
return b;
}
int zeropbignum P1C(LVAL, x)
{
/* is the bignum zero? */
BIGNUMDATA *xd = getbignumarray(x);
return (getbignumsize(x)==2 && xd[1] == 0 && xd[2] == 0);
}
LVAL normalBignum P1C(LVAL, x)
{
/* fixes bignums with too many leading 0's */
LVAL newobj;
BIGNUMDATA *nd;
BIGNUMDATA *xd = getbignumarray(x);
int signx = *xd++;
int sizex = (int) getbignumsize(x);
while (sizex > 2 && *xd == 0) {
sizex--;
xd++;
}
if (sizex == 2 && xd[0] == 0 && xd[1] == 0 && n_bigzero != NULL)
return n_bigzero; /* actual value is zero */
xlprot1(x);
newobj = newbignum(sizex);
nd = getbignumarray(newobj);
*nd++ = (BIGNUMDATA) signx;
MEMCPY(nd, xd, sizex*sizeof(short));
xlpop();
return newobj;
}
int comparebignum P2C(LVAL, x, LVAL, y)
{
/* return -1 if x<y, 1 if x>y, else return 0 */
BIGNUMDATA *xd = getbignumarray(x);
BIGNUMDATA *yd = getbignumarray(y);
int signx = *xd++;
int signy = *yd++;
if (signx != signy) return (signx? -1 : 1); /* quick exit */
{
int sizex = (int) getbignumsize(x);
int sizey = (int) getbignumsize(y);
int i;
if (xd[0] == 0) { xd++; sizex--; };
if (yd[0] == 0) { yd++; sizey--; };
if (sizex != sizey) return ((sizex<sizey)^signx) ? -1 : 1;
for (i=0; i < sizex; i++) {
if (xd[i]!=yd[i]) return ((xd[i]<yd[i])^signx ? -1 : 1);
}
return 0;
}
}
/* Code from Luke Tierney */
#ifndef LONG_BIT
#define LONG_BIT 32
#endif
#ifndef FIXBIGDIGS
#define FIXBIGDIGS LONG_BIT / 16 /* = 2 for 32-bit long's */
#endif
#ifndef FLOATBIGDIGS
#define FLOATBIGDIGS 4
#endif
LVAL cvtfixbignum P1C(FIXTYPE, n)
{
/* TAA mod -- fixed so that abs(n) is first argument to convert */
return (n < 0 ? cvtulongbignum(-n, 1) : cvtulongbignum(n, 0));
}
LVAL cvtulongbignum P2C(unsigned long, n, int, sign)
{
LVAL x = newbignum(FIXBIGDIGS);
BIGNUMDATA *v = getbignumarray(x);
int i;
*v++ = (BIGNUMDATA) sign;
v += FIXBIGDIGS - 1; /* advance to point to least significant digit */
for (i = 0; i < FIXBIGDIGS; i++, n >>= 16)
*v-- = (BIGNUMDATA)(n & 0xffff);
return (FIXBIGDIGS > 2) ? normalBignum(x) : x;
}
LOCAL double setmant P2C(LVAL, x, int *, expo)
{
/* returns proper mantissa value for x, but with exponent in expo */
BIGNUMDATA *v = getbignumarray(x);
int sign = *v++, i;
double temp;
int size = (int) getbignumsize(x);
if (v[0] == 0) { v++; size--; };
if (size == 1 && v[0] == 0) { *expo = 0; return 0.0; }
for (i = 0, temp = 0.0; size > 0 && i < FLOATBIGDIGS; i++, v++, size--)
temp = LDEXP(temp, 16) + v[0];
temp = frexp(temp, expo);
if (size > 0) *expo += size * 16;
return (sign?-(double)temp : (double)temp);
}
FLOTYPE cvtbigratioflonum P2C(LVAL, num, LVAL, denom)
{
int expo1, expo2;
double f;
f = setmant(num, &expo1)/setmant(denom, &expo2);
return LDEXP(f, expo1-expo2);
}
FLOTYPE cvtratioflonum P1C(LVAL, ratio)
{
if (fixp(getnumer(ratio)) && fixp(getdenom(ratio)))
return getfixnum(getnumer(ratio))/
(FLOTYPE)getfixnum(getdenom(ratio));
else {
LVAL t1, t2;
xlstkcheck(2);
xlprotect(ratio);
xlprotect(t1);
if (fixp(t1 = getnumer(ratio))) t1 = cvtfixbignum(getfixnum(t1));
if (fixp(t2 = getdenom(ratio))) t2 = cvtfixbignum(getfixnum(t2));
xlpopn(2);
return cvtbigratioflonum(t1, t2);
}
}
FLOTYPE cvtbigflonum P1C(LVAL, x)
{
int expo;
double f;
f = setmant(x, &expo);
if (f == 0.0) return f;
return LDEXP(f, expo);
}
LVAL cvtflobignum P1C(FLOTYPE, n)
{
LVAL x;
BIGNUMDATA *v;
int expo, size, shift;
double mantissa;
#ifdef IEEEFP
if (! is_finite(n))
xlfail("Can't convert NaN or infinity to integer");
#endif
mantissa = frexp(n, &expo);
if (expo <= 31) return cvtfixbignum((long)n);
if (mantissa < 0) mantissa = -mantissa;
size = (expo + 15) / 16; /* must be at least 2 */
shift = 16 - (expo & 15);
x = newbignum(size);
v = getbignumarray(x);
/* set sign */
*v++ = (BIGNUMDATA) (n<0);
/* adjust the exponent */
if (shift < 16)
mantissa = LDEXP(mantissa, -shift);
/* compute bignum digits */
for (; size > 0 && mantissa != 0.0; size--, v++) {
mantissa = LDEXP(mantissa, 16);
*v = (BIGNUMDATA) mantissa;
mantissa -= *v;
}
return x;
}
int cvtbigfixnum P2C(LVAL, x, FIXTYPE *, n)
{
/* returns a success flag */
BIGNUMDATA *v = getbignumarray(x);
int sign = *v++;
int size = (int) getbignumsize(x);
FIXTYPE value;
unsigned long uvalue;
/* toss leading zero */
if (*v == 0 && size > 2) {
v++;
size--;
}
/* is it too big?? */
if (size > FIXBIGDIGS) return FALSE;
for (uvalue = 0; size > 0; size--, v++)
uvalue = (uvalue << 16) + v[0];
value = (long) uvalue;
if (sign) {
value = -value;
if (value > 0) return FALSE; /* negative value too big */
}
else if (value < 0) return FALSE; /* positive value too big */
*n = value;
return TRUE;
}
int cvtbigulong P2C(LVAL, x, unsigned long *, n)
{
/* returns a success flag */
BIGNUMDATA *v = getbignumarray(x);
int sign = *v++;
int size = (int) getbignumsize(x);
unsigned long uvalue;
/* negative values won't work */
if (sign) return FALSE;
/* toss leading zero */
if (*v == 0 && size > 2) {
v++;
size--;
}
/* is it too big?? */
if (size > FIXBIGDIGS) return FALSE;
for (uvalue = 0; size > 0; size--, v++)
uvalue = (uvalue << 16) + v[0];
*n = uvalue;
return TRUE;
}
LVAL cvtstrbignum P2C(char *, s, int, radix)
{
LVAL x;
BIGNUMDATA *v;
int sign=0, size, i;
unsigned int carry;
unsigned long temp;
if (*s == '\0') return n_bigzero;
if (*s == '-') {
sign = 1;
s++;
}
else if (*s == '+') s++;
while (*s == '0') s++; /* delete leading zeroes */
size = (int)(STRLEN(s)*log((double)radix)/log(65536.0)) + 1;
if (size==1) size = 2;
x = newbignum(size);
v = getbignumarray(x);
*v++ = (BIGNUMDATA) sign;
size--;
while((i=*s++)!=0) {
if (ISLOWER7(i)) i = toupper(i);
temp = (unsigned long)v[size] * radix +
(i > '9'? i - 'A' + 10 : i - '0');
carry = (unsigned int)(temp >> 16);
v[size] = (BIGNUMDATA) (temp & 0xffff);
for (i = size-1; i >= 0; i--) {
temp = (unsigned long)v[i]*radix + carry;
carry = (unsigned int)(temp >> 16);
v[i] = (BIGNUMDATA) (temp & 0xffff);
}
}
return x;
}
char *cvtbignumstr P2C(LVAL, x, int, radix)
{
/* returns MALLOCed string which must be freed by calling program */
/* radix must be in range 2-36 */
BIGNUMDATA *vx = getbignumarray(x);
BIGNUMDATA *v, *vv;
int zcheck = 0; /* check for zero */
int i;
int sign = *vx++;
int size = (int) getbignumsize(x);
long strsize = (long)(size*log(65536.0)/log((double)radix)) + 3;
int digits = (int)(log(65536.0)/log((double)radix)); /* digits per BIGNUMDATA */
BIGNUMDATA bradix = (BIGNUMDATA)(pow(radix, digits)+0.5); /* radix to use */
char *str, *cp;
if (strsize > MAXSLEN) xlfail("bignum too large to convert to string");
str = (char *) MALLOC(strsize);
if (str == NULL) memallocfail();
cp = str+(int)strsize; /* point to string end */
if (size == 2 && vx[0] == 0 && vx[1] == 0) { /* zero bignum */
str[0] = '0';
str[1] = '\0';
return str;
}
if ((vv = v = (BIGNUMDATA *)MALLOC(size*sizeof(short))) == NULL) {
/* out of memory */
MFREE(str);
memallocfail();
}
MEMCPY(v, vx, size*sizeof(short));
*--cp = '\0';
do {
unsigned long d;
BIGNUMDATA d2,q,r=0;
zcheck = -1;
if (bradix == 0) { /* base 2, 4 or 16, bradix axtually 0x10000 */
for (i = 0; i < size; i++) {
q = r;
r = v[i];
v[i] = q;
/* find first nonzero value */
if (zcheck==-1 && q != 0) zcheck = i;
}
}
else {
for (i = 0; i < size; i++) {
d = v[i] + ((unsigned long)r << 16); /* dividend */
q = (BIGNUMDATA) (d/bradix);
r = (BIGNUMDATA) (d%bradix);
/* set quotient and find first nonzero value */
v[i] = q;
if (zcheck==-1 && q != 0) zcheck = i;
}
}
d2 = r;
for (i = digits; i > 0; i--) {
if (d2==0 && zcheck < 0) break; /* no leading zeroes */
r = (BIGNUMDATA) (d2 % radix);
d2 = (BIGNUMDATA) (d2 / radix);
*--cp = (char)(r<10 ? r + '0' : r - 10 + 'A');
}
if (zcheck>0) { /* reduce dividend size if possible */
v += zcheck;
size -= zcheck;
}
} while (zcheck >= 0);
if (sign) *--cp = '-';
if (cp > str) STRCPY(str, cp); /* Delete extra space */
MFREE(vv);
return str;
}
LOCAL LVAL ashbignum P2C(LVAL, ux, FIXTYPE, count)
{
BIGNUMDATA *u = getbignumarray(ux);
int signu = *u++;
int usize = (int) getbignumsize(ux);
LVAL wx;
BIGNUMDATA *w;
BIGNUMDATA lowdata;
int wsize = 0; /* initialized so compiler doesn't complain */
int fullshift, bitshift;
int i,adj=0;
unsigned int carry;
unsigned long k;
if (count==0) return ux; /* no shift */
if (u[0] == 0) {u++; usize--;}
if (count>0) {
fullshift = (int)(count/16);
bitshift = (int)(count % 16);
k = usize + count/16 + (bitshift?1:0);
if (k > MAXVECLEN * 2) xlfail("shift too large");
wsize = (int)k;
}
else {
fullshift = (int)((-count)/16);
bitshift = (int)((-count) % 16);
k = usize + count/16 + (signu ? 1 : 0);
if (k<=0) { /* shift so big that it won't fit */
return (signu ? n_bigmone : n_bigzero);
}
wsize = (int)k;
if (wsize<2) {wsize=2; adj=1;}
}
wx = newbignum(wsize);
w = getbignumarray(wx);
*w++ = (BIGNUMDATA) signu;
if (count>0 && bitshift) {
w[0] = (BIGNUMDATA) (u[0] >> (16-bitshift));
for (i=1; i<usize; i++)
w[i] = (BIGNUMDATA)((u[i-1] << bitshift) + (u[i] >> (16-bitshift)));
w[usize] = (BIGNUMDATA) (u[usize-1] << bitshift);
}
else if (count > 0) { /* no bitshift */
MEMCPY(w, u, usize*sizeof(BIGNUMDATA));
}
else if (bitshift) { /* right shift with bitshift */
if (signu) { /* negative value being shifted */
lowdata = 0; /* if we "shift out" nonzero, need to subtract one
from the result */
for (i=usize-fullshift; i < usize; i++) lowdata |= u[i];
lowdata |= (BIGNUMDATA) (u[usize-fullshift-1] << (16-bitshift));
w[1] = (BIGNUMDATA) (u[0] >> bitshift);
for (i=2; i<wsize; i++)
w[i] = (BIGNUMDATA)((u[i-2] << (16-bitshift)) + (u[i-1] >> bitshift));
if (lowdata) {
carry = 1;
for (i=wsize-1; i>=0; i--) {
k = w[i] + carry;
carry = k > 0xffff;
w[i] = (BIGNUMDATA) k;
}
}
/* we might need to normalize the bignum */
if (wsize > 2 && w[0] == 0 && w[1] == 0)
wx = normalBignum(wx);
}
else {
w[adj] = (BIGNUMDATA) (u[0] >> bitshift);
for (i=1; i<wsize; i++)
w[i+adj] = (BIGNUMDATA)((u[i-1] << (16-bitshift)) + (u[i] >> bitshift));
}
}
else { /* right shift without bitshift */
if (signu) { /* negative value being shifted */
lowdata = 0; /* if we shift out nonzero, then we need to subtract
one from the result */
for (i=usize-fullshift; i < usize; i++) lowdata |= u[i];
MEMCPY(w+1,u,(wsize-1)*sizeof(BIGNUMDATA));
if (lowdata) {
carry = 1;
for (i=wsize-1; i>=0; i--) {
k = w[i] + carry;
carry = k > 0xffff;
w[i] = (BIGNUMDATA) k;
}
}
/* we might need to normalize the bignum */
if (wsize > 2 && w[0] == 0 && w[1] == 0)
wx = normalBignum(wx);
}
else MEMCPY(w+adj,u,wsize*sizeof(BIGNUMDATA));
}
return wx;
}
/* for this operation we must fake two's complement representation */
LOCAL LVAL logbignum P3C(LVAL, ux, LVAL, vx, LOGFUNCTION, logfcn)
{
BIGNUMDATA *u = getbignumarray(ux);
BIGNUMDATA *v = getbignumarray(vx);
BIGNUMDATA signu = (BIGNUMDATA) (*u++ ? 0xffff : 0);
BIGNUMDATA signv = (BIGNUMDATA) (*v++ ? 0xffff : 0);
int usize = (int) getbignumsize(ux);
int vsize = (int) getbignumsize(vx);
int wsize;
LVAL wx;
BIGNUMDATA *w;
/* sign (leading 1's) of result depend on logical function on
signs of operands */
BIGNUMDATA signw = logfcn(signu, signv);
int i, j, k, c1=1, c2=1, c3=1;
BIGNUMDATA n1, n2, n3;
unsigned long sum;
if (u[0] == 0) { u++; usize--; };
if (v[0] == 0) { v++; vsize--; };
wsize = (usize>vsize) ? usize : vsize;
if (signw) wsize++; /* may need 1 more for 2's complement */
if (wsize<2) wsize=2;
wx = newbignum(wsize);
w = getbignumarray(wx);
*w++ = (BIGNUMDATA) (signw != 0);
for (i=wsize-1, j=usize-1, k=vsize-1; i>=0; i--, j--, k--) {
if (j<0) n1 = signu;
else if (signu) { /* use 2's complement value */
sum = (unsigned long)(BIGNUMDATA)(~u[j]) + c1;
c1 = (int)(sum>>16);
n1 = (BIGNUMDATA)sum;
}
else n1 = u[j];
if (k<0) n2 = signv;
else if (signv) { /* use 2's complement value */
sum = (unsigned long)(BIGNUMDATA)(~v[k]) + c2;
c2 = (int)(sum>>16);
n2 = (BIGNUMDATA)sum;
}
else n2 = v[k];
n3 = logfcn(n1, n2);
if (signw) { /* use 2's complement value */
sum = (unsigned long)(BIGNUMDATA)(~n3) + c3;
c3 = (int)(sum>>16);
w[i] = (BIGNUMDATA) sum;
}
else w[i] = n3;
}
if (w[0]==0 && w[1]==0) {
if (wsize==2) getbignumsign(wx) = 0; /* force positive */
else wx = normalBignum(wx);
}
return wx;
}
LOCAL BIGNUMDATA andfcn P2C(BIGNUMDATA, x, BIGNUMDATA, y)
{
return x & y;
}
LOCAL BIGNUMDATA iorfcn P2C(BIGNUMDATA, x, BIGNUMDATA, y)
{
return x | y;
}
LOCAL BIGNUMDATA xorfcn P2C(BIGNUMDATA, x, BIGNUMDATA, y)
{
return x ^ y;
}
LOCAL BIGNUMDATA eqvfcn P2C(BIGNUMDATA, x, BIGNUMDATA, y)
{
return (BIGNUMDATA) ~(x ^ y);
}
LOCAL BIGNUMDATA nandfcn P2C(BIGNUMDATA, x, BIGNUMDATA, y)
{
return (BIGNUMDATA) ~(x & y);
}
LOCAL BIGNUMDATA norfcn P2C(BIGNUMDATA, x, BIGNUMDATA, y)
{
return (BIGNUMDATA) ~(x | y);
}
LOCAL BIGNUMDATA andc1fcn P2C(BIGNUMDATA, x, BIGNUMDATA, y)
{
return (BIGNUMDATA)((~x) & y);
}
LOCAL BIGNUMDATA andc2fcn P2C(BIGNUMDATA, x, BIGNUMDATA, y)
{
return (BIGNUMDATA) (x & (~y));
}
LOCAL BIGNUMDATA orc1fcn P2C(BIGNUMDATA, x, BIGNUMDATA, y)
{
return (BIGNUMDATA)((~x) | y);
}
LOCAL BIGNUMDATA orc2fcn P2C(BIGNUMDATA, x, BIGNUMDATA, y)
{
return (BIGNUMDATA) (x | (~y));
}
LVAL addsubbignum P3C(LVAL, ux, LVAL, vx, int, subvflag)
{
BIGNUMDATA *u = getbignumarray(ux);
BIGNUMDATA *v = getbignumarray(vx);
int signu = *u++;
int signv = *v++ ^ subvflag;
int usize = (int) getbignumsize(ux);
int vsize = (int) getbignumsize(vx);
int wsize;
LVAL wx;
BIGNUMDATA *w;
int j,k;
BIGNUMDATA carry;
unsigned long temp;
long temp2;
if (u[0] == 0) { u++; usize--; };
if (v[0] == 0) { v++; vsize--; };
if (signu == signv) {
/* Addition algorithm */
if (vsize > usize) { /* u is biggest */
BIGNUMDATA *temp1 = u;
int temp2 = usize;
u = v;
usize = vsize;
v = temp1;
vsize = temp2;
}
if ((u[0] > 32767) ||
(vsize==usize && v[0] > 32767)) {
wx = newbignum(usize+1);
w = getbignumarray(wx);
*w++ = (BIGNUMDATA) signu;
*w++ = 0; /* skip carry location */
}
else {
wx = newbignum(usize);
w = getbignumarray(wx);
*w++ = (BIGNUMDATA) signu;
}
carry = 0;
for (j = usize-1, k=vsize-1; j >=0; j--, k--) {
if (k>=0) temp = (unsigned long)u[j] + v[k] + carry;
else temp = (unsigned long)u[j] + carry;
w[j] = (BIGNUMDATA) (temp & 0xffff);
carry = (BIGNUMDATA) (temp >> 16);
}
if (carry != 0) *--w = carry;
return wx;
}
else { /* do a subtraction */
if (vsize > usize) { /* make u the biggest */
BIGNUMDATA *temp1 = u;
int temp2 = usize;
u = v;
usize = vsize;
v = temp1;
vsize = temp2;
signu ^= 1; /* complement sign of bigger */
}
else if (vsize == usize) { /* must find the biggest */
for (j = vsize; j > 0; j--) {
if (*u > *v) break;
if (*u < *v) { /* v is bigger so swap */
BIGNUMDATA *temp1 = u;
u = v;
v = temp1;
signu ^= 1;
break;
}
u++; v++; usize--; vsize--;
}
/* if values are the same, then we are finished */
if (j == 0) return n_bigzero;
}
wsize = usize;
if (usize < 2) wsize = 2;
wx = newbignum(wsize);
w = getbignumarray(wx);
*w++ = (BIGNUMDATA) signu;
if (usize==1) w++; /* skip leading cell */
carry = 0;
for (j = usize-1, k = vsize-1; j >=0; j--, k--) {
if (k>=0) temp2 = (long)u[j] - v[k] - carry;
else temp2 = (long)u[j] - carry;
w[j] = (BIGNUMDATA) (temp2 & 0xffff);
carry = (BIGNUMDATA) (temp2 < 0);
}
/* we might need to normalize the bignum */
if (wsize > 2 && w[0] == 0 && w[1] == 0) wx = normalBignum(wx);
return wx;
}
}
LVAL multbignum P2C(LVAL, ux, LVAL, vx)
{
BIGNUMDATA *u = getbignumarray(ux);
BIGNUMDATA *v = getbignumarray(vx);
int sign = *u++ ^ *v++; /* sign calculation */
int usize = (int) getbignumsize(ux);
int vsize = (int) getbignumsize(vx);
int j,i;
BIGNUMDATA k;
unsigned long t;
LVAL wx;
BIGNUMDATA *w;
if (zeropbignum(ux)) return ux; /* don't multiply if by zero */
if (zeropbignum(vx)) return vx; /* because result won't be normalized */
/* multiply by 1 will work, but much slower than if we special cased
it as well */
/* toss a leading 0, if any. system size must be at least 2, so
size of u and v cannot drop to less than 1. Product size cannot
drop to less than 2. Since routine can generate only one leading
zero in product, next multbig will delete it */
if (u[0] == 0) { u++; usize--; };
if (v[0] == 0) { v++; vsize--; };
wx = newbignum(usize+vsize);
w = getbignumarray(wx);
*w++ = (BIGNUMDATA) sign; /* sign is now taken care of */
for (j=vsize-1; j>=0; j--) {
for (k=0, i=usize-1; i>=0; i--) {
t = (unsigned long)(u[i])*v[j]+w[i+j+1]+k;
w[i+j+1] = (BIGNUMDATA) (t & 0xffff);
k = (BIGNUMDATA) (t >> 16);
}
w[j] = k;
}
return wx;
}
LVAL divbignum P3C(LVAL, ux, LVAL, vx, LVAL *, rem)
{
/* Doesn't check for division by zero */
BIGNUMDATA *u = getbignumarray(ux);
BIGNUMDATA *v = getbignumarray(vx);
BIGNUMDATA *temp;
int rsign = *u; /* sign of remainder */
int sign = *u++ ^ *v++; /* sign calculation */
int usize = (int) getbignumsize(ux);
int vsize = (int) getbignumsize(vx);
int rsize, qsize;
int j,i;
BIGNUMDATA k,k2,d,qest;
unsigned long t;
long t1;
LVAL qx, rx;
BIGNUMDATA *q, *r;
/* toss a leading 0, if any. system size must be at least 2, so
size of u and v cannot drop to less than 1. */
if (u[0] == 0) { u++; usize--; };
if (v[0] == 0) { v++; vsize--; };
if (usize < vsize) {
/* result is zero, with remainder being dividend */
*rem = rx = newbignum(usize = getbignumsize(ux));
MEMCPY(getbignumarray(rx), getbignumarray(ux),
sizeof(short)*(usize+1));
return n_bigzero;
}
/* Allocate space for results */
xlsave1(qx);
qsize = usize-vsize+1;
if (qsize < 2) qsize = 2;
qx = newbignum(qsize);
q = getbignumarray(qx);
*q++ = (BIGNUMDATA) sign;
if (qsize > usize-vsize+1) q++; /* unused entry */
rsize = vsize;
if (rsize < 2) rsize = 2;
*rem = rx = newbignum(rsize);
r = getbignumarray(rx);
*r++ = (BIGNUMDATA) rsign;
if (rsize > vsize) r++; /* unused entry */
if (vsize == 1) {
/* shortcut algorithm vsize=1, qsize=usize */
for (k=0, i=0; i<usize; i++) {
t = ((unsigned long)k<<16) + u[i]; /* dividend */
q[i] = (BIGNUMDATA) (t / v[0]);
k = (BIGNUMDATA) (t % v[0]);
}
r[0] = k;
if (k == 0) getbignumsign(*rem) = 0; /* force positive zero */
if (q[0]==0 && q[1]==0) {
if (qsize > 2) qx = normalBignum(qx);
else getbignumsign(qx) = 0;
}
xlpop();
return qx;
}
/* In long version, dividend and divisor are modified, so we need to
copy their data arrays and delete when done */
temp = (BIGNUMDATA *) MALLOC((usize+1)*sizeof(short));
if (temp == NULL) memallocfail();
MEMCPY(temp, u-1, (usize+1)*sizeof(short));
u = temp;
*u = 0;
temp = (BIGNUMDATA *) MALLOC(vsize*sizeof(short));
if (temp == NULL) {
MFREE(u);
memallocfail();
}
MEMCPY(temp, v, vsize*sizeof(short));
v = temp;
/* Normalize step */
d = (BIGNUMDATA) (((unsigned long) 65536L)/((unsigned long)(v[0]) + 1));
if (d>1) {
k = 0;
for (i=vsize-1; i>=0; i--) {
t = v[i]*(unsigned long)d + k;
v[i] = (BIGNUMDATA) (t & 0xffff);
k = (BIGNUMDATA) (t >> 16);
}
k = 0;
for (i=usize; i>=0; i--) {
t = u[i]*(unsigned long)d + k;
u[i] = (BIGNUMDATA) (t & 0xffff);
k = (BIGNUMDATA) (t >> 16);
}
}
for (j=0; j<usize-vsize+1; j++) {
/* loop on quotient cells */
/* estimate quotient cell */
if (u[j] == v[0]) qest = 65535L;
else {
qest = (BIGNUMDATA)(((((unsigned long)(u[j]))<<16) + u[j+1])/v[0]);
}
while ( (t = ((unsigned long)(u[j])<<16) + u[j+1] -
qest*(unsigned long)(v[0])) < 0x10000L &&
v[1]*(unsigned long)qest > (t <<16) + u[j+2]) {
qest--;
}
/* multiply and subtract */
k = k2 = 0;
for (i=vsize-1; i>=0; i--) {
t = qest*(unsigned long)v[i] + k; /* t is partial product */
k = (BIGNUMDATA)(t >> 16); /* upper part of product */
t1 = (long)u[i+j+1] - (long)(t & 0xffff) - (long)k2;
u[i+j+1] = (BIGNUMDATA)(t1 & 0xffff);
k2 = (BIGNUMDATA) (t1 < 0);
}
t1 = (long)u[j] - (long)(k&0xffff) - (long)k2;
u[j] = (BIGNUMDATA)(t1 & 0xffff);
if (t1 & 0xffff0000L) {
/* overshot */
qest--;
k=0;
for (i =vsize-1; i>=0; i--) {
t = u[i+j+1] + (unsigned long)k + (unsigned long)v[i];
u[i+j+1] = (BIGNUMDATA)(t & 0xffff);
k = (BIGNUMDATA) (t >> 16);
}
u[j] = (BIGNUMDATA) (u[j] + k);
}
q[j] = qest;
}
k = 0;
for (j=0; j<vsize; j++) { /* unnormalize remainder */
t = ((unsigned long)k << 16) + u[1+j+usize-vsize];
r[j] = (BIGNUMDATA) (t / d);
k = (BIGNUMDATA) (t % d);
}
if (r[0]==0 && r[1]==0) {
if (rsize > 2) *rem = normalBignum(rx);
else getbignumsign(*rem) = 0; /* force positive zero */
}
if (q[0]==0 && q[1]==0) {
if (qsize > 2) qx = normalBignum(qx);
else getbignumsign(qx) = 0;
}
MFREE(u);
MFREE(v);
xlpop();
return qx;
}
/**************************/
/* SUBRs for XLISP follow */
/**************************/
LVAL xintlen(V) /* integer length */
{
LVAL ux;
BIGNUMDATA *u;
BIGNUMDATA num;
int size, i;
FIXTYPE count=0;
ux = nextarg();
if (fixp(ux)) ux = cvtfixbignum(getfixnum(ux));
else if (!bignump(ux)) xlbadtype(ux);
xllastarg();
u = getbignumarray(ux);
size = getbignumsize(ux);
if (*u++) { /* negative -- we must work more */
long sum = 0;
int borrow = 1;
if (*u == 0) { u++; size--;}
for (i = size-1; i >=0; i--) {
sum = ((unsigned long)u[i]) - borrow;
borrow = sum < 0;
}
num = (BIGNUMDATA) sum;
if (num != 0) {
i = 16;
while ((num & 0x8000) == 0) {
i--;
num <<= 1;
}
count = i;
}
}
else {
if (*u == 0) { u++; size--;}
if (*u != 0) {
num = *u;
i = 16;
while ((num & 0x8000) == 0) {
i--;
num <<= 1;
}
count = i;
}
}
count += (size-1)*16L;
return cvfixnum(count);
}
LVAL xlogcount(V) /* count bits */
{
LVAL ux;
BIGNUMDATA *u;
BIGNUMDATA num;
int size, i;
FIXTYPE count=0;
ux = nextarg();
if (fixp(ux)) ux = cvtfixbignum(getfixnum(ux));
else if (!bignump(ux)) xlbadtype(ux);
xllastarg();
u = getbignumarray(ux);
size = getbignumsize(ux);
if (*u++) { /* negative -- we must work more */
long sum;
int borrow = 1, j;
for (j = size-1; j >=0; j--) {
sum = ((unsigned long)u[j]) - borrow;
num = (BIGNUMDATA) sum;
borrow = sum < 0;
for (i=16; i-- > 0; num >>=1)
count += num&1;
}
}
else {
while (size-- != 0)
for (num = *u++, i=16; i-- > 0; num >>= 1)
count += num&1;
}
return cvfixnum(count);
}
LVAL xlogbitp(V) /* bit position */
{
LVAL ux;
FIXTYPE pos, numpos;
BIGNUMDATA *u;
int bitpos;
pos = getfixnum(ux=xlgafixnum());
if (pos < 0) xlerror("must be non-negative", ux);
ux = nextarg();
xllastarg();
if (fixp(ux)) {
FIXTYPE val = getfixnum(ux);
if (pos > 31) return (val < 0 ? s_true : NIL);
return (((getfixnum(ux) >> (int)pos)&1) != 0 ? s_true : NIL);
}
if (!bignump(ux)) xlbadtype(ux);
u = getbignumarray(ux);
numpos = getbignumsize(ux) - (pos/16) - 1;
bitpos =(int) (pos % 16);
if (*u++) { /* negative -- in for more work! */
unsigned long sum = 0;
int carry = 1, i;
if (numpos < 0) return s_true;
for (i = getbignumsize(ux)-1; i >= numpos; i--) {
sum = (unsigned long)(BIGNUMDATA)(~u[i]) + carry;
carry = (int)(sum>>16);
}
return ((((BIGNUMDATA)sum) >> bitpos) & 1 ? s_true : NIL);
}
else {
if (numpos < 0) return NIL;
return ((u[(int)numpos]>>bitpos) & 1 ? s_true : NIL);
}
}
LVAL xash(V) /* arithmetic shift left */
{
LVAL arg;
FIXTYPE val;
xlprot1(arg); /* protect against garbage collection */
arg = xlgetarg();
/* we will only shift bignums */
if (fixp(arg)) arg = cvtfixbignum(getfixnum(arg));
else if (!bignump(arg)) xlbadtype(arg);
/* get the shift count */
val = getfixnum(xlgafixnum());
xllastarg();
/* do the work */
arg = ashbignum(arg,val);
xlpop();
return (cvtbigfixnum(arg, &val) ? cvfixnum(val) : arg);
}
LOCAL LVAL logbinary P1C(int, which)
{
/* logical operations will be only performed using bignums */
FIXTYPE temp;
LVAL val, arg;
/* protect our pointers */
xlstkcheck(2);
xlsave(val);
xlsave(arg);
if (!moreargs()) { /* return identity */
switch (which) {
case '=':
case '&': val = n_bigmone; break;
case '|':
case '^': val = n_bigzero; break;
}
}
else {
val = xlgetarg(); /* first argument */
/* arguments must be integers */
if (fixp(val)) val = cvtfixbignum(getfixnum(val));
else if (!bignump(val)) xlbadtype(val);
while (moreargs()) { /* process additional arguments */
arg = xlgetarg();
if (fixp(arg)) arg = cvtfixbignum(getfixnum(arg));
else if (!bignump(arg)) xlbadtype(arg);
switch (which) {
case '&': val = logbignum(val, arg, andfcn); break;
case '|': val = logbignum(val, arg, iorfcn); break;
case '^': val = logbignum(val, arg, xorfcn); break;
case '=': val = logbignum(val, arg, eqvfcn); break;
}
}
}
xlpopn(2);
return (cvtbigfixnum(val, &temp) ? cvfixnum(temp) : val);
}
LOCAL LVAL logbinary2 P1C(int, which)
{
/* logical operations will be only performed using bignums */
FIXTYPE temp;
LVAL arg1, arg2;
/* protect our pointers */
xlstkcheck(2);
xlprotect(arg1);
xlsave(arg2);
arg1 = xlgetarg(); /* first argument */
/* arguments must be integers */
if (fixp(arg1)) arg1 = cvtfixbignum(getfixnum(arg1));
else if (!bignump(arg1)) xlbadtype(arg1);
arg2 = xlgetarg(); /* second argument */
if (fixp(arg2)) arg2 = cvtfixbignum(getfixnum(arg2));
else if (!bignump(arg2)) xlbadtype(arg2);
xllastarg();
switch (which) {
case 'a': arg1 = logbignum(arg1, arg2, nandfcn); break;
case 'b': arg1 = logbignum(arg1, arg2, andc1fcn); break;
case 'c': arg1 = logbignum(arg1, arg2, andc2fcn); break;
case 'd': arg1 = logbignum(arg1, arg2, norfcn); break;
case 'e': arg1 = logbignum(arg1, arg2, orc1fcn); break;
case 'f': arg1 = logbignum(arg1, arg2, orc2fcn); break;
case 'g': arg1 = logbignum(arg1, arg2, andfcn);
xlpopn(2);
return ((zeropbignum(arg1) ? NIL : s_true));
}
xlpopn(2);
return (cvtbigfixnum(arg1, &temp) ? cvfixnum(temp) : arg1);
}
LVAL xlogand(V) { return (logbinary('&')); } /* logand */
LVAL xlogior(V) { return (logbinary('|')); } /* logior */
LVAL xlogxor(V) { return (logbinary('^')); } /* logxor */
LVAL xlogeqv(V) { return (logbinary('=')); } /* logeqv */
LVAL xlognand(V) {return (logbinary2('a')); } /* lognand */
LVAL xlogandc1(V) {return (logbinary2('b')); } /* logandc1 */
LVAL xlogandc2(V) {return (logbinary2('c')); } /* logandc2 */
LVAL xlognor(V) {return (logbinary2('d')); } /* lognor */
LVAL xlogorc1(V) {return (logbinary2('e')); } /* logorc1 */
LVAL xlogorc2(V) {return (logbinary2('f')); } /* logorc2 */
LVAL xlogtest(V) {return (logbinary2('g')); } /* logtest */
LVAL xlognot(V)
{
LVAL x;
x = xlgetarg();
xllastarg();
switch (ntype(x)) {
case FIXNUM:
return cvfixnum(~getfixnum(x));
case BIGNUM:
return logbignum(x, n_bigmone, xorfcn);
default:
return xlbadtype(x);
}
}
#endif /* ifdef BIGNUMS */
|