compiler.cfg.linear-scan.allocation.state: help-lint fixes
parent
3718137969
commit
bb6fa7267c
|
@ -1,8 +1,8 @@
|
||||||
USING: assocs compiler.cfg compiler.cfg.instructions
|
USING: assocs compiler.cfg compiler.cfg.instructions
|
||||||
compiler.cfg.linear-scan.allocation
|
compiler.cfg.linear-scan.allocation
|
||||||
compiler.cfg.linear-scan.allocation.spilling
|
compiler.cfg.linear-scan.live-intervals compiler.cfg.stack-frame
|
||||||
compiler.cfg.linear-scan.live-intervals cpu.architecture heaps help.markup
|
cpu.architecture heaps help.markup help.syntax kernel math sequences
|
||||||
help.syntax kernel math sequences vectors ;
|
vectors ;
|
||||||
IN: compiler.cfg.linear-scan.allocation.state
|
IN: compiler.cfg.linear-scan.allocation.state
|
||||||
|
|
||||||
HELP: activate-intervals
|
HELP: activate-intervals
|
||||||
|
@ -18,7 +18,7 @@ HELP: add-active
|
||||||
{ $see-also active-intervals } ;
|
{ $see-also active-intervals } ;
|
||||||
|
|
||||||
HELP: align-spill-area
|
HELP: align-spill-area
|
||||||
{ $values { "align" integer } { "cfg" cfg } }
|
{ $values { "align" integer } { "stack-frame" stack-frame } }
|
||||||
{ $description "This word is used to ensure that the alignment of the spill area in the " { $link cfg } " is equal to the largest " { $link spill-slot } "." } ;
|
{ $description "This word is used to ensure that the alignment of the spill area in the " { $link cfg } " is equal to the largest " { $link spill-slot } "." } ;
|
||||||
|
|
||||||
HELP: assign-spill-slot
|
HELP: assign-spill-slot
|
||||||
|
@ -50,7 +50,11 @@ HELP: init-allocator
|
||||||
{ $see-also reg-class } ;
|
{ $see-also reg-class } ;
|
||||||
|
|
||||||
HELP: next-spill-slot
|
HELP: next-spill-slot
|
||||||
{ $values { "size" "number of bytes required" } { "cfg" cfg } { "spill-slot" spill-slot } }
|
{ $values
|
||||||
|
{ "size" "number of bytes required" }
|
||||||
|
{ "stack-frame" stack-frame }
|
||||||
|
{ "spill-slot" spill-slot }
|
||||||
|
}
|
||||||
{ $description "Creates a new " { $link spill-slot } " of the given size and also allocates space in the " { $link cfg } " in the cfg for it." } ;
|
{ $description "Creates a new " { $link spill-slot } " of the given size and also allocates space in the " { $link cfg } " in the cfg for it." } ;
|
||||||
|
|
||||||
HELP: progress
|
HELP: progress
|
||||||
|
|
Loading…
Reference in New Issue