factor/basis/compiler/cfg/block-joining/block-joining-docs.factor

12 lines
532 B
Factor
Raw Normal View History

2015-03-16 05:00:21 -04:00
USING: compiler.cfg compiler.cfg.instructions help.markup help.syntax ;
IN: compiler.cfg.block-joining
HELP: join-block?
{ $values { "bb" basic-block } { "?" "a boolean" } }
{ $description "Whether the block can be joined with its predecessor or not." } ;
2015-03-16 05:00:21 -04:00
ARTICLE: "compiler.cfg.block-joining" "Block Joining"
"Joining blocks that are not calls and are connected by a single CFG edge. This pass does not update " { $link ##phi } " nodes and should therefore only run before stack analysis." ;
ABOUT: "compiler.cfg.block-joining"