Vocabularycompiler.
cfg.
stacks.
localInputsOutputsWord descriptionConverts a
height-state tuple to 0-2 stack height change instructions.
ExamplesIn this example the datastacks height is increased by 4 and the retainstacks decreased by 2.
USING: compiler.cfg.stacks.local prettyprint ;
T{ height-state f 0 0 4 -2 } height-state>insns .
{ T{ ##inc { loc D: 4 } } T{ ##inc { loc R: -2 } } }
Definition