Some typos in comments
authorDavid Vázquez <davazp@gmail.com>
Sat, 11 May 2013 00:37:04 +0000 (01:37 +0100)
committerDavid Vázquez <davazp@gmail.com>
Sat, 11 May 2013 00:39:05 +0000 (01:39 +0100)
experimental/compiler.lisp

index 19ace52..dad4c56 100644 (file)
 
 ;;;; Lexical environment
 ;;;;
-;;;; The Lexical environment is compromised of a list of bindings,
-;;;; which associates information to symbols. It tracks lexical
-;;;; variables, tags, local declarations and many other information in
-;;;; order to guide the compiler.
+;;;; The Lexical environment comprises a list of bindings, which
+;;;; associates information to symbols. It tracks lexical variables,
+;;;; tags, local declarations and many other information in order to
+;;;; guide the compiler.
 
 (defstruct binding
   name type value declarations)
   entry
   exit)
 
-;;; Create a new component, compromised of the sentinel nodes and a
-;;; empty basic block, ready to start conversion to IR. It returnes
-;;; the component and the basic block as multiple values.
+;;; Create a new component with sentinel nodes and an empty basic
+;;; block, ready to start conversion to IR. It returns the component
+;;; and the basic block as multiple values.
 (defun make-empty-component ()
   (let ((entry (make-component-entry))
         (block (make-empty-block))
 ;;; both keywords are specified inconsistently, or if the nodes do not
 ;;; belong to BLOCK.
 ;;;
-;;; The special values :ENTRY and :EXIT stands for the entry and exit
+;;; The special values :ENTRY and :EXIT stand for the entry and exit
 ;;; nodes of the block respectively.
 (defun cursor (&key (block (cursor-block *cursor*))
                  (before nil before-p)
     (print-component *component*)))
 
 
+
+
+;;;; Code generation
+
+
+(defun relooper (component)
+  )
+
+
+
+
+
 ;;; compiler.lisp ends here