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
|
;;; CMPINLINE Open coding optimizer.
;;;
;; Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
;; Copyright (C) 2024 Camm Maguire
;; This file is part of GNU Common Lisp, herein referred to as GCL
;;
;; GCL is free software; you can redistribute it and/or modify it under
;; the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; GCL is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
;; License for more details.
;;
;; You should have received a copy of the GNU Library General Public License
;; along with GCL; see the file COPYING. If not, write to the Free Software
;; Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
(in-package :compiler)
;;; Pass 1 generates the internal form
;;; ( id info-object . rest )
;;; for each form encountered.
;;; Change changed-vars and referrred-vars slots in info structure to arrays
;;; for dramatic compilation speed improvements when the number of variables
;;; are large, as occurs at present in running the random-int-form tester.
;;; 20040320 CM
(defmacro eql-not-nil (x y) `(and ,x (eql ,x ,y)))
;; lay down code for a load time eval constant.
(defun name-sd1 (x)
(or (get x 'name-to-sd)
(setf (get x 'name-sd)
`(si::|#,| name-to-sd ',x))))
(defun s-print (n x a s)
(print-unreadable-object (x s)
(princ n s)
(princ " " s)
(princ x s)
(format s " ~x" a)))
(defstruct (info (:print-function (lambda (x s i) (s-print 'info (info-type x) (si::address x) s)))
(:copier old-copy-info))
(type t) ;;; Type of the form.
(flags 0 :type fixnum)
(ch nil :type list)
(ref-ccb nil :type list)
(ref-clb nil :type list)
(ref nil :type list)
(ch-ccb nil :type list)
)
(si::freeze-defstruct 'info)
;;; Old sp-change comment: Whether execution of the form may change the value of a special variable *VS*.
(defconstant +iflags+ '(side-effects provisional compiler args volatile sp-change))
(defmacro iflag-p (flags flag)
(let ((i (position flag +iflags+)))
(unless i (baboon))
`(logbitp ,i ,flags)))
(defmacro iflags (&rest flags)
(the (unsigned-byte #.(length +iflags+))
(reduce (lambda (y x &aux (i (position x +iflags+)))
(unless i (baboon))
(logior y (ash 1 i)))
flags :initial-value 0)))
(defmacro copy-ht (ht)
`(copy-list ,ht));nil ?
(defun copy-info (info)
(let ((new-info (old-copy-info info)))
(setf (info-ch new-info) (copy-ht (info-ch info))
(info-ref new-info) (copy-ht (info-ref info))
(info-ref-ccb new-info) (copy-ht (info-ref-ccb info))
(info-ref-clb new-info) (copy-ht (info-ref-clb info)))
new-info))
;; (defun copy-info (info)
;; (let ((new-info (old-copy-info info)))
;; (setf (info-ref new-info) (copy-ht (info-ref info))
;; (info-ch new-info) (copy-ht (info-ch info))
;; (info-blocks new-info) (copy-ht (info-blocks info))
;; (info-tags new-info) (copy-ht (info-tags info)))
;; (when *make-fast-ref*
;; (setf (info-vref new-info) (copy-ht (info-vref info))
;; (info-vref-ccb new-info) (copy-ht (info-vref-ccb info))
;; (info-vref-clb new-info) (copy-ht (info-vref-clb info))))
;; new-info))
;; (defun copy-info (info)
;; (let ((new-info (old-copy-info info)))
;; (setf (info-ref new-info) (copy-ht (info-ref info))
;; (info-ch new-info) (copy-ht (info-ch info))
;; (info-blocks new-info) (copy-ht (info-blocks info))
;; (info-tags new-info) (copy-ht (info-tags info))
;; (info-vref new-info) (copy-ht (info-vref info))
;; (info-vref-ccb new-info) (copy-ht (info-vref-ccb info))
;; (info-vref-clb new-info) (copy-ht (info-vref-clb info))
;; (info-bref new-info) (copy-ht (info-bref info))
;; (info-bref-ccb new-info) (copy-ht (info-bref-ccb info))
;; (info-bref-clb new-info) (copy-ht (info-bref-clb info))
;; (info-tref new-info) (copy-ht (info-tref info))
;; (info-tref-ccb new-info) (copy-ht (info-tref-ccb info))
;; (info-tref-clb new-info) (copy-ht (info-tref-clb info))
;; (info-fref new-info) (copy-ht (info-fref info))
;; (info-fref-ccb new-info) (copy-ht (info-fref-ccb info))
;; ; (info-fref-clb new-info) (copy-ht (info-fref-clb info))
;; )
;; new-info))
(defmacro push-ht (x ht)
`(pushnew ,x ,ht :test 'eq))
(defmacro do-ht ((v ht) &rest body)
`(dolist (,v ,ht) ,@body))
(defmacro in-ht (v ht)
`(member ,v ,ht :test 'eq))
(defmacro adjustable-ht (ht) ht)
(defmacro do-referred ((v info) &rest body)
`(progn
(do-ht (,v (info-ref-ccb ,info)) (when (var-p ,v) ,@body))
(do-ht (,v (info-ref-clb ,info)) (when (var-p ,v) ,@body))
(do-ht (,v (info-ref ,info)) (when (var-p ,v) ,@body))))
;; (defmacro do-referred-cb ((v info) &rest body)
;; `(progn
;; (do-ht (,v (info-ref-ccb ,info)) (when (var-p ,v) ,@body))
;; (do-ht (,v (info-ref-clb ,info)) (when (var-p ,v) ,@body))))
;; (defmacro do-referred ((v info) &rest body)
;; `(do-ht (,v (info-ref ,info)) ,@body))
(defmacro do-changed ((v info) &rest body)
`(do-ht (,v (info-ch ,info)) ,@body))
(defmacro is-referred (var info)
`(or
(in-ht ,var (info-ref-ccb ,info))
(in-ht ,var (info-ref-clb ,info))
(in-ht ,var (info-ref ,info))))
;; (defmacro is-referred (var info)
;; `(in-ht ,var (info-ref ,info)))
(defmacro is-changed (var info)
`(in-ht ,var (info-ch ,info)))
(defmacro push-referred (var info)
`(push-ht ,var (info-ref ,info)));FIXME
;; (defmacro push-referred (var info)
;; `(push-ht ,var (info-ref ,info)))
(defmacro push-changed (var info)
`(push-ht ,var (info-ch ,info)))
(defmacro changed-length (info)
`(length (info-ch ,info)))
;; (defmacro referred-length (info)
;; `(length (info-ref ,info)))
(declaim (inline in-env-p))
(defun in-env-p (x)
(typecase x
(symbol t)
(structure (or (member x *vars*) (member x *blocks*) (member x *tags*) (member x *funs*)))))
(defun add-info (to-info from-info)
;; Allow nil from-info without error CM 20031030
(unless from-info (return-from add-info to-info))
(macrolet ((mrg (field)
`(setf (,field to-info)
(union (,field to-info)
(remove-if-not 'in-env-p (,field from-info))
:test 'eq))))
(mrg info-ch)
(mrg info-ref-ccb)
(mrg info-ref-clb)
(mrg info-ref))
(setf (info-flags to-info) (logior (info-flags to-info) (info-flags from-info)))
(setf (info-ch-ccb to-info) (nunion (info-ch-ccb to-info) (info-ch-ccb from-info)))
to-info)
(defconstant +c1nil+ (list 'LOCATION (make-info :type (object-type nil)) nil))
(defmacro c1nil () `+c1nil+)
(defconstant +c1t+ (list 'LOCATION (make-info :type (object-type t)) t))
(defmacro c1t () `+c1t+)
(defun args-info-changed-vars (var forms)
(if (member (var-kind var) +c-local-var-types+)
(dolist (form forms)
(when (is-changed var (cadr form))
(return-from args-info-changed-vars t)))
(case (var-kind var)
((LEXICAL OBJECT)
(dolist (form forms)
(when (is-changed var (cadr form))
(return-from args-info-changed-vars t))))
(REPLACED nil)
(t (dolist (form forms nil)
(when (or (is-changed var (cadr form))
(iflag-p (info-flags (cadr form)) sp-change))
(return-from args-info-changed-vars t)))))))
;; Variable references in arguments can also be via replaced variables
;; (see gcl_cmplet.lsp) It appears that this is not necessary when
;; checking for changed variables, as matches would appear to require
;; that the variable not be replaced. It might be better to provide a
;; new slot in the var structure to point to the variable by which one
;; is replaced -- one would need to consider chains in such a case.
;; Here we match on the C variable reference, which should be complete.
;; 20040306 CM
(defun var-rep-loc (x)
(and
(eq (var-kind x) 'replaced)
(consp (var-loc x)) ;; may not be necessary, but vars can also be replaced to 'locations
;; see gcl_cmplet.lsp
(cadr (var-loc x))))
;;; Valid property names for open coded functions are:
;;; INLINE
;;; INLINE-SAFE safe-compile only
;;; INLINE-UNSAFE non-safe-compile only
;;;
;;; Each property is a list of 'inline-info's, where each inline-info is:
;;; ( types { type | boolean } side-effect new-object { string | function } ).
;;;
;;; For each open-codable function, open coding will occur only if there exits
;;; an appropriate property with the argument types equal to 'types' and with
;;; the return-type equal to 'type'. The third element
;;; is T if and only if side effects may occur by the call of the function.
;;; Even if *VALUE-TO-GO* is TRASH, open code for such a function with side
;;; effects must be included in the compiled code.
;;; The forth element is T if and only if the result value is a new Lisp
;;; object, i.e., it must be explicitly protected against GBC.
(defvar *inline-functions* nil)
(defvar *inline-blocks* 0)
;;; *inline-functions* holds:
;;; (...( function-name . inline-info )...)
;;;
;;; *inline-blocks* holds the number of temporary cvars used to save
;;; intermediate results during evaluation of inlined function calls.
;;; This variable is used to close up blocks introduced to declare static
;;; c variables.
(defun inc-inline-blocks()
(cond ((consp *inline-blocks*)
(incf (car *inline-blocks*)))
(t (incf *inline-blocks*))))
;; (defun loc-from-c2form (form type)
;; (case (car form)
;; (LOCATION (coerce-loc (caddr form) type))
;; (VAR
;; (cond ((args-info-changed-vars (caaddr form) (cdr forms))
;; (cond ((and (member (var-kind (caaddr form)) +c-local-var-types+)
;; (eq type (var-kind (caaddr form))))
;; (let* ((cvar (cs-push type t))(*value-to-go* `(cvar ,cvar)))
;; (wt-nl "{" (rep-type type) "V" cvar "= V"
;; (var-loc (caaddr form)) ";")
;; (inc-inline-blocks)
;; (list 'cvar cvar 'inline-args)))
;; ((let* ((temp (wt-c-push type))(*value-to-go* temp))
;; (wt-nl temp "= ")
;; (wt-var (caaddr form) (cadr (caddr form)))
;; (wt ";")
;; (coerce-loc temp type)))))
;; ((and (member (var-kind (caaddr form)) +c-local-var-types+)
;; (not (eq type (var-kind (caaddr form)))))
;; (let* ((temp (cs-push type))(*value-to-go* `(cvar ,temp)))
;; (wt-nl "V" temp " = "
;; (coerce-loc (cons 'var (caddr form)) type) ";")
;; (list 'cvar temp)))
;; ((coerce-loc (cons 'VAR (caddr form)) type))))
;; (CALL-GLOBAL
;; (if (let ((fname (caddr form)))
;; (and (inline-possible fname)
;; (setq ii (get-inline-info fname (cadddr form) (info-type (cadr form)) (sixth form)))
;; (progn (save-avma ii) t)))
;; (let ((loc (get-inline-loc ii (cadddr form))))
;; (cond
;; ((or (and (flag-p (caddr ii) ans)(not *c-gc*)); returns new object
;; (and (member (cadr ii) +c-local-var-types+)
;; (not (eq type (cadr ii)))))
;; (let* ((temp (cs-push type))(*value-to-go* `(cvar ,temp)))
;; (wt-nl "V" temp " = " (coerce-loc loc type) ";")
;; (list 'cvar temp)))
;; ((or (need-to-protect (cdr forms) (cdr types))
;; ;;if either new form or side effect,
;; ;;we don't want double evaluation
;; (and (flag-p (caddr ii) allocates-new-storage)
;; (or (null fun)
;; ;; Any fun such as list,list* which
;; ;; does not cause side effects or
;; ;; do double eval (ie not "@..")
;; ;; could go here.
;; (not (si::memq fun '(list-inline list*-inline)))))
;; (flag-p (caddr ii) is)
;; (and (flag-p (caddr ii) set) ; side-effectp
;; (not (null (cdr forms)))))
;; (let (cvar)
;; (cond
;; ((eq type t)
;; (setq cvar (cs-push))
;; (wt-nl "V" cvar "= ")
;; (let ((*value-to-go* `(cvar ,cvar))) (wt-loc loc)))
;; (t (setq cvar (cs-push type t))
;; (wt-nl "{" (rep-type type) "V" cvar "= ")
;; (let ((*value-to-go* `(cvar ,cvar)))
;; (funcall (or (cdr (assoc (promoted-c-type type) +wt-loc-alist+)) 'wt-loc) loc))
;; (inc-inline-blocks)))
;; (wt ";")
;; (list 'cvar cvar 'inline-args)))
;; (t (coerce-loc loc type))))
;; (let* ((temp (if *c-gc* (list 'cvar (cs-push)) (list 'vs (vs-push))))
;; (*value-to-go* temp))
;; (c2expr* form)
;; (coerce-loc temp type))))
;; (ub (list 'gen-loc (caddr form) (loc-from-c2form (fourth form) type)))
;; (structure-ref(coerce-loc-structure-ref (cdr form) type))
;; (SETQ
;; (let ((vref (caddr form))
;; (form1 (cadddr form)))
;; (let ((*value-to-go* (cons 'var vref))) (c2expr* form1))
;; (cond ((eq (car form1) 'LOCATION)
;; (coerce-loc (caddr form1) type))
;; (t (loc-from-c2form (list 'VAR (cadr form) vref))
;; (setq forms (list* form (list 'VAR (cadr form) vref) (cdr forms)))
;; ;; want (setq types (list* type type (cdr types)))
;; ;; but type is first of types
;; (setq types (list* type types))))))
;; ((let ((temp
;; (cond ((not *c-gc*) (list 'vs (vs-push)))
;; ((eq type t) (list 'cvar (cs-push)))
;; ((list 'var
;; (make-var :type type :loc (cs-push type)
;; :kind (or (car (member (promoted-c-type type) +c-local-var-types+)) 'object))
;; nil)))))
;; (let ((*value-to-go* temp))
;; (c2expr* form)
;; (coerce-loc temp type))))))
(defun wt-push-loc (loc type &optional expr)
(let* ((cv (cs-push type))
(*value-to-go* `(cvar ,cv)))
(if expr (c2expr* loc)
(wt-nl "V" cv "= " (coerce-loc loc type) ";"))
(coerce-loc *value-to-go* type)))
(defun lit-loc (key inl args bind safety oargs syms stores &aux (tp (get key 'cmp-lisp-type)))
(declare (ignore bind safety oargs stores))
(let ((sig (list (mapcar (lambda (x) (info-type (cadr x))) args) tp)))
(get-inline-loc (list (car sig) (cadr sig) (flags rfa) inl) args)))
(defun ub-loc (v &aux (c (car v)))
(ecase c
(var (cons c (caddr v)))
(lit (apply 'lit-loc (cddr v)))
(location (caddr v))));FIXME
(defun args-info-changed-info (i forms)
(do-referred (v i)
(when (var-p v)
(when (args-info-changed-vars v forms)
(return-from args-info-changed-info t)))))
(defun inline-args (forms types &optional fun &aux locs ii)
(do ((forms forms (cdr forms))
(types types (cdr types)))
((endp forms) (nreverse locs))
(let* ((form (car forms))
(type (car types))
(type (adj-cnum-tp type (info-type (cadr form)))))
(case (car form)
(LOCATION (push (coerce-loc (caddr form) type) locs))
(VAR
(cond ((args-info-changed-vars (caaddr form) (cdr forms))
(push (wt-push-loc (cons 'var (caddr form)) type) locs))
((and (member (var-kind (caaddr form)) +c-local-var-types+)
(not (type>= (var-kind (caaddr form)) type)))
; (not (eq type (var-kind (caaddr form)))))
(push (wt-push-loc (cons 'var (caddr form)) type) locs))
((push (coerce-loc (cons 'VAR (caddr form)) type) locs))))
(CALL-GLOBAL
(if (let ((fname (caddr form)))
(and (inline-possible fname)
(setq ii (get-inline-info
fname (cadddr form)
(info-type (cadr form)) (sixth form)))
(progn (save-avma ii) t)))
(let ((loc (get-inline-loc ii (cadddr form))))
(cond
((or (and (flag-p (caddr ii) ans)(not *c-gc*)); returns new object
(and (member (cadr ii) +c-local-var-types+)
(not (eq type (cadr ii)))))
(push (wt-push-loc loc type) locs))
((or (need-to-protect (cdr forms) (cdr types))
;;if either new form or side effect,
;;we don't want double evaluation
(and (flag-p (caddr ii) allocates-new-storage)
(or (null fun)
;; Any fun such as list,list* which
;; does not cause side effects or
;; do double eval (ie not "@..")
;; could go here.
(not (si::memq fun '(list-inline list*-inline)))))
(flag-p (caddr ii) is)
(and (flag-p (caddr ii) set) ; side-effectp
(not (null (cdr forms)))))
(push (wt-push-loc loc type) locs))
((push (coerce-loc loc type) locs))))
(push (wt-push-loc form type t) locs)))
(lit
(let* ((loc (apply 'lit-loc (cddr form)))
(loc (if (or (args-info-changed-info (cadr form) (cdr forms))
(member-if (lambda (x) (iflag-p (info-flags (cadr x)) side-effects)) (cdr forms)))
(wt-push-loc loc type) (coerce-loc loc type))))
(push loc locs)))
(ub (push (list 'gen-loc (caddr form) (ub-loc (fourth form))) locs))
(structure-ref (push (coerce-loc-structure-ref (cdr form) type) locs))
(SETQ
(let* ((vref (caddr form))
(form1 (cadddr form))
(v (car vref))
(vv (cons 'var vref))
(vt (if (or (eq t (var-ref v)) (consp (var-ref v)) (var-cb v) (eq (var-kind v) 'global)) vv *value-to-go*)))
(cond ((eq vt vv)
(let ((*value-to-go* vt)) (c2expr* form1))
(if (eq (car form1) 'LOCATION)
(push (coerce-loc (caddr form1) type) locs)
(setq forms (list* form (list 'VAR (cadr form) vref) (cdr forms))
types (list* type types))))
((setq forms (list* form form1 (cdr forms))
types (list* type types))))));; want (setq types (list* type type (cdr types))) but type is first of types
(otherwise (push (wt-push-loc form type t) locs))))))
;; (defun inline-args (forms types &optional fun &aux locs ii)
;; (do ((forms forms (cdr forms))
;; (types types (cdr types)))
;; ((endp forms) (nreverse locs))
;; (let* ((form (car forms))
;; (type (car types))
;; (type (adj-cnum-tp type (info-type (cadr form)))))
;; (case (car form)
;; (LOCATION (push (coerce-loc (caddr form) type) locs))
;; (VAR
;; (cond ((args-info-changed-vars (caaddr form) (cdr forms))
;; (push (wt-push-loc (cons 'var (caddr form)) type) locs))
;; ((and (member (var-kind (caaddr form)) +c-local-var-types+)
;; (not (type>= (var-kind (caaddr form)) type)))
;; ; (not (eq type (var-kind (caaddr form)))))
;; (push (wt-push-loc (cons 'var (caddr form)) type) locs))
;; ((push (coerce-loc (cons 'VAR (caddr form)) type) locs))))
;; (CALL-GLOBAL
;; (if (let ((fname (caddr form)))
;; (and (inline-possible fname)
;; (setq ii (get-inline-info
;; fname (cadddr form)
;; (info-type (cadr form)) (sixth form)))
;; (progn (save-avma ii) t)))
;; (let ((loc (get-inline-loc ii (cadddr form))))
;; (cond
;; ((or (and (flag-p (caddr ii) ans)(not *c-gc*)); returns new object
;; (and (member (cadr ii) +c-local-var-types+)
;; (not (eq type (cadr ii)))))
;; (push (wt-push-loc loc type) locs))
;; ((or (need-to-protect (cdr forms) (cdr types))
;; ;;if either new form or side effect,
;; ;;we don't want double evaluation
;; (and (flag-p (caddr ii) allocates-new-storage)
;; (or (null fun)
;; ;; Any fun such as list,list* which
;; ;; does not cause side effects or
;; ;; do double eval (ie not "@..")
;; ;; could go here.
;; (not (si::memq fun '(list-inline list*-inline)))))
;; (flag-p (caddr ii) is)
;; (and (flag-p (caddr ii) set) ; side-effectp
;; (not (null (cdr forms)))))
;; (push (wt-push-loc loc type) locs))
;; ((push (coerce-loc loc type) locs))))
;; (push (wt-push-loc form type t) locs)))
;; (lit (push (coerce-loc (apply 'lit-loc (cddr form)) type) locs))
;; (ub (push (list 'gen-loc (caddr form)
;; (let* ((v (fourth form))(c (car v)))
;; (ecase c
;; (var (cons c (caddr v)))
;; (lit (apply 'lit-loc (cddr v)))
;; (location (caddr v))))) locs))
;; (structure-ref (push (coerce-loc-structure-ref (cdr form) type) locs))
;; (SETQ
;; (let* ((vref (caddr form))
;; (form1 (cadddr form))
;; (v (car vref))
;; (vv (cons 'var vref))
;; (vt (if (or (eq t (var-ref v)) (consp (var-ref v)) (var-cb v) (eq (var-kind v) 'global)) vv *value-to-go*)))
;; (cond ((eq vt vv)
;; (let ((*value-to-go* vt)) (c2expr* form1))
;; (if (eq (car form1) 'LOCATION)
;; (push (coerce-loc (caddr form1) type) locs)
;; (setq forms (list* form (list 'VAR (cadr form) vref) (cdr forms))
;; types (list* type types))))
;; ((setq forms (list* form form1 (cdr forms))
;; types (list* type types))))));; want (setq types (list* type type (cdr types))) but type is first of types
;; (otherwise (push (wt-push-loc form type t) locs))))))
;; (defun inline-args (forms types &optional fun &aux locs ii)
;; (do ((forms forms (cdr forms))
;; (types types (cdr types)))
;; ((endp forms) (nreverse locs))
;; (let* ((form (car forms))
;; (type (car types))
;; (type (adj-cnum-tp type (info-type (cadr form)))))
;; (case (car form)
;; (LOCATION (push (coerce-loc (caddr form) type) locs))
;; (VAR
;; (cond ((args-info-changed-vars (caaddr form) (cdr forms))
;; (push (wt-push-loc (cons 'var (caddr form)) type) locs))
;; ((and (member (var-kind (caaddr form)) +c-local-var-types+)
;; (not (type>= (var-kind (caaddr form)) type)))
;; ; (not (eq type (var-kind (caaddr form)))))
;; (push (wt-push-loc (cons 'var (caddr form)) type) locs))
;; ((push (coerce-loc (cons 'VAR (caddr form)) type) locs))))
;; (CALL-GLOBAL
;; (if (let ((fname (caddr form)))
;; (and (inline-possible fname)
;; (setq ii (get-inline-info
;; fname (cadddr form)
;; (info-type (cadr form)) (sixth form)))
;; (progn (save-avma ii) t)))
;; (let ((loc (get-inline-loc ii (cadddr form))))
;; (cond
;; ((or (and (flag-p (caddr ii) ans)(not *c-gc*)); returns new object
;; (and (member (cadr ii) +c-local-var-types+)
;; (not (eq type (cadr ii)))))
;; (push (wt-push-loc loc type) locs))
;; ((or (need-to-protect (cdr forms) (cdr types))
;; ;;if either new form or side effect,
;; ;;we don't want double evaluation
;; (and (flag-p (caddr ii) allocates-new-storage)
;; (or (null fun)
;; ;; Any fun such as list,list* which
;; ;; does not cause side effects or
;; ;; do double eval (ie not "@..")
;; ;; could go here.
;; (not (si::memq fun '(list-inline list*-inline)))))
;; (flag-p (caddr ii) is)
;; (and (flag-p (caddr ii) set) ; side-effectp
;; (not (null (cdr forms)))))
;; (push (wt-push-loc loc type) locs))
;; ((push (coerce-loc loc type) locs))))
;; (push (wt-push-loc form type t) locs)))
;; (ub (push (list 'gen-loc (caddr form)
;; (let* ((v (fourth form))(tv (third v)))
;; (if (eq (car v) 'var) (cons (car v) tv) tv))) locs))
;; (structure-ref (push (coerce-loc-structure-ref (cdr form) type) locs))
;; (SETQ
;; (let* ((vref (caddr form))
;; (form1 (cadddr form))
;; (v (car vref))
;; (vv (cons 'var vref))
;; (vt (if (or (eq t (var-ref v)) (consp (var-ref v)) (var-cb v) (eq (var-kind v) 'global)) vv *value-to-go*)))
;; (cond ((eq vt vv)
;; (let ((*value-to-go* vt)) (c2expr* form1))
;; (if (eq (car form1) 'LOCATION)
;; (push (coerce-loc (caddr form1) type) locs)
;; (setq forms (list* form (list 'VAR (cadr form) vref) (cdr forms))
;; types (list* type types))))
;; ((setq forms (list* form form1 (cdr forms))
;; types (list* type types))))));; want (setq types (list* type type (cdr types))) but type is first of types
;; (otherwise (push (wt-push-loc form type t) locs))))))
;; (defun inline-args (forms types &optional fun &aux locs ii)
;; (do ((forms forms (cdr forms))
;; (types types (cdr types)))
;; ((endp forms) (nreverse locs))
;; (let* ((form (car forms))
;; (type (car types))
;; (type (adj-cnum-tp type (info-type (cadr form)))))
;; (case (car form)
;; (LOCATION (push (coerce-loc (caddr form) type) locs))
;; (VAR
;; (cond ((args-info-changed-vars (caaddr form) (cdr forms))
;; (push (wt-push-loc (cons 'var (caddr form)) type) locs))
;; ((and (member (var-kind (caaddr form)) +c-local-var-types+)
;; (not (eq type (var-kind (caaddr form)))))
;; (push (wt-push-loc (cons 'var (caddr form)) type) locs))
;; ((push (coerce-loc (cons 'VAR (caddr form)) type) locs))))
;; (CALL-GLOBAL
;; (if (let ((fname (caddr form)))
;; (and (inline-possible fname)
;; (setq ii (get-inline-info
;; fname (cadddr form)
;; (info-type (cadr form)) (sixth form)))
;; (progn (save-avma ii) t)))
;; (let ((loc (get-inline-loc ii (cadddr form))))
;; (cond
;; ((or (and (flag-p (caddr ii) ans)(not *c-gc*)); returns new object
;; (and (member (cadr ii) +c-local-var-types+)
;; (not (eq type (cadr ii)))))
;; (push (wt-push-loc loc type) locs))
;; ((or (need-to-protect (cdr forms) (cdr types))
;; ;;if either new form or side effect,
;; ;;we don't want double evaluation
;; (and (flag-p (caddr ii) allocates-new-storage)
;; (or (null fun)
;; ;; Any fun such as list,list* which
;; ;; does not cause side effects or
;; ;; do double eval (ie not "@..")
;; ;; could go here.
;; (not (si::memq fun '(list-inline list*-inline)))))
;; (flag-p (caddr ii) is)
;; (and (flag-p (caddr ii) set) ; side-effectp
;; (not (null (cdr forms)))))
;; (push (wt-push-loc loc type) locs))
;; ((push (coerce-loc loc type) locs))))
;; (push (wt-push-loc form type t) locs)))
;; (ub (push (list 'gen-loc (caddr form)
;; (let* ((v (fourth form))(tv (third v)))
;; (if (eq (car v) 'var) (cons (car v) tv) tv))) locs))
;; (structure-ref (push (coerce-loc-structure-ref (cdr form) type) locs))
;; (SETQ
;; (let* ((vref (caddr form))
;; (form1 (cadddr form))
;; (v (car vref))
;; (vv (cons 'var vref))
;; (vt (if (or (eq t (var-ref v)) (consp (var-ref v)) (var-cb v) (eq (var-kind v) 'global)) vv *value-to-go*)))
;; (cond ((eq vt vv)
;; (let ((*value-to-go* vt)) (c2expr* form1))
;; (if (eq (car form1) 'LOCATION)
;; (push (coerce-loc (caddr form1) type) locs)
;; (setq forms (list* form (list 'VAR (cadr form) vref) (cdr forms))
;; types (list* type types))))
;; ((setq forms (list* form form1 (cdr forms))
;; types (list* type types))))));; want (setq types (list* type type (cdr types))) but type is first of types
;; (otherwise (push (wt-push-loc form type t) locs))))))
;; (defun inline-args (forms types &optional fun &aux locs ii)
;; (do ((forms forms (cdr forms))
;; (types types (cdr types)))
;; ((endp forms) (reverse locs))
;; (let ((form (car forms))
;; (type (car types)))
;; (let ((type (adj-cnum-tp type (info-type (cadr form)))))
;; (case (car form)
;; (LOCATION (push (coerce-loc (caddr form) type) locs))
;; (VAR
;; (cond ((args-info-changed-vars (caaddr form) (cdr forms))
;; (cond ((and (member (var-kind (caaddr form)) +c-local-var-types+)
;; (eq type (var-kind (caaddr form))))
;; (let* ((cvar (cs-push type t))(*value-to-go* `(cvar ,cvar)))
;; (wt-nl "{" (rep-type type) "V" cvar "= V"
;; (var-loc (caaddr form)) ";")
;; (push (list 'cvar cvar 'inline-args) locs)
;; (inc-inline-blocks)))
;; ((let* ((temp (wt-c-push type))(*value-to-go* temp))
;; (wt-nl temp "= ")
;; (wt-var (caaddr form) (cadr (caddr form)))
;; (wt ";")
;; (push (coerce-loc temp type) locs)))))
;; ((and (member (var-kind (caaddr form)) +c-local-var-types+)
;; (not (eq type (var-kind (caaddr form)))))
;; (let* ((temp (cs-push type))(*value-to-go* `(cvar ,temp)))
;; (wt-nl "V" temp " = "
;; (coerce-loc (cons 'var (caddr form)) type) ";")
;; (push (list 'cvar temp) locs)))
;; ((push (coerce-loc (cons 'VAR (caddr form)) type) locs))))
;; (CALL-GLOBAL
;; (if (let ((fname (caddr form)))
;; (and (inline-possible fname)
;; (setq ii (get-inline-info
;; fname (cadddr form)
;; (info-type (cadr form)) (sixth form)))
;; (progn (save-avma ii) t)))
;; (let ((loc (get-inline-loc ii (cadddr form))))
;; (cond
;; ((or (and (flag-p (caddr ii) ans)(not *c-gc*)); returns new object
;; (and (member (cadr ii) +c-local-var-types+)
;; (not (eq type (cadr ii)))))
;; (let* ((temp (cs-push type))(*value-to-go* `(cvar ,temp)))
;; (wt-nl "V" temp " = " (coerce-loc loc type) ";")
;; (push (list 'cvar temp) locs)))
;; ((or (need-to-protect (cdr forms) (cdr types))
;; ;;if either new form or side effect,
;; ;;we don't want double evaluation
;; (and (flag-p (caddr ii) allocates-new-storage)
;; (or (null fun)
;; ;; Any fun such as list,list* which
;; ;; does not cause side effects or
;; ;; do double eval (ie not "@..")
;; ;; could go here.
;; (not (si::memq fun '(list-inline list*-inline)))))
;; (flag-p (caddr ii) is)
;; (and (flag-p (caddr ii) set) ; side-effectp
;; (not (null (cdr forms)))))
;; (let (cvar)
;; (cond
;; ((eq type t)
;; (setq cvar (cs-push))
;; (wt-nl "V" cvar "= ")
;; (let ((*value-to-go* `(cvar ,cvar))) (wt-loc loc)))
;; (t (setq cvar (cs-push type t))
;; (wt-nl "{" (rep-type type) "V" cvar "= ")
;; (let ((*value-to-go* `(cvar ,cvar)))
;; (funcall (or (cdr (assoc (promoted-c-type type) +wt-loc-alist+)) 'wt-loc) loc))
;; (inc-inline-blocks)))
;; (wt ";")
;; (push (list 'cvar cvar 'inline-args) locs)))
;; (t (push (coerce-loc loc type) locs))))
;; (let ((temp (if *c-gc* (list 'cvar (cs-push)) (list 'vs (vs-push)))))
;; (let ((*value-to-go* temp)) (c2expr* form))
;; (push (coerce-loc temp type) locs))))
;; ; (ub (push (coerce-loc (cons 'var (third (fourth form))) (get (caddr form) 'lisp-type)) locs))
;; (ub (push (list 'gen-loc (caddr form) (let* ((v (fourth form))(tv (third v))) (if (eq (car v) 'var) (cons (car v) tv) tv))) locs))
;; (structure-ref
;; (push (coerce-loc-structure-ref (cdr form) type) locs))
;; (SETQ
;; (let ((vref (caddr form))
;; (form1 (cadddr form)))
;; (let ((*value-to-go* (cons 'var vref))) (c2expr* form1))
;; (cond ((eq (car form1) 'LOCATION)
;; (push (coerce-loc (caddr form1) type) locs))
;; (t
;; (setq forms (list* form (list 'VAR (cadr form) vref) (cdr forms)))
;; ;; want (setq types (list* type type (cdr types)))
;; ;; but type is first of types
;; (setq types (list* type types))))))
;; (t (let
;; ((temp
;; (cond ((not *c-gc*) (list 'vs (vs-push)))
;; ((eq type t) (list 'cvar (cs-push)))
;; ((list 'var
;; (make-var :type type :loc (cs-push type)
;; :kind (or (car (member (promoted-c-type type) +c-local-var-types+)) 'object))
;; nil)))))
;; (let ((*value-to-go* temp))
;; (c2expr* form)
;; (push (coerce-loc temp type) locs)))))))))
(defun coerce-loc (loc type)
(let ((tmp (car (rassoc (promoted-c-type type) *box-alist*))))
(if tmp (list 'gen-loc tmp loc)
(let ((tl (cdr (assoc (promoted-c-type type) +coersion-alist+))));FIXME never reached
(if tl (list tl loc) loc)))))
;; (defun coerce-loc (loc type)
;; (when (eq 'var (when (listp loc) (car loc))) (setf (var-type (cadr loc)) type));FIXME cmp-aref
;; (let ((tmp (car (rassoc (promoted-c-type type) *box-alist*))))
;; (if tmp (list 'gen-loc tmp loc)
;; (let ((tl (cdr (assoc (promoted-c-type type) +coersion-alist+))))
;; (if tl (list tl loc) loc)))))
(defun get-inline-loc (ii args &aux (fun (car (cdddr ii))) locs)
;;; Those functions that use GET-INLINE-LOC must rebind the variable *VS*.
(setq locs (inline-args args (car ii) fun))
(when (and (stringp fun) (char= (char (the string fun) 0) #\@))
(let ((i 1) (saves nil))
(declare (fixnum i))
(do ((char (char (the string fun) i)
(char (the string fun) i)))
((char= char #\;) (incf i))
(declare (character char))
(push (the fixnum (- (char-code char) #.(char-code #\0))) saves)
(incf i))
(do ((l locs (cdr l))
(n 0 (1+ n))
(locs1 nil))
((endp l) (setq locs (reverse locs1)))
(declare (fixnum n))
(if (member n saves)
(let* ((loc (car l)) (loc1 loc)
(coersion (and (consp loc) (cdr (rassoc (car loc) +coersion-alist+))))
(loc (if coersion (cadr loc) loc))); remove coersion
(cond
((and (consp loc)
(rassoc (car loc) +inline-types-alist+)
(or (member (car loc) '(inline inline-cond))
(flag-p (cadr loc) allocates-new-storage)
(flag-p (cadr loc) side-effect-p)))
(wt-nl "{")
(inc-inline-blocks) ;;FIXME -- make sure not losing specificity in coersion
(let* ((ck (or (car (rassoc coersion +coersion-alist+)) 'object))
(cvar (cs-push ck t)))
(push (list 'CVAR cvar) locs1)
(unless ck (baboon))
(wt (rep-type ck) "V" cvar "= ")
(funcall (cdr (assoc ck +wt-loc-alist+)) loc))
(wt ";"))
(t (push loc1 locs1))))
(push (car l) locs1)))))
(let ((others (and (stringp fun) (not (single-type-p (cadr ii))) (not (type>= (cadr ii) '*))
(mapcar 'inline-type (cddadr ii)))))
(list (inline-type (cadr ii))
(caddr ii)
(if others (cons fun others) fun)
locs
))
)
(defun inline-type (type)
(or (cdr (assoc (promoted-c-type type) +inline-types-alist+)) 'inline))
(defun get-plist-inline (fname args return-type apnarg inline-list)
(reduce (lambda (y x)
(or y (inline-type-matches fname x args return-type apnarg)))
inline-list :initial-value nil))
(defun get-inline-info (fname args return-type &optional apnarg
&aux (sui (if *safe-compile* 'inline-safe 'inline-unsafe)))
(setq args (mapcar (lambda (form) (info-type (cadr form))) args))
(cond ((get-plist-inline fname args return-type apnarg (get fname sui)))
((get-plist-inline fname args return-type apnarg (get fname 'inline-always)))
((cdr (add-fast-link fname (length args) apnarg)))))
;; (defun get-inline-info (fname args return-type &optional apnarg
;; &aux (sui (if *safe-compile* 'inline-safe 'inline-unsafe)))
;; (setq args (mapcar (lambda (form) (info-type (cadr form))) args))
;; (cond ((get-plist-inline fname args return-type apnarg (get fname sui)))
;; ((get-plist-inline fname args return-type apnarg (get fname 'inline-always)))
;; ((cdr (add-fast-link fname apnarg)))))
(defun adj-cnum-tp (tp ref)
(if (and (type>= #tcnum tp) (not (type>= #tcnum (promoted-c-type tp))))
(let ((pr (promoted-c-type ref)))
(when (and (type>= #tcnum pr) (type>= tp ref)) ref))
tp))
(defun mv-cast (arg-type type);FIXME
(cond ((single-type-p type) arg-type)
((single-type-p arg-type) (list* (car type) (coerce-to-one-value arg-type) (make-list (length (cddr type)))))
((append arg-type (make-list (max 0 (- (length type) (length arg-type))))))))
(defun inline-type-matches (fname inline-info arg-types return-type &optional apnarg
&aux rts (flags (third inline-info)))
(declare (ignore fname))
(fix-opt inline-info)
(when (let ((x (flag-p flags aa))) (if apnarg x (not x)))
(when (flag-p flags itf)
(let ((restp (apply (car inline-info) arg-types)))
(return-from inline-type-matches (when restp `(,(car restp) ,(cadr restp) ,@(cddr inline-info))))))
(let* ((t1 (mapcar (lambda (x) (or x #tnull)) (cons return-type arg-types)))
(t2 (cons (cadr inline-info) (car inline-info)))
(last #tt) (ret t))
(when (dolist (arg-type t1 (or (equal t2 '(*)) (endp t2)))
(when (endp t2) (return nil))
(let* ((s (unless ret (and (eq (car t2) '*) (not (cdr t2)))))
(lst (if (unless (type<= last #topaque) s) #tt last));FIXME (cmp-norm-tp 'opaque)
(type (if s lst (pop t2)))
(arg-type (if ret (mv-cast arg-type type) (coerce-to-one-value arg-type)));FIXME
(tp (adj-cnum-tp type arg-type)))
(unless (type>= tp arg-type) (return nil))
(setq last type ret nil)
(push tp rts)))
(setq rts (nreverse rts))
(cons (cdr rts) (cons (car rts) (cddr inline-info)))))))
(defun need-to-protect (forms types &aux ii)
(do ((forms forms (cdr forms))
(types types (cdr types)))
((endp forms) nil)
(let ((form (car forms)))
(case (car form)
(LOCATION)
(VAR
(when (or (args-info-changed-vars (caaddr form) (cdr forms))
(when (member (var-kind (caaddr form)) +c-local-var-types+)
(not (type>= (var-kind (caaddr form)) (car types)))))
(return t)))
(CALL-GLOBAL
(let ((fname (caddr form)))
(when
(or (not (inline-possible fname))
(null (setq ii (get-inline-info
fname (cadddr form)
(info-type (cadr form)))))
(flag-p (caddr ii) allocates-new-storage)
(flag-p (caddr ii) set)
(flag-p (caddr ii) is)
(and (member (cadr ii) +c-local-var-types+)
(not (eq (car types) (cadr ii))))
(need-to-protect (cadddr form) (car ii)))
(return t))))
(structure-ref
(when (need-to-protect (list (caddr form)) '(t))
(return t)))
(t (return t))))))
(defun wt-c-push (&optional type)
(cond (*c-gc* (inc-inline-blocks)
(let ((tem (cs-push type t)))
(wt "{" *volatile* "object V" tem ";")
(list 'cvar tem)))
(t (list 'VS (vs-push)))))
(defun close-inline-blocks ( &aux (bl *inline-blocks*))
(when (consp bl)
(if (eql (cdr bl) 'restore-avma) (wt "restore_avma;"))
(setq bl (car bl)))
(dotimes (i bl) (wt "}")))
(si:putprop 'inline 'wt-inline 'wt-loc)
(si:putprop 'inline-cond 'wt-inline-cond 'wt-loc)
(si:putprop 'inline-fixnum 'wt-inline-fixnum 'wt-loc)
(si:putprop 'inline-string 'wt-inline-string 'wt-loc)
(si:putprop 'inline-integer 'wt-inline-integer 'wt-loc)
(si:putprop 'inline-character 'wt-inline-character 'wt-loc)
(si:putprop 'inline-char 'wt-inline-char 'wt-loc)
(si:putprop 'inline-long-float 'wt-inline-long-float 'wt-loc)
(si:putprop 'inline-short-float 'wt-inline-short-float 'wt-loc)
(si:putprop 'inline-dcomplex 'wt-inline-dcomplex 'wt-loc)
(si:putprop 'inline-fcomplex 'wt-inline-fcomplex 'wt-loc)
(defun wt-inline-loc (fun locs &aux (i 0) (max 0) (maxv 0))
(declare (fixnum i max maxv))
(let* ((others (and (consp fun) (stringp (car fun)) (cdr fun)))
(fun (if (and (consp fun) (stringp (car fun))) (car fun) fun)))
(cond ((stringp fun)
(when (char= (char fun 0) #\@)
(setq i 1)
(do ()
((char= (char fun i) #\;) (incf i))
(incf i)))
(do ((size (length fun)))
((>= i size))
(declare (fixnum size))
(let ((char (char fun i)))
(declare (character char))
(cond ((char= char #\#)
(let ((ch (char fun (the fixnum (1+ i))))
(n 0))
(cond
((eql ch #\n)
(wt (length locs)))
((or (eql ch #\*) (eql ch #\?))
(let* ((f (char= (char fun (1- i)) #\())
(e (char= (char fun (+ 2 i)) #\)))
(locs (nthcdr max locs))
(locs (or locs (when (eql ch #\?) `((fixnum-value nil 0))))))
(dolist (v locs (unless (or f e) (wt ",")))
(unless f (wt ","))
(setq f nil)
(wt-loc v))))
((eql ch #\v)
(wt-fixnum-loc
(cond ((eq *value-to-go* 'top) (list 'vs-address "base" (cdr (vs-push))))
((and (not (eq *value-to-go* 'return))
(not (rassoc *value-to-go* +return-alist+))
(not *values-to-go*))
(list 'fixnum-value nil 0))
(*mv-var*
(cond ((>= (var-known-init *mv-var*) 0)
(setq *values-to-go*
(nthcdr (var-known-init *mv-var*) *values-to-go*)))
(t
(unless (boundp '*extend-vs-top*) (baboon))
(setq *extend-vs-top* t *values-to-go* nil)))
(list 'var *mv-var* nil))
((list 'vs-address "base" (cdr (vs-push)))))))
((setq n (digit-char-p ch))
(do (m (ii (+ i 2) (1+ ii)))
((not (setq m (when (> (length fun) ii) (digit-char-p (setq ch (char fun ii))))))
(setq max (max max (1+ n)))
(let ((*values-to-go* nil)) (wt-loc (nth n locs))))
(setq n (+ (* n 10) m) i (1+ i))))
((wt ch))))
(incf i 2))
((char= char #\@);FIXME better error checking
(let* ((n (- (char-code (char fun (1+ i))) #.(char-code #\1)))
(n (if (digit-char-p (char fun (+ i 2)))
(+ (* 10 (1+ n)) (- (char-code (char fun (1+ (incf i)))) #.(char-code #\1))) n))
(pos (position #\@ fun :start (+ i 2)))
(new-fun (subseq fun (+ i 2) pos))
(*value-to-go* (or (nth n *values-to-go*)
(and (member *value-to-go* '(top return))
(list 'vs (vs-push)))
'trash))
(*values-to-go* nil))
(set-loc (list (nth n others) (flags) new-fun locs))
(setf maxv (max maxv (1+ n)))
(setf i (1+ pos))))
(t
(princ char *compiler-output1*)
(incf i)))))
(setq *values-to-go* (nthcdr maxv *values-to-go*)))
((values (apply fun locs))))))
(defun wt-inline (flags fun locs)
(declare (ignore flags))
(wt-inline-loc fun locs))
(defun wt-inline-string (flags fun locs)
(declare (ignore flags))
(when (zerop *space*) (wt "CMP"))
(wt "make_simple_string(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-cond (flags fun locs)
(declare (ignore flags))
(wt "(") (wt-inline-loc fun locs) (wt "?Ct:Cnil") (wt ")"))
(defun wt-inline-fixnum (flags fun locs)
(declare (ignore flags))
(when (zerop *space*) (wt "CMP"))
(wt "make_fixnum(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-integer (flags fun locs)
(declare (ignore flags))
(wt "make_integer(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-character (flags fun locs)
(declare (ignore flags))
(wt "code_char(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-char (flags fun locs)
(declare (ignore flags))
(wt "make_fixnum(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-long-float (flags fun locs)
(declare (ignore flags))
(wt "make_longfloat(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-short-float (flags fun locs)
(declare (ignore flags))
(wt "make_shortfloat(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-fcomplex (flags fun locs)
(declare (ignore flags))
(wt "make_fcomplex(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-dcomplex (flags fun locs)
(declare (ignore flags))
(wt "make_dcomplex(") (wt-inline-loc fun locs) (wt ")"))
;;; Borrowed from CMPOPT.LSP
(defmacro can-allocate-on-stack ()
`(and (consp *value-to-go*)
(eq (car *value-to-go*) 'var)
(var-dynamic (second *value-to-go*))
(not (var-cb (second *value-to-go*)))))
(defun wt-stack-list* (x l &optional n (st "Cnil") (lst "Cnil"))
(let ((z (or n (length x))))
(when n (wt-nl "({ufixnum _z=" z ";!_z ? Cnil :"))
(wt-nl "({object _b=OBJ_ALIGNED_STACK_ALLOC(" (if n "_z" z) "*sizeof(struct cons));")
(wt-nl "register struct cons *_p=(void *)_b;")
(cond (n (wt-nl "struct cons *_e=_p+(_z-1);")
(wt-nl "for (;_p<_e;_p++) {_p->c_car=" st ";_p->c_cdr=(object)(_p+1);}")
(wt-nl "_p->c_car=" lst ";_p->c_cdr=Cnil;_b;});})"))
((dolist (x x (wt-nl "_p[-1].c_cdr=" l ";_b;})"))
(wt-nl "_p->c_car=" x ";_p->c_cdr=(object)(_p+1);_p++;"))))))
(defun list-inline (&rest x &aux (*values-to-go* nil))
(assert x)
(cond ((can-allocate-on-stack) (wt-stack-list* x nil))
((endp (cdr x)) (wt "make_cons(" (car x) ",Cnil)"))
(t
(wt "list(" (length x))
(dolist (loc x (wt #\))) (wt #\, loc)))))
(defun list*-inline (&rest x &aux (*values-to-go* nil))
(assert x)
(if (can-allocate-on-stack)
(wt-stack-list* (butlast x) (car (last x)))
(case (length x)
(1 (wt (car x)))
(2 (wt "make_cons(" (car x) "," (cadr x) ")"))
(otherwise
(wt "listA(" (length x)) (dolist (loc x) (wt #\, loc)) (wt #\))))))
(defun make-list-inline (n &aux (*values-to-go* nil))
(if (can-allocate-on-stack)
(wt-stack-list* nil nil n)
(wt "make_list(" n ")")))
(defun cons-inline (x y &aux (*values-to-go* nil))
(if (can-allocate-on-stack)
(wt-stack-list* (list x) y)
(wt "make_cons(" x "," y ")")))
(defun c-cast (aet)
(or (cdr (assoc aet +c-type-string-alist+)) (baboon)))
|