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
|
;;; CMPINLINE Open coding optimizer.
;;;
;; Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
;; 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 mia (x y) `(si:make-vector t ,x t ,y nil 0 nil nil))
;(defmacro mia (x y) `(make-array ,x :adjustable t :fill-pointer ,y))
(defmacro eql-not-nil (x y) `(and ,x (eql ,x ,y)))
(defstruct (info (:copier old-copy-info))
(type t) ;;; Type of the form.
(sp-change nil) ;;; Whether execution of the form may change
;;; the value of a special variable *VS*.
(volatile nil) ;;; whether there is a possible setjmp
(changed-array (mia 10 0)) ;;; List of var-objects changed by the form.
(referred-array (mia 10 0)) ;;; List of var-objects referred in the form.
)
(defun copy-array (array)
(declare ((vector t) array))
(let ((new-array (mia (the fixnum (array-total-size array)) (length array))))
(declare ((vector t) new-array))
(do ((i 0 (1+ i))) ((>= i (length array)) new-array)
(declare (fixnum i))
(setf (aref new-array i) (aref array i)))))
(defun copy-info (info)
(let ((new-info (old-copy-info info)))
(setf (info-referred-array new-info)
(copy-array (info-referred-array info)))
(setf (info-changed-array new-info)
(copy-array (info-changed-array info)))
new-info))
(defun bsearchleq (x a i j le)
(declare (object x le) ((vector t) a) (fixnum i j))
(when (eql i j)
(return-from bsearchleq (if (or le (and (< i (length a)) (eq x (aref a i)))) i (length a))))
(let* ((k (the fixnum (+ i (the fixnum (ash (the fixnum (- j i) ) -1)))))
(y (aref a k)))
(declare (fixnum k) (object y))
(cond ((si::objlt x y)
(bsearchleq x a i k le))
((eq x y) k)
(t (bsearchleq x a (1+ k) j le)))))
(defun push-array (x ar s lin)
(declare (object x lin) ((vector t) ar) (fixnum s) (ignore lin))
; (j (if lin
; (do ((k s (1+ k))) ((or (eql k (length ar)) (si::objlt x (aref ar k)) (eq x (aref ar k))) k)
; (declare (fixnum k)))
; (bsearchleq x ar s (length ar)))))
(let ((j (bsearchleq x ar s (length ar) t)))
(declare (fixnum j))
(when (and (< j (length ar)) (eq (aref ar j) x))
(return-from push-array -1))
(let ((ar (if (eql (length ar) (the fixnum (array-total-size ar)))
(adjust-array ar (the fixnum (* 2 (length ar))))
ar)))
(declare ((vector t) ar))
(do ((i (length ar) (1- i))) ((<= i j))
(declare (fixnum i))
(setf (aref ar i) (aref ar (the fixnum (1- i)))))
(setf (aref ar j) x)
(setf (fill-pointer ar) (the fixnum (1+ (length ar))))
j)))
(defmacro do-array ((v oar) &rest body)
(let ((count (gensym)) (ar (gensym)))
`(let* ((,ar ,oar))
(declare ((vector t) ,ar))
(do ((,count 0 (1+ ,count))) ((eql ,count (length ,ar)))
(declare (fixnum ,count))
(let ((,v (aref ,ar ,count)))
,@body)))))
(defmacro in-array (v ar)
`(< (bsearchleq ,v ,ar 0 (length ,ar) nil) (length ,ar)))
(defmacro do-referred ((v info) &rest body)
`(do-array (,v (info-referred-array ,info)) ,@body))
(defmacro do-changed ((v info) &rest body)
`(do-array (,v (info-changed-array ,info)) ,@body))
(defmacro is-referred (var info)
`(in-array ,var (info-referred-array ,info)))
(defmacro is-changed (var info)
`(in-array ,var (info-changed-array ,info)))
(defmacro push-referred (var info)
`(push-array ,var (info-referred-array ,info) 0 nil))
(defmacro push-changed (var info)
`(push-array ,var (info-changed-array ,info) 0 nil))
(defmacro push-referred-with-start (var info s lin)
`(push-array ,var (info-referred-array ,info) ,s ,lin))
(defmacro push-changed-with-start (var info s lin)
`(push-array ,var (info-changed-array ,info) ,s ,lin))
(defmacro changed-length (info)
`(length (info-changed-array ,info)))
(defmacro referred-length (info)
`(length (info-referred-array ,info)))
(defvar *info* (make-info))
(defun mlin (x y)
(declare (fixnum x y))
(when (<= y 3)
(return-from mlin nil))
(let ((ly
(do ((tl y (ash tl -1)) (k -1 (1+ k))) ((eql tl 0) k)
(declare (fixnum k tl)))))
(declare (fixnum ly))
(let ((lyr (the fixnum (truncate y (the fixnum (1- ly))))))
(declare (fixnum lyr))
(> x (the fixnum (1+ lyr))))))
(defun add-info (to-info from-info)
;; Allow nil from-info without error CM 20031030
(unless from-info
(return-from add-info to-info))
(let* ((s 0)
(lin)); (mlin (changed-length from-info) (changed-length to-info))))
(declare (fixnum s) (object lin))
(do-changed (v from-info)
(let ((res (push-changed-with-start v to-info s lin)))
(declare (fixnum res))
(when (>= res 0)
(setq s (the fixnum (1+ res)))))))
(let* ((s 0)
(lin)); (mlin (referred-length from-info) (referred-length to-info))))
(declare (fixnum s) (object lin))
(do-referred (v from-info)
(let ((res (push-referred-with-start v to-info s lin)))
(declare (fixnum res))
(when (>= res 0)
(setq s (the fixnum (1+ res)))))))
(when (info-sp-change from-info)
(setf (info-sp-change to-info) t))
;; Return to-info, CM 20031030
to-info)
(defun args-info-changed-vars (var forms)
(case (var-kind var)
((LEXICAL FIXNUM CHARACTER LONG-FLOAT SHORT-FLOAT 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))
(info-sp-change (cadr form)))
(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))))
(defun is-rep-referred (var info)
(let ((rx (var-rep-loc var)))
(do-referred (v info)
(let ((ry (var-rep-loc v)))
(when (or (eql-not-nil (var-loc var) ry)
(eql-not-nil (var-loc v) rx)
(eql-not-nil rx ry))
(return-from is-rep-referred t))))))
(defun args-info-referred-vars (var forms)
(case (var-kind var)
((LEXICAL REPLACED FIXNUM CHARACTER LONG-FLOAT SHORT-FLOAT OBJECT)
(dolist** (form forms nil)
(when (or (is-referred var (cadr form))
(is-rep-referred var (cadr form)))
(return-from args-info-referred-vars t))))
(t (dolist** (form forms nil)
(when (or (is-referred var (cadr form))
(is-rep-referred var (cadr form))
(info-sp-change (cadr form)))
(return-from args-info-referred-vars t))))
))
;;; 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.
(defvar *special-types* '(FIXNUM CHARACTER LONG-FLOAT SHORT-FLOAT integer))
(defun inc-inline-blocks()
(cond ((consp *inline-blocks*)
(incf (car *inline-blocks*)))
(t (incf *inline-blocks*))))
(defun inline-args (forms types &optional fun &aux (locs nil) ii)
(do ((forms forms (cdr forms))
(types types (cdr types)))
((endp forms) (nreverse locs))
(declare (object forms types))
(let ((form (car forms))
(type (car types)))
(declare (object form type))
(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))
*special-types*)
(eq type (var-kind (caaddr form))))
(let ((cvar (next-cvar)))
(wt-nl "{" (rep-type type) "V" cvar "= V"
(var-loc (caaddr form)) ";")
(push (list 'cvar cvar 'inline-args) locs)
(inc-inline-blocks)))
(t
(let ((temp (wt-c-push)))
(wt-nl temp "= ")
(wt-var (caaddr form) (cadr (caddr form)))
(wt ";")
(push (coerce-loc temp type) locs)))))
((and (member (var-kind (caaddr form))
'(FIXNUM LONG-FLOAT SHORT-FLOAT INTEGER))
(not (eq type (var-kind (caaddr form)))))
(let ((temp (cs-push type)))
(wt-nl "V" temp " = "
(coerce-loc (cons 'var (caddr form)) type) ";")
(push (list 'cvar temp) locs)))
(t (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))))
(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)
'(FIXNUM LONG-FLOAT SHORT-FLOAT))
(not (eq type (cadr ii)))))
(let ((temp (cs-push type)))
(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 "= ")
(wt-loc loc))
(t (setq cvar (next-cvar))
(wt-nl "{" (rep-type type) "V" cvar "= ")
(case type
(fixnum (wt-fixnum-loc loc))
(integer (wt-integer-loc loc 'inline-args))
(character (wt-character-loc loc))
(long-float (wt-long-float-loc loc))
(short-float (wt-short-float-loc loc))
(otherwise (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))))
(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 (*c-gc*
(cond ((eq type t)
(list 'cvar (cs-push)))
(t (push (cons type (next-cvar)) *c-vars*)
(list 'var
(make-var
:type type
:kind
(if (member type
*special-types*)
type 'object)
:loc (cdar *c-vars*))
nil
))))
(t (list 'vs (vs-push))))))
(let ((*value-to-go* temp))
(c2expr* form)
(push (coerce-loc temp type) locs))))))))
(defun coerce-loc (loc type)
(case type
(fixnum (list 'FIXNUM-LOC loc))
(integer (list 'integer-loc loc ))
(character (list 'CHARACTER-LOC loc))
(long-float (list 'LONG-FLOAT-LOC loc))
(short-float (list 'SHORT-FLOAT-LOC loc))
(t 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 (nreverse locs1)))
(declare (fixnum n) (object l))
(if (member n saves)
(let* ((loc1 (car l)) (loc loc1) (coersion nil))
(declare (object loc loc1))
(when (and (consp loc1)
(member (car loc1)
'(FIXNUM-LOC integer-loc CHARACTER-LOC
LONG-FLOAT-LOC SHORT-FLOAT-LOC)))
(setq coersion (car loc1))
(setq loc (cadr loc1)) ; remove coersion
)
(cond
((and (consp loc)
(or
(member (car loc)
'(INLINE INLINE-COND))
(and (member (car loc)
'(
INLINE-FIXNUM inline-integer
INLINE-CHARACTER INLINE-LONG-FLOAT
INLINE-SHORT-FLOAT))
(or (flag-p (cadr loc) allocates-new-storage)
(flag-p (cadr loc) side-effect-p))
)))
(wt-nl "{")
(inc-inline-blocks)
(let ((cvar (next-cvar)))
(push (list 'CVAR cvar) locs1)
(case coersion
((nil) (wt "object V" cvar "= ") (wt-loc loc1))
(FIXNUM-LOC (wt "int V" cvar "= ") (wt-fixnum-loc loc))
(integer-loc (wt "MP_INT * V" cvar "= ") (wt-integer-loc loc
'get-inline-locs))
(CHARACTER-LOC
(wt "unsigned char V" cvar "= ") (wt-character-loc loc))
(LONG-FLOAT-LOC
(wt "double V" cvar "= ") (wt-long-float-loc loc))
(SHORT-FLOAT-LOC
(wt "float V" cvar "= ") (wt-short-float-loc loc))
(t (baboon))))
(wt ";")
)
(t (push loc1 locs1))))
(push (car l) locs1)))))
(list (inline-type (cadr ii))
(caddr ii)
fun
locs)
)
(defvar *inline-types*
'((boolean . INLINE-COND)
(fixnum . INLINE-FIXNUM)
(character . INLINE-CHARACTER)
(long-float . INLINE-LONG-FLOAT)
(short-float . INLINE-SHORT-FLOAT)
(integer . INLINE-INTEGER)
(t . INLINE)))
(defun inline-type (type)
(or (cdr (assoc type *inline-types* :test 'eq)) 'inline))
(defun get-inline-info (fname args return-type &aux x ii)
(and (fast-link-proclaimed-type-p fname args)
(add-fast-link fname return-type args))
(setq args (mapcar #'(lambda (form) (info-type (cadr form))) args))
(when (if *safe-compile*
(setq x (get fname 'inline-safe))
(setq x (get fname 'inline-unsafe)))
(dolist** (y x nil)
(when (setq ii (inline-type-matches y args return-type))
(return-from get-inline-info ii))))
(when (setq x (get fname 'inline-always))
(dolist** (y x)
(when (setq ii (inline-type-matches y args return-type))
(return-from get-inline-info ii))))
(dolist* (x *inline-functions*)
(when (and (eq (car x) fname)
(setq ii (inline-type-matches (cdr x) args return-type)))
(return-from get-inline-info ii)))
nil)
(defun inline-type-matches (inline-info arg-types return-type
&aux (rts nil))
(if (not (typep (third inline-info) 'fixnum))
(fix-opt inline-info))
(if (member 'integer (car inline-info))
(return-from inline-type-matches nil))
(if (and (let ((types (car inline-info)))
(declare (object types))
(dolist** (arg-type arg-types (or (equal types '(*))
(endp types)))
(when (endp types) (return nil))
(cond ((equal types '(*))
(setq types '(t *))))
(cond ((eq (car types) 'fixnum-float)
(cond ((type>= 'fixnum arg-type)
(push 'fixnum rts))
((type>= 'long-float arg-type)
(push 'long-float rts))
((type>= 'short-float arg-type)
(push 'short-float rts))
(t (return nil))))
((type>= (car types) arg-type)
(push (car types) rts))
(t (return nil)))
(pop types)))
(type>= (cadr inline-info) return-type))
(cons (nreverse rts) (cdr inline-info))
nil)
)
(defun need-to-protect (forms types &aux ii)
(do ((forms forms (cdr forms))
(types types (cdr types)))
((endp forms) nil)
(declare (object forms types))
(let ((form (car forms)))
(declare (object form))
(case (car form)
(LOCATION)
(VAR
(when (or (args-info-changed-vars (caaddr form) (cdr forms))
(and (member (var-kind (caaddr form))
'(FIXNUM LONG-FLOAT SHORT-FLOAT))
(not (eq (car types)
(var-kind (caaddr form))))))
(return t)))
(CALL-GLOBAL
(let ((fname (caddr form)))
(declare (object fname))
(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)
'(fixnum long-float short-float))
(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 ()
(cond (*c-gc* (inc-inline-blocks)
(let ((tem (next-cvar)))
(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-integer 'wt-inline-integer 'wt-loc)
(si:putprop 'inline-character 'wt-inline-character 'wt-loc)
(si:putprop 'inline-long-float 'wt-inline-long-float 'wt-loc)
(si:putprop 'inline-short-float 'wt-inline-short-float 'wt-loc)
(defun wt-inline-loc (fun locs &aux (i 0) (max -1))
(declare (fixnum i max))
(cond ((stringp fun)
(when (char= (char (the string fun) 0) #\@)
(setq i 1)
(do ()
((char= (char (the string fun) i) #\;) (incf i))
(incf i)))
(do ((size (length (the string fun))))
((>= i size))
(declare (fixnum size ))
(let ((char (char (the string fun) i)))
(declare (character char))
(cond ((char= char #\#)
(let ((ch (char (the string fun)
(the fixnum (1+ i))))
(n 0))
(cond ((or (eql ch #\*) (eql ch #\?));#? ensures 'first' vararg is initialized
(let* ((f (char= (char fun (1- i)) #\())
(e (char= (char fun (+ 2 i)) #\)))
(locs (nthcdr (1+ 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))))
((digit-char-p ch 10)
(setq n (- (char-code ch)
(char-code #\0)))
(when (and
(> (length fun) (+ i 2))
(progn (setq ch (char (the string fun)
(+ i 2)))
(digit-char-p ch)))
(setq n (+ (* n 10)
(- (char-code ch)
(char-code #\0))))
(incf i))
(cond ((>= n max) (setq max n)))
(wt-loc (nth n locs)))))
(incf i 2))
(t
(princ char *compiler-output1*)
(incf i)))))
)
(t (apply fun locs))))
(defun wt-inline (side-effectp fun locs)
(declare (ignore side-effectp))
(wt-inline-loc fun locs))
(defun wt-inline-cond (side-effectp fun locs)
(declare (ignore side-effectp))
(wt "(") (wt-inline-loc fun locs) (wt "?Ct:Cnil)"))
(defun wt-inline-fixnum (side-effectp fun locs)
(declare (ignore side-effectp))
(when (zerop *space*) (wt "CMP"))
(wt "make_fixnum((long)(") (wt-inline-loc fun locs) (wt "))"))
(defun wt-inline-integer (side-effectp fun locs)
(declare (ignore side-effectp))
(wt "make_integer(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-character (side-effectp fun locs)
(declare (ignore side-effectp))
(wt "code_char(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-long-float (side-effectp fun locs)
(declare (ignore side-effectp))
(wt "make_longfloat(") (wt-inline-loc fun locs) (wt ")"))
(defun wt-inline-short-float (side-effectp fun locs)
(declare (ignore side-effectp))
(wt "make_shortfloat(") (wt-inline-loc fun locs) (wt ")"))
(defun args-cause-side-effect (forms &aux ii)
(dolist** (form forms nil)
(case (car form)
((LOCATION VAR structure-ref))
(CALL-GLOBAL
(let ((fname (caddr form)))
(declare (object fname))
(unless (and (inline-possible fname)
(setq ii (get-inline-info
fname (cadddr form)
(info-type (cadr form))))
(progn (fix-opt ii)
(not (flag-p (caddr ii) side-effect-p)))
)
(return t))))
(otherwise (return t)))))
;;; Borrowed from CMPOPT.LSP
(defun list-inline (&rest x &aux tem (n (length x)))
(cond ((setq tem
(and (consp *value-to-go*)
(eq (car *value-to-go*) 'var)
(eq (var-type (second *value-to-go*)) :dynamic-extent)))
(wt "(ALLOCA_CONS(" n "),ON_STACK_LIST(" n))
(t (wt "list(" (length x))))
(dolist (loc x) (wt #\, loc))
(wt #\))
(if tem (wt #\)))
)
(defun list*-inline (&rest 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 #\)))))
;;; Borrowed from LFUN_LIST.LSP
(defun defsysfun (fname cname-string arg-types return-type
never-change-special-var-p predicate)
;;; The value NIL for each parameter except for fname means "not known".
(when cname-string (si:putprop fname cname-string 'Lfun))
(when arg-types
(si:putprop fname (mapcar #'(lambda (x)
(if (eq x '*) '* (type-filter x)))
arg-types) 'arg-types))
(when return-type
(let ((rt (function-return-type (if (atom return-type)
(list return-type)
return-type))))
(or (consp rt) (setq rt (list rt)))
(si:putprop fname (if (null (cdr rt)) (car rt) (cons 'values rt))
'return-type)))
(when never-change-special-var-p (si:putprop fname t 'no-sp-change))
(when predicate (si:putprop fname t 'predicate))
)
|