factor/basis/compiler/tree/cleanup/cleanup-docs.factor

10 lines
485 B
Factor
Raw Normal View History

USING: help.markup help.syntax sequences ;
IN: compiler.tree.cleanup
ARTICLE: "compiler.tree.cleanup" "Cleanup Phase"
"A phase run after propagation to finish the job, so to speak. Codifies speculative inlining decisions, deletes branches marked as never taken, and flattens local recursive blocks that do not call themselves." ;
2015-06-06 00:22:50 -04:00
HELP: cleanup-tree
{ $values { "nodes" sequence } { "nodes'" sequence } }
2015-06-06 00:22:50 -04:00
{ $description "Main entry point for the cleanup-tree optimization phase." } ;