]> gitweb.factorcode.org Git - factor.git/blob - basis/stack-checker/state/state-docs.factor
stack-checker,compiler: docs for stack-checker and compiler words
[factor.git] / basis / stack-checker / state / state-docs.factor
1 USING: help.markup help.syntax quotations sequences ;
2 IN: stack-checker.state
3
4 HELP: meta-d
5 { $values { "stack" sequence } }
6 { $description "Compile-time data stack." } ;
7
8 HELP: meta-r
9 { $values { "stack" sequence } }
10 { $description "Compile-time retain stack." } ;
11
12 HELP: literals
13 { $var-description "Uncommitted literals. This is a form of local dead-code elimination; the goal is to reduce the number of IR nodes which get constructed. Technically it is redundant since we do global DCE later, but it speeds up compile time." } ;