allocation-size ( insns -- n )


Vocabulary
compiler.cfg.gc-checks.private

Inputs
insnssequence of insn


Outputs
na number


Word description
Calculates the total number of bytes allocated by the instructions in a block.

Examples
USING: accessors compiler.cfg.debugger compiler.cfg.gc-checks.private kernel prettyprint sequences ; [ V{ } clone ] test-ssa first entry>> successors>> first instructions>> allocation-size .
32 ! 16 on 32-bit


Definition