{ $description "Performs register allocation of a " { $link sequence } " of live intervals. Each live interval is assigned a physical register and also a spill slot if it needs to be spilled." } ;
HELP:handle-sync-point
{ $values
{ "sync-point" sync-point }
{ "active-intervals"assoc }
}
{ $description "Removes from 'active-intervals' all intervals that were spilled at the sync point. Most of the time, all intervals are spilled. But it depends on if the sync point was constructed from a " { $link clobber-insn } " or " { $link hairy-clobber-insn } "." } ;
HELP:spill-at-sync-point
{ $values
{ "sync-point" sync-point }
{ "live-interval" live-interval-state }
{ "?""a boolean" }
}
{ $description "Maybe spills the live-interval at the given sync point. If the interval was spilled, then " { $link f } " is put on the stack to indicate that the interval isn't live anymore, " { $link t } " otherwise." }
{ $see-also spill-at-sync-point? } ;
HELP:spill-at-sync-point?
{ $values
{ "sync-point" sync-point }
{ "live-interval" live-interval-state }
{ "?""a boolean" }
}
{ $description "If the live interval has a definition at a keep-dst? sync-point, don't spill." } ;