2015-03-16 05:00:21 -04:00
USING: compiler.cfg compiler.cfg.instructions help.markup help.syntax ;
2014-08-06 10:39:29 -04:00
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
2015-04-08 02:20:55 -04:00
HELP: join-blocks
{ $values { "cfg" cfg } }
{ $description "A compiler pass when optimizing the cfg." } ;
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"