diff --git a/basis/compiler/cfg/def-use/def-use-docs.factor b/basis/compiler/cfg/def-use/def-use-docs.factor new file mode 100644 index 0000000000..98ac98605a --- /dev/null +++ b/basis/compiler/cfg/def-use/def-use-docs.factor @@ -0,0 +1,24 @@ +USING: compiler.cfg.instructions help.markup help.syntax sequences ; +IN: compiler.cfg.def-use + +HELP: defs-vregs +{ $values { "insn" insn } { "seq" sequence } } +{ $description "Returns the sequence of vregs defined, or introduced, by this instruction." } +{ $examples + { $example + "USING: compiler.cfg.def-use prettyprint ;" + "T{ ##peek f 37 D 0 0 } defs-vregs ." + "{ 37 }" + } +} ; + +HELP: uses-vregs +{ $values { "insn" insn } { "seq" sequence } } +{ $description "Returns the sequence of vregs used by this instruction." } +{ $examples + { $example + "USING: compiler.cfg.def-use prettyprint ;" + "T{ ##replace f 37 D 1 6 } uses-vregs ." + "{ 37 }" + } +} ; diff --git a/basis/compiler/cfg/dependence/dependence-docs.factor b/basis/compiler/cfg/dependence/dependence-docs.factor new file mode 100644 index 0000000000..cc9cdbd47c --- /dev/null +++ b/basis/compiler/cfg/dependence/dependence-docs.factor @@ -0,0 +1,6 @@ +USING: compiler.cfg.instructions help.markup help.syntax sequences ; +IN: compiler.cfg.dependence + +HELP: +{ $values { "insn" insn } { "node" node } } +{ $description "Creates a new dependency graph node from an CFG instruction." } ; diff --git a/basis/compiler/cfg/scheduling/scheduling-docs.factor b/basis/compiler/cfg/scheduling/scheduling-docs.factor new file mode 100644 index 0000000000..5a61168c86 --- /dev/null +++ b/basis/compiler/cfg/scheduling/scheduling-docs.factor @@ -0,0 +1,10 @@ +USING: compiler.cfg compiler.cfg.height help.markup help.syntax sequences ; +IN: compiler.cfg.scheduling + +HELP: number-insns +{ $values { "insns" sequence } } +{ $description "Assigns a sequence number to the " { $slot "insn#" } " slot of each instruction in the sequence." } ; + +HELP: schedule-instructions +{ $values { "cfg" cfg } { "cfg'" cfg } } +{ $description "Performs a instruction scheduling optimization pass over the CFG to attempt to reduce the number of spills. The step must be performed after " { $link normalize-height } " or else invalid peeks might be inserted into the CFG." } ;