height-changes ( #shuffle -- height-changes )
Final stage of compilation generates machine code from dataflow IR

Prev:end-branch ( block/f -- pair/f )
Next:out-vregs/stack ( #shuffle -- pair )


Vocabulary
compiler.cfg.builder

Inputs
#shufflea #shuffle


Outputs
height-changesa pair


Word description
Returns a two-tuple which represents how much the #shuffle node increases or decreases the data and retainstacks.

Examples
USING: compiler.cfg.builder compiler.tree prettyprint ; T{ #shuffle { in-d { 37 81 92 } } { out-d { 20 } } } height-changes .
{ -2 0 }


Definition