compiler.cfg.linear-scan.allocation.splitting: Docs

locals-and-roots
Björn Lindqvist 2016-04-22 12:16:46 +02:00
parent 951c0586f0
commit cf74a4dc0f
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
USING: compiler.cfg.linear-scan.live-intervals help.markup help.syntax
math ;
IN: compiler.cfg.linear-scan.allocation.splitting
HELP: split-interval
{ $values
{ "live-interval" live-interval-state }
{ "n" integer }
{ "before" live-interval-state }
{ "after" live-interval-state }
} { $description "Splits the interval in two around the flow point 'n'." } ;
ARTICLE: "compiler.cfg.linear-scan.allocation.splitting" "Live interval splitting"
"This vocab splits live intervals." ;
ABOUT: "compiler.cfg.linear-scan.allocation.splitting"