src/codegen-proto.lisp (definst): Name the argnames `public' and `private'.
[sod] / src / codegen-proto.lisp
CommitLineData
1f1d88f5
MW
1;;; -*-lisp-*-
2;;;
dea4d055 3;;; Code generation protocol
1f1d88f5
MW
4;;;
5;;; (c) 2009 Straylight/Edgeware
6;;;
7
8;;;----- Licensing notice ---------------------------------------------------
9;;;
e0808c47 10;;; This file is part of the Sensible Object Design, an object system for C.
1f1d88f5
MW
11;;;
12;;; SOD is free software; you can redistribute it and/or modify
13;;; it under the terms of the GNU General Public License as published by
14;;; the Free Software Foundation; either version 2 of the License, or
15;;; (at your option) any later version.
16;;;
17;;; SOD is distributed in the hope that it will be useful,
18;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;;; GNU General Public License for more details.
21;;;
22;;; You should have received a copy of the GNU General Public License
23;;; along with SOD; if not, write to the Free Software Foundation,
24;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26(cl:in-package #:sod)
27
28;;;--------------------------------------------------------------------------
29;;; Temporary names.
30
dea4d055
MW
31;; Protocol.
32
33(export 'format-temporary-name)
34(defgeneric format-temporary-name (var stream)
1f1d88f5 35 (:documentation
dea4d055 36 "Write the name of a temporary variable VAR to STREAM."))
1f1d88f5 37
dea4d055
MW
38(export 'var-in-use-p)
39(defgeneric var-in-use-p (var)
40 (:documentation
3109662a 41 "Answer whether VAR is currently being used. See `with-temporary-var'.")
dea4d055
MW
42 (:method (var)
43 "Non-temporary variables are always in use."
1d8cc67a 44 (declare (ignore var))
dea4d055
MW
45 t))
46(defgeneric (setf var-in-use-p) (value var)
47 (:documentation
3109662a 48 "Record whether VAR is currently being used. See `with-temporary-var'."))
1f1d88f5 49
dea4d055 50;; Root class.
1f1d88f5 51
1344e1f9 52(export '(temporary-name temp-tag))
dea4d055
MW
53(defclass temporary-name ()
54 ((tag :initarg :tag :reader temp-tag))
55 (:documentation
56 "Base class for temporary variable and argument names."))
1f1d88f5 57
dea4d055 58;; Important temporary names.
1f1d88f5 59
dea4d055 60(export '(*sod-ap* *sod-master-ap*))
1f1d88f5
MW
61(defparameter *sod-ap*
62 (make-instance 'temporary-name :tag "sod__ap"))
63(defparameter *sod-master-ap*
64 (make-instance 'temporary-name :tag "sod__master_ap"))
2bbe0f1d
MW
65(defparameter *sod-tmp-ap*
66 (make-instance 'temporary-name :tag "sod__tmp_ap"))
1d8206e9
MW
67(defparameter *sod-tmp-val*
68 (make-instance 'temporary-name :tag "sod__t"))
43073476
MW
69(defparameter *sod-keywords*
70 (make-instance 'temporary-name :tag "sod__kw"))
71(defparameter *sod-key-pointer*
72 (make-instance 'temporary-name :tag "sod__keys"))
1f1d88f5 73
944caf84
MW
74(export '*null-pointer*)
75(defparameter *null-pointer* "NULL")
76
1f1d88f5
MW
77;;;--------------------------------------------------------------------------
78;;; Instructions.
79
dea4d055
MW
80;; Classes.
81
82(export 'inst)
1f1d88f5
MW
83(defclass inst () ()
84 (:documentation
85 "A base class for instructions.
86
87 An `instruction' is anything which might be useful to string into a code
9ec578d9
MW
88 generator. Both statements and expressions can be represented by trees of
89 instructions. The `definst' macro is a convenient way of defining new
90 instructions.
1f1d88f5
MW
91
92 The only important protocol for instructions is output, which is achieved
3109662a 93 by calling `print-object' with `*print-escape*' nil.
1f1d88f5
MW
94
95 This doesn't really do very much, but it acts as a handy marker for
96 instruction subclasses."))
97
dea4d055 98(export 'inst-metric)
1f1d88f5
MW
99(defgeneric inst-metric (inst)
100 (:documentation
101 "Returns a `metric' describing how complicated INST is.
102
3109662a
MW
103 The default metric of an inst node is simply 1; `inst' subclasses
104 generated by `definst' (q.v.) have an automatically generated method which
105 returns one plus the sum of the metrics of the node's children.
1f1d88f5
MW
106
107 This isn't intended to be a particularly rigorous definition. Its purpose
108 is to allow code generators to make decisions about inlining or calling
109 code fairly simply.")
9ec578d9
MW
110 (:method ((inst t))
111 (declare (ignore inst))
112 1)
113 (:method ((inst null))
1d8cc67a 114 (declare (ignore inst))
9ec578d9
MW
115 1)
116 (:method ((inst list))
117 (reduce #'+ inst :key #'inst-metric)))
1f1d88f5 118
dea4d055
MW
119;; Instruction definition.
120
121(export 'definst)
418752c5 122(defmacro definst (code (streamvar &key export) args &body body)
1f1d88f5
MW
123 "Define an instruction type and describe how to output it.
124
3109662a
MW
125 An `inst' can represent any structured piece of output syntax: a
126 statement, expression or declaration, for example. This macro defines the
127 following things:
1f1d88f5 128
3109662a 129 * A class `CODE-inst' to represent the instruction.
1f1d88f5
MW
130
131 * Instance slots named after the ARGS, with matching keyword initargs,
3109662a 132 and `inst-ARG' readers.
1f1d88f5 133
167524b5
MW
134 * A constructor `make-CODE-inst' which accepts the ARGS (as an ordinary
135 BVL) as arguments and returns a fresh instance.
1f1d88f5 136
3109662a 137 * A print method, which prints a diagnostic dump if `*print-escape*' is
1f1d88f5
MW
138 set, or invokes the BODY (with STREAMVAR bound to the output stream)
139 otherwise. The BODY is expected to produce target code at this
418752c5
MW
140 point.
141
8db2259b
MW
142 The ARGS are an ordinary lambda-list, with the following quirks:
143
144 * Where an argument-name symbol is expected (as opposed to a list), a
145 list (ARG SLOT) may be written instead. This allows the slots to be
146 named independently of the argument names, which is handy if they'd
147 otherwise conflict with exported symbol names.
148
149 * If an argument name begins with a `%' character, then the `%' is
150 stripped off, except when naming the actual slot. Hence, `%FOO' is
151 equivalent to a list `(FOO %FOO)', except that a `%'-symbol can be
152 used even where the lambda-list syntax permits a list.
153
418752c5
MW
154 If EXPORT is non-nil, then export the `CODE-inst' and `make-CODE-inst'
155 symbols."
1f1d88f5 156
7a32048d 157 (multiple-value-bind (bvl public private)
8db2259b
MW
158 (let ((state :mandatory)
159 (bvl (make-list-builder))
7a32048d
MW
160 (public (make-list-builder))
161 (private (make-list-builder)))
8db2259b
MW
162 (labels ((recurse-arg (arg path)
163 (cond ((symbolp arg)
164 (let ((name (symbol-name arg)))
165 (if (and (plusp (length name))
166 (char= (char name 0) #\%))
7a32048d
MW
167 (let ((public (intern (subseq name 1))))
168 (values public public arg))
8db2259b
MW
169 (values arg arg arg))))
170 ((atom arg)
171 (error "Unexpected item ~S in lambda-list." arg))
172 ((null path)
7a32048d 173 (multiple-value-bind (public private)
8db2259b
MW
174 (if (cdr arg) (values (car arg) (cadr arg))
175 (values (car arg) (car arg)))
7a32048d 176 (values public public private)))
8db2259b
MW
177 (t
178 (let* ((step (car path))
179 (mine (nthcdr step arg)))
7a32048d 180 (multiple-value-bind (full public private)
8db2259b
MW
181 (recurse-arg (car mine) (cdr path))
182 (values (append (subseq arg 0 step)
183 full
184 (cdr mine))
7a32048d
MW
185 public
186 private))))))
8db2259b 187 (hack-arg (arg maxdp)
7a32048d 188 (multiple-value-bind (full public-name private-name)
8db2259b
MW
189 (recurse-arg arg maxdp)
190 (lbuild-add bvl full)
7a32048d
MW
191 (lbuild-add public public-name)
192 (lbuild-add private private-name))))
8db2259b
MW
193 (dolist (arg args)
194 (cond ((or (eq arg '&optional)
195 (eq arg '&rest)
196 (eq arg '&key)
197 (eq arg '&aux))
198 (setf state arg)
199 (lbuild-add bvl arg))
200 ((eq arg '&allow-other-keys)
201 (lbuild-add bvl arg))
202 ((or (eq state :mandatory)
203 (eq state '&rest))
204 (hack-arg arg '()))
205 ((or (eq state '&optional)
206 (eq state '&aux))
207 (hack-arg arg '(0)))
208 ((eq state '&key)
209 (hack-arg arg '(0 1)))
210 (t
211 (error "Confusion in ~S!" 'definst)))))
212 (values (lbuild-list bvl)
7a32048d
MW
213 (lbuild-list public)
214 (lbuild-list private)))
8db2259b
MW
215 (let* ((inst-var (gensym "INST"))
216 (class-name (symbolicate code '-inst))
217 (constructor-name (symbolicate 'make- code '-inst))
218 (keys (mapcar (lambda (arg) (intern (symbol-name arg) :keyword))
7a32048d 219 public)))
8db2259b
MW
220 `(progn
221 (defclass ,class-name (inst)
7a32048d
MW
222 ,(mapcar (lambda (public-slot private-slot key)
223 `(,private-slot :initarg ,key
224 :reader ,(symbolicate 'inst- public-slot)))
225 public private keys))
8db2259b 226 (defun ,constructor-name (,@bvl)
7a32048d 227 (make-instance ',class-name ,@(mappend #'list keys public)))
8db2259b 228 (defmethod inst-metric ((,inst-var ,class-name))
7a32048d
MW
229 (with-slots (,@private) ,inst-var
230 (+ 1 ,@(mapcar (lambda (slot) `(inst-metric ,slot)) private))))
8db2259b 231 (defmethod print-object ((,inst-var ,class-name) ,streamvar)
7a32048d 232 (with-slots ,(mapcar #'list public private) ,inst-var
8db2259b
MW
233 (if *print-escape*
234 (print-unreadable-object (,inst-var ,streamvar :type t)
235 (format stream "~@<~@{~S ~@_~S~^ ~_~}~:>"
7a32048d 236 ,@(mappend #'list keys public)))
8db2259b
MW
237 (block ,code ,@body))))
238 ,@(and export `((export '(,class-name ,constructor-name
239 ,@(mapcar (lambda (slot)
240 (symbolicate 'inst- slot))
7a32048d 241 public)))))
8db2259b 242 ',code))))
1f1d88f5 243
dea4d055
MW
244;; Formatting utilities.
245
1f1d88f5 246(defun format-compound-statement* (stream child morep thunk)
3109662a 247 "Underlying function for `format-compound-statement'."
1f1d88f5
MW
248 (cond ((typep child 'block-inst)
249 (funcall thunk stream)
250 (write-char #\space stream)
251 (princ child stream)
252 (when morep (write-char #\space stream)))
253 (t
254 (pprint-logical-block (stream nil)
255 (funcall thunk stream)
256 (write-char #\space stream)
257 (pprint-indent :block 2 stream)
258 (pprint-newline :linear stream)
259 (princ child stream)
243cffbf
MW
260 (pprint-indent :block 0 stream))
261 (case morep
262 (:space
263 (write-char #\space stream)
264 (pprint-newline :linear stream))
265 ((t)
266 (pprint-newline :mandatory stream))))))
1f1d88f5 267
dea4d055 268(export 'format-compound-statement)
1f1d88f5
MW
269(defmacro format-compound-statement
270 ((stream child &optional morep) &body body)
271 "Format a compound statement to STREAM.
272
273 The introductory material is printed by BODY. The CHILD is formatted
3109662a 274 properly according to whether it's a `block-inst'. If MOREP is true, then
1f1d88f5
MW
275 allow for more stuff following the child."
276 `(format-compound-statement* ,stream ,child ,morep
277 (lambda (,stream) ,@body)))
278
7de8c666
MW
279(export 'format-banner-comment)
280(defun format-banner-comment (stream control &rest args)
281 (format stream "~@</~@<* ~@;~?~:>~_ */~:>" control args))
282
77d83e01
MW
283;; Important instruction classes.
284
285;; HACK: Some of the slot names we'd like to use are external symbols in our
286;; package or the `common-lisp' package. Use gensyms for these slot names to
287;; prevent them from leaking.
288
8db2259b 289(definst var (stream :export t) (name %type &optional init)
243cffbf 290 (pprint-logical-block (stream nil)
8db2259b 291 (pprint-c-type type stream name)
243cffbf
MW
292 (when init
293 (format stream " = ~2I~_~A" init))
294 (write-char #\; stream)))
77d83e01 295
7de8c666 296(definst function (stream :export t)
8db2259b 297 (name %type body &optional %banner &rest banner-args)
77d83e01 298 (pprint-logical-block (stream nil)
8db2259b
MW
299 (when banner
300 (apply #'format-banner-comment stream banner banner-args)
7de8c666 301 (pprint-newline :mandatory stream))
77d83e01 302 (princ "static " stream)
8db2259b 303 (pprint-c-type type stream name)
77d83e01
MW
304 (format stream "~:@_~A~:@_~:@_" body)))
305
306;; Expression statements.
8db2259b
MW
307(definst expr (stream :export t) (%expr)
308 (format stream "~A;" expr))
309(definst set (stream :export t) (var %expr)
310 (format stream "~@<~A = ~2I~_~A;~:>" var expr))
311(definst update (stream :export t) (var op %expr)
312 (format stream "~@<~A ~A= ~2I~_~A;~:>" var op expr))
77d83e01
MW
313
314;; Special kinds of expressions.
8db2259b
MW
315(definst call (stream :export t) (%func &rest args)
316 (format stream "~@<~A~4I~_(~@<~{~A~^, ~_~}~:>)~:>" func args))
317(definst cond (stream :export t) (%cond conseq alt)
318 (format stream "~@<~A ~2I~@_~@<? ~A ~_: ~A~:>~:>" cond conseq alt))
77d83e01
MW
319
320;; Simple statements.
8db2259b
MW
321(definst return (stream :export t) (%expr)
322 (format stream "return~@[ (~A)~];" expr))
77d83e01
MW
323(definst break (stream :export t) ()
324 (format stream "break;"))
325(definst continue (stream :export t) ()
326 (format stream "continue;"))
327
328;; Compound statements.
329
7de8c666
MW
330(defvar *first-statement-p* t
331 "True if this is the first statement in a block.
332
333 This is used to communicate between `block-inst' and `banner-inst' so that
334 they get the formatting right between them.")
335
336(definst banner (stream :export t) (control &rest args)
337 (pprint-logical-block (stream nil)
338 (unless *first-statement-p* (pprint-newline :mandatory stream))
339 (apply #'format-banner-comment stream control args)))
340
341(export 'emit-banner)
342(defun emit-banner (codegen control &rest args)
343 (emit-inst codegen (apply #'make-banner-inst control args)))
344
77d83e01 345(definst block (stream :export t) (decls body)
e5573634
MW
346 (write-char #\{ stream)
347 (pprint-newline :mandatory stream)
348 (pprint-logical-block (stream nil)
349 (let ((newlinep nil))
350 (flet ((newline ()
351 (if newlinep
352 (pprint-newline :mandatory stream)
353 (setf newlinep t))))
354 (pprint-indent :block 2 stream)
355 (write-string " " stream)
356 (when decls
357 (dolist (decl decls)
358 (newline)
359 (write decl :stream stream))
360 (when body (newline)))
7de8c666
MW
361 (let ((*first-statement-p* t))
362 (dolist (inst body)
363 (newline)
364 (write inst :stream stream)
365 (setf *first-statement-p* nil))))))
e5573634
MW
366 (pprint-newline :mandatory stream)
367 (write-char #\} stream))
77d83e01 368
8db2259b 369(definst if (stream :export t) (%cond conseq &optional alt)
d6bb2ccd
MW
370 (let ((stmt "if"))
371 (loop (format-compound-statement (stream conseq (if alt t nil))
8db2259b 372 (format stream "~A (~A)" stmt cond))
d6bb2ccd
MW
373 (typecase alt
374 (null (return))
375 (if-inst (setf stmt "else if"
8db2259b 376 cond (inst-cond alt)
d6bb2ccd
MW
377 conseq (inst-conseq alt)
378 alt (inst-alt alt)))
379 (t (format-compound-statement (stream alt)
380 (format stream "else"))
381 (return))))))
77d83e01 382
8db2259b 383(definst while (stream :export t) (%cond body)
77d83e01 384 (format-compound-statement (stream body)
8db2259b 385 (format stream "while (~A)" cond)))
77d83e01 386
8db2259b 387(definst do-while (stream :export t) (body %cond)
77d83e01
MW
388 (format-compound-statement (stream body :space)
389 (write-string "do" stream))
8db2259b 390 (format stream "while (~A);" cond))
77d83e01 391
8db2259b 392(definst for (stream :export t) (init %cond update body)
2d8d81c5
MW
393 (format-compound-statement (stream body)
394 (format stream "for (~@<~@[~A~];~@[ ~_~A~];~@[ ~_~A~]~:>)"
8db2259b 395 init cond update)))
2d8d81c5 396
1f1d88f5 397;;;--------------------------------------------------------------------------
dea4d055 398;;; Code generation.
1f1d88f5 399
dea4d055 400;; Accessors.
1f1d88f5 401
dea4d055
MW
402(export 'codegen-functions)
403(defgeneric codegen-functions (codegen)
1f1d88f5 404 (:documentation
3109662a 405 "Return the list of `function-inst's of completed functions."))
1f1d88f5 406
dea4d055 407(export 'ensure-var)
1f1d88f5
MW
408(defgeneric ensure-var (codegen name type &optional init)
409 (:documentation
410 "Add a variable to CODEGEN's list.
411
3109662a 412 The variable is called NAME (which should be comparable using `equal' and
1f1d88f5 413 print to an identifier) and has the given TYPE. If INIT is present and
3109662a 414 non-nil it is an expression `inst' used to provide the variable with an
dea4d055 415 initial value."))
1f1d88f5 416
dea4d055
MW
417(export '(emit-inst emit-insts))
418(defgeneric emit-inst (codegen inst)
419 (:documentation
420 "Add INST to the end of CODEGEN's list of instructions."))
421(defgeneric emit-insts (codegen insts)
422 (:documentation
423 "Add a list of INSTS to the end of CODEGEN's list of instructions.")
424 (:method (codegen insts)
425 (dolist (inst insts) (emit-inst codegen inst))))
1f1d88f5 426
3f4ac959
MW
427(export '(emit-decl emit-decls))
428(defgeneric emit-decl (codegen inst)
429 (:documentation
430 "Add INST to the end of CODEGEN's list of declarations."))
431(defgeneric emit-decls (codegen insts)
432 (:documentation
433 "Add a list of INSTS to the end of CODEGEN's list of declarations."))
434
dea4d055 435(export 'codegen-push)
1f1d88f5
MW
436(defgeneric codegen-push (codegen)
437 (:documentation
438 "Pushes the current code generation state onto a stack.
439
dea4d055 440 The state consists of the accumulated variables and instructions."))
1f1d88f5 441
dea4d055 442(export 'codegen-pop)
1f1d88f5
MW
443(defgeneric codegen-pop (codegen)
444 (:documentation
445 "Pops a saved state off of the CODEGEN's stack.
446
447 Returns the newly accumulated variables and instructions as lists, as
dea4d055 448 separate values."))
1f1d88f5 449
dea4d055 450(export 'codegen-add-function)
1f1d88f5
MW
451(defgeneric codegen-add-function (codegen function)
452 (:documentation
453 "Adds a function to CODEGEN's list.
454
455 Actually, we're not picky: FUNCTION can be any kind of object that you're
3109662a 456 willing to find in the list returned by `codegen-functions'."))
dea4d055
MW
457
458(export 'temporary-var)
459(defgeneric temporary-var (codegen type)
460 (:documentation
461 "Return the name of a temporary variable.
462
463 The temporary variable will have the given TYPE, and will be marked
464 in-use. You should clear the in-use flag explicitly when you've finished
3109662a
MW
465 with the variable -- or, better, use `with-temporary-var' to do the
466 cleanup automatically."))
1f1d88f5 467
dea4d055 468(export 'codegen-build-function)
7de8c666
MW
469(defun codegen-build-function
470 (codegen name type vars insts &optional banner &rest banner-args)
1f1d88f5
MW
471 "Build a function and add it to CODEGEN's list.
472
473 Returns the function's name."
474 (codegen-add-function codegen
7de8c666
MW
475 (apply #'make-function-inst name type
476 (make-block-inst vars insts)
477 banner banner-args))
1f1d88f5
MW
478 name)
479
dea4d055
MW
480(export 'codegen-pop-block)
481(defgeneric codegen-pop-block (codegen)
482 (:documentation
3109662a 483 "Makes a block (`block-inst') out of the completed code in CODEGEN.")
dea4d055
MW
484 (:method (codegen)
485 (multiple-value-bind (vars insts) (codegen-pop codegen)
486 (make-block-inst vars insts))))
487
488(export 'codegen-pop-function)
7de8c666
MW
489(defgeneric codegen-pop-function
490 (codegen name type &optional banner &rest banner-args)
1f1d88f5
MW
491 (:documentation
492 "Makes a function out of the completed code in CODEGEN.
493
494 The NAME can be any object you like. The TYPE should be a function type
495 object which includes argument names. The return value is the NAME.")
7de8c666 496 (:method (codegen name type &optional banner &rest banner-args)
1f1d88f5 497 (multiple-value-bind (vars insts) (codegen-pop codegen)
7de8c666
MW
498 (apply #'codegen-build-function codegen name type vars insts
499 banner banner-args))))
1f1d88f5 500
dea4d055 501(export 'with-temporary-var)
1f1d88f5
MW
502(defmacro with-temporary-var ((codegen var type) &body body)
503 "Evaluate BODY with VAR bound to a temporary variable name.
504
505 During BODY, VAR will be marked in-use; when BODY ends, VAR will be marked
9ec578d9 506 available for re-use."
b8c698ee
MW
507 (multiple-value-bind (doc decls body) (parse-body body :docp nil)
508 (declare (ignore doc))
509 `(let ((,var (temporary-var ,codegen ,type)))
510 ,@decls
511 (unwind-protect
512 (progn ,@body)
513 (setf (var-in-use-p ,var) nil)))))
1f1d88f5
MW
514
515;;;--------------------------------------------------------------------------
516;;; Code generation idioms.
517
dea4d055 518(export 'deliver-expr)
1f1d88f5
MW
519(defun deliver-expr (codegen target expr)
520 "Emit code to deliver the value of EXPR to the TARGET.
521
522 The TARGET may be one of the following.
523
3109662a 524 * `:void', indicating that the value is to be discarded. The expression
1f1d88f5
MW
525 will still be evaluated.
526
3109662a
MW
527 * `:void-return', indicating that the value is to be discarded (as for
528 `:void') and furthermore a `return' from the current function should
529 be forced after computing the value.
1f1d88f5 530
3109662a
MW
531 * `:return', indicating that the value is to be returned from the
532 current function.
1f1d88f5
MW
533
534 * A variable name, indicating that the value is to be stored in the
535 variable.
536
3109662a
MW
537 In the cases of `:return', `:void' and `:void-return' targets, it is valid
538 for EXPR to be nil; this signifies that no computation needs to be
539 performed. Variable-name targets require an expression."
1f1d88f5
MW
540
541 (case target
542 (:return (emit-inst codegen (make-return-inst expr)))
543 (:void (when expr (emit-inst codegen (make-expr-inst expr))))
544 (:void-return (when expr (emit-inst codegen (make-expr-inst expr)))
545 (emit-inst codegen (make-return-inst nil)))
546 (t (emit-inst codegen (make-set-inst target expr)))))
547
dea4d055 548(export 'convert-stmts)
1f1d88f5 549(defun convert-stmts (codegen target type func)
3109662a 550 "Invoke FUNC to deliver a value to a non-`:return' target.
1f1d88f5 551
3109662a
MW
552 FUNC is a function which accepts a single argument, a non-`:return'
553 target, and generates statements which deliver a value (see
554 `deliver-expr') of the specified TYPE to this target. In general, the
555 generated code will have the form
1f1d88f5
MW
556
557 setup instructions...
3109662a 558 (deliver-expr CODEGEN TARGET (compute value...))
1f1d88f5
MW
559 cleanup instructions...
560
561 where the cleanup instructions are essential to the proper working of the
562 generated program.
563
3109662a
MW
564 The `convert-stmts' function will call FUNC to generate code, and arrange
565 that its value is correctly delivered to TARGET, regardless of what the
566 TARGET is -- i.e., it lifts the restriction to non-`:return' targets. It
567 does this by inventing a new temporary variable."
1f1d88f5
MW
568
569 (case target
570 (:return (with-temporary-var (codegen var type)
571 (funcall func var)
572 (deliver-expr codegen target var)))
573 (:void-return (funcall func :void)
574 (emit-inst codegen (make-return-inst nil)))
575 (t (funcall func target))))
576
357885be
MW
577(export 'deliver-call)
578(defun deliver-call (codegen target func &rest args)
579 "Emit a statement to call FUNC with ARGS and deliver the result to TARGET."
167524b5 580 (deliver-expr codegen target (apply #'make-call-inst func args)))
357885be 581
1f1d88f5 582;;;----- That's all, folks --------------------------------------------------