From bf473ec943ad73a8d020d350042015db5bd35f34 Mon Sep 17 00:00:00 2001
From: John Benediktsson <mrjbq7@gmail.com>
Date: Sun, 8 Jun 2014 18:20:27 -0700
Subject: [PATCH] compiler.cfg: fix some docs.

---
 basis/compiler/cfg/builder/alien/boxing/boxing-docs.factor | 1 +
 basis/compiler/cfg/builder/blocks/blocks-docs.factor       | 2 +-
 basis/compiler/cfg/builder/builder-docs.factor             | 5 ++---
 basis/compiler/cfg/linearization/linearization-docs.factor | 2 +-
 basis/compiler/cfg/rpo/rpo-docs.factor                     | 2 +-
 basis/compiler/cfg/stacks/local/local-docs.factor          | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/basis/compiler/cfg/builder/alien/boxing/boxing-docs.factor b/basis/compiler/cfg/builder/alien/boxing/boxing-docs.factor
index d78554063e..8305754e66 100644
--- a/basis/compiler/cfg/builder/alien/boxing/boxing-docs.factor
+++ b/basis/compiler/cfg/builder/alien/boxing/boxing-docs.factor
@@ -7,6 +7,7 @@ HELP: box
   { "vregs" "a one-element sequence containing a virtual register indentifier" }
   { "reps" "a one-element sequence containing a representation symbol" }
   { "c-type" c-type }
+  { "dst" "box" }
 }
 { $description "Emits a " { $link ##box-alien } " instruction which boxes an alien value contained in the given register." }
 { $examples
diff --git a/basis/compiler/cfg/builder/blocks/blocks-docs.factor b/basis/compiler/cfg/builder/blocks/blocks-docs.factor
index fd7a0a752d..c7e8ff7ee6 100644
--- a/basis/compiler/cfg/builder/blocks/blocks-docs.factor
+++ b/basis/compiler/cfg/builder/blocks/blocks-docs.factor
@@ -15,7 +15,7 @@ HELP: call-height
 { $description "Calculates how many items a " { $link #call } " will add or remove from the data stack." }
 { $examples
   { $example
-    "USING: compiler.cfg.builder.blocks prettyprint ;"
+    "USING: compiler.cfg.builder.blocks compiler.tree.builder prettyprint sequences ;"
     "[ 3append ] build-tree second call-height ."
     "-2"
   }
diff --git a/basis/compiler/cfg/builder/builder-docs.factor b/basis/compiler/cfg/builder/builder-docs.factor
index 842bd332b7..7700636c8e 100644
--- a/basis/compiler/cfg/builder/builder-docs.factor
+++ b/basis/compiler/cfg/builder/builder-docs.factor
@@ -44,11 +44,10 @@ HELP: procedures
 { $var-description "Used as a temporary storage for the current cfg during construction of all cfgs." } ;
 
 HELP: make-input-map
-{ $values { "#call" #call } { "assoc" assoc } }
+{ $values { "#shuffle" #shuffle } { "assoc" assoc } }
 { $description "Creates an " { $link assoc } " that maps input values to the shuffle operation to stack locations." }
 { $examples { $unchecked-example $[ ex-make-input-map ] } } ;
 
-
 HELP: emit-call
 { $values { "word" word } { "height" number } }
 { $description "Emits a call to the given word to the " { $link cfg } " being constructed. \"height\" is the number of items being added to or removed from the data stack. Side effects of the word is that it modifies the \"basic-block\" and " { $link current-height } " variables." }
@@ -71,7 +70,7 @@ HELP: trivial-branch?
 { $description "Checks whether nodes is a trivial branch or not. The branch is counted as trivial if all it does is push a literal value on the stack." }
 { $examples
   { $example
-    "USING: compiler.cfg.builder prettyprint ;"
+    "USING: compiler.cfg.builder compiler.tree prettyprint ;"
     "{ T{ #push { literal 25 } } } trivial-branch? . ."
     "t\n25"
   }
diff --git a/basis/compiler/cfg/linearization/linearization-docs.factor b/basis/compiler/cfg/linearization/linearization-docs.factor
index cc99891689..4d42594b99 100644
--- a/basis/compiler/cfg/linearization/linearization-docs.factor
+++ b/basis/compiler/cfg/linearization/linearization-docs.factor
@@ -5,7 +5,7 @@ IN: compiler.cfg.linearization
 HELP: linearization-order
 { $values
   { "cfg" cfg }
-  { "bb" sequence }
+  { "bbs" sequence }
 }
 { $description "Lists the basic blocks in linearization order. That is, the order in which they will be written in the generated assembly code." }
 { $see-also generate } ;
diff --git a/basis/compiler/cfg/rpo/rpo-docs.factor b/basis/compiler/cfg/rpo/rpo-docs.factor
index 73e3c8eee0..22f91bdc50 100644
--- a/basis/compiler/cfg/rpo/rpo-docs.factor
+++ b/basis/compiler/cfg/rpo/rpo-docs.factor
@@ -6,7 +6,7 @@ HELP: number-blocks
 { $description "Initializes the " { $slot "number" } " slot of each " { $link basic-block } "." }
 { $examples
   { $example
-    "USING: compiler.cfg compiler.cfg.rpo prettyprint ;"
+    "USING: accessors compiler.cfg compiler.cfg.rpo kernel prettyprint sequences ;"
     "10 [ <basic-block> ] replicate dup number-blocks [ number>> ] map ."
     "{ 9 8 7 6 5 4 3 2 1 0 }"
   }
diff --git a/basis/compiler/cfg/stacks/local/local-docs.factor b/basis/compiler/cfg/stacks/local/local-docs.factor
index 691b8061e0..8fff7d90c0 100644
--- a/basis/compiler/cfg/stacks/local/local-docs.factor
+++ b/basis/compiler/cfg/stacks/local/local-docs.factor
@@ -9,7 +9,7 @@ HELP: translate-local-loc
 { $description "Translates an absolute stack location to one that is relative to the current stacks height as given in " { $link current-height } "." }
 { $examples
   { $example
-    "USING: compiler.cfg.stacks.local prettyprint ;"
+    "USING: compiler.cfg.stacks.local compiler.cfg.registers namespaces prettyprint ;"
     "T{ current-height { d 3 } } current-height set D 7 translate-local-loc ."
     "D 4"
   }