Rename ir-complete to ir-normalize
authorDavid Vázquez <davazp@gmail.com>
Thu, 16 May 2013 14:52:49 +0000 (15:52 +0100)
committerDavid Vázquez <davazp@gmail.com>
Thu, 16 May 2013 14:52:49 +0000 (15:52 +0100)
experimental/compiler.lisp

index f7137fb..3f8dd29 100644 (file)
 ;;;; translators. This function ss intended to do the initial
 ;;;; conversion as well as insert new IR code during optimizations.
 ;;;;
-;;;; The function `ir-complete' will coalesce basic blocks in a
+;;;; The function `ir-normalize' will coalesce basic blocks in a
 ;;;; component to generate proper maximal basic blocks.
 
 ;;; A alist of IR translator functions.
         (return-lvar (make-lvar)))
     (with-component-compilation (name)
       (ir-convert `(progn ,@body) return-lvar)
-      (ir-complete)
+      (ir-normalize)
       (setq component *component*))
     (let ((functional
            (make-functional
           (setf (block-pred next) (substitute block succ (block-pred next))))
         t))))
 
-(defun ir-complete (&optional (component *component*))
+(defun ir-normalize (&optional (component *component*))
   (do-blocks-backward (block component)
     (maybe-coalesce-block block)
     (when (empty-block-p block)
 
 ;;; Translate FORM into IR and print a textual repreresentation of the
 ;;; component.
-(defun convert-toplevel-and-print (form &optional (complete t))
+(defun convert-toplevel-and-print (form &optional (normalize t))
   (let ((*counter-alist* nil))
     (with-component-compilation ('toplevel)
       (ir-convert form (make-lvar :id "out"))
-      (when complete (ir-complete))
+      (when normalize (ir-normalize))
       (check-ir-consistency)
       (print-component *component*))))