live-interval ( vreg -- live-interval )


Vocabulary
compiler.cfg.linear-scan.live-intervals

Definition
USING: assocs compiler.cfg.registers
compiler.cfg.ssa.destruction.leaders cpu.architecture kernel
namespaces ;

IN: compiler.cfg.linear-scan.live-intervals

: live-interval ( vreg -- live-interval )
leader live-intervals get
[ dup rep-of reg-class-of <live-interval> ] cache ;