2009-07-23 21:54:38 -04:00
|
|
|
! Copyright (C) 2009 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-08-01 07:12:43 -04:00
|
|
|
USING: accessors assocs kernel math math.order namespaces sets make
|
|
|
|
sequences combinators fry
|
2009-07-24 04:37:18 -04:00
|
|
|
compiler.cfg
|
|
|
|
compiler.cfg.hats
|
|
|
|
compiler.cfg.instructions
|
|
|
|
compiler.cfg.registers
|
|
|
|
compiler.cfg.stacks.height
|
|
|
|
compiler.cfg.parallel-copy ;
|
2010-02-26 16:01:01 -05:00
|
|
|
FROM: namespaces => set ;
|
2009-07-23 21:54:38 -04:00
|
|
|
IN: compiler.cfg.stacks.local
|
|
|
|
|
2009-08-03 08:08:28 -04:00
|
|
|
! Local stack analysis. We build three sets for every basic block
|
|
|
|
! in the CFG:
|
|
|
|
! - peek-set: all stack locations that the block reads before writing
|
|
|
|
! - replace-set: all stack locations that the block writes
|
|
|
|
! - kill-set: all stack locations which become unavailable after the
|
|
|
|
! block ends because of the stack height being decremented
|
|
|
|
! This is done while constructing the CFG.
|
2009-07-23 21:54:38 -04:00
|
|
|
|
2009-08-01 07:12:43 -04:00
|
|
|
SYMBOLS: peek-sets replace-sets kill-sets ;
|
2009-07-23 21:54:38 -04:00
|
|
|
|
|
|
|
SYMBOL: locs>vregs
|
|
|
|
|
2009-08-08 05:02:18 -04:00
|
|
|
: loc>vreg ( loc -- vreg ) locs>vregs get [ drop next-vreg ] cache ;
|
2009-07-24 04:37:18 -04:00
|
|
|
: vreg>loc ( vreg -- loc/f ) locs>vregs get value-at ;
|
2009-07-23 21:54:38 -04:00
|
|
|
|
2009-08-01 07:12:43 -04:00
|
|
|
TUPLE: current-height
|
|
|
|
{ d initial: 0 }
|
|
|
|
{ r initial: 0 }
|
|
|
|
{ emit-d initial: 0 }
|
|
|
|
{ emit-r initial: 0 } ;
|
2009-07-23 21:54:38 -04:00
|
|
|
|
2009-07-24 04:37:18 -04:00
|
|
|
SYMBOLS: local-peek-set local-replace-set replace-mapping ;
|
2009-07-23 21:54:38 -04:00
|
|
|
|
|
|
|
GENERIC: translate-local-loc ( loc -- loc' )
|
|
|
|
M: ds-loc translate-local-loc n>> current-height get d>> - <ds-loc> ;
|
|
|
|
M: rs-loc translate-local-loc n>> current-height get r>> - <rs-loc> ;
|
|
|
|
|
2009-07-24 04:37:18 -04:00
|
|
|
: emit-stack-changes ( -- )
|
|
|
|
replace-mapping get dup assoc-empty? [ drop ] [
|
|
|
|
[ [ loc>vreg ] dip ] assoc-map parallel-copy
|
|
|
|
] if ;
|
|
|
|
|
2009-07-23 21:54:38 -04:00
|
|
|
: emit-height-changes ( -- )
|
|
|
|
current-height get
|
2011-11-11 22:48:38 -05:00
|
|
|
[ emit-d>> dup 0 = [ drop ] [ ##inc-d, ] if ]
|
|
|
|
[ emit-r>> dup 0 = [ drop ] [ ##inc-r, ] if ] bi ;
|
2009-07-24 04:37:18 -04:00
|
|
|
|
|
|
|
: emit-changes ( -- )
|
|
|
|
! Insert height and stack changes prior to the last instruction
|
|
|
|
building get pop
|
|
|
|
emit-stack-changes
|
|
|
|
emit-height-changes
|
2009-07-23 21:54:38 -04:00
|
|
|
, ;
|
|
|
|
|
|
|
|
! inc-d/inc-r: these emit ##inc-d/##inc-r to change the stack height later
|
|
|
|
: inc-d ( n -- )
|
|
|
|
current-height get
|
|
|
|
[ [ + ] change-emit-d drop ]
|
|
|
|
[ [ + ] change-d drop ]
|
|
|
|
2bi ;
|
|
|
|
|
|
|
|
: inc-r ( n -- )
|
|
|
|
current-height get
|
|
|
|
[ [ + ] change-emit-r drop ]
|
|
|
|
[ [ + ] change-r drop ]
|
|
|
|
2bi ;
|
|
|
|
|
|
|
|
: peek-loc ( loc -- vreg )
|
|
|
|
translate-local-loc
|
2009-08-19 23:00:21 -04:00
|
|
|
dup replace-mapping get at
|
|
|
|
[ ] [ dup local-peek-set get conjoin loc>vreg ] ?if ;
|
2009-07-23 21:54:38 -04:00
|
|
|
|
|
|
|
: replace-loc ( vreg loc -- )
|
2009-08-19 23:00:21 -04:00
|
|
|
translate-local-loc replace-mapping get set-at ;
|
2009-07-23 21:54:38 -04:00
|
|
|
|
2009-08-01 07:12:43 -04:00
|
|
|
: compute-local-kill-set ( -- assoc )
|
|
|
|
basic-block get current-height get
|
|
|
|
[ [ ds-heights get at dup ] [ d>> ] bi* [-] iota [ swap - <ds-loc> ] with map ]
|
2009-08-03 08:08:28 -04:00
|
|
|
[ [ rs-heights get at dup ] [ r>> ] bi* [-] iota [ swap - <rs-loc> ] with map ] 2bi
|
|
|
|
append unique ;
|
2009-08-01 07:12:43 -04:00
|
|
|
|
2009-07-23 21:54:38 -04:00
|
|
|
: begin-local-analysis ( -- )
|
|
|
|
H{ } clone local-peek-set set
|
2009-07-24 04:37:18 -04:00
|
|
|
H{ } clone replace-mapping set
|
2009-08-01 07:12:43 -04:00
|
|
|
current-height get
|
|
|
|
[ 0 >>emit-d 0 >>emit-r drop ]
|
|
|
|
[ [ d>> ] [ r>> ] bi basic-block get record-stack-heights ] bi ;
|
2009-07-23 21:54:38 -04:00
|
|
|
|
2009-08-19 23:00:21 -04:00
|
|
|
: remove-redundant-replaces ( -- )
|
|
|
|
replace-mapping get [ [ loc>vreg ] dip = not ] assoc-filter
|
|
|
|
[ replace-mapping set ] [ keys unique local-replace-set set ] bi ;
|
|
|
|
|
2009-07-23 21:54:38 -04:00
|
|
|
: end-local-analysis ( -- )
|
2009-08-19 23:00:21 -04:00
|
|
|
remove-redundant-replaces
|
2009-07-24 04:37:18 -04:00
|
|
|
emit-changes
|
2009-08-01 07:12:43 -04:00
|
|
|
basic-block get {
|
|
|
|
[ [ local-peek-set get ] dip peek-sets get set-at ]
|
|
|
|
[ [ local-replace-set get ] dip replace-sets get set-at ]
|
|
|
|
[ [ compute-local-kill-set ] dip kill-sets get set-at ]
|
|
|
|
} cleave ;
|
2009-07-23 21:54:38 -04:00
|
|
|
|
|
|
|
: clone-current-height ( -- )
|
|
|
|
current-height [ clone ] change ;
|
|
|
|
|
|
|
|
: peek-set ( bb -- assoc ) peek-sets get at ;
|
|
|
|
: replace-set ( bb -- assoc ) replace-sets get at ;
|
2010-02-26 16:01:01 -05:00
|
|
|
: kill-set ( bb -- assoc ) kill-sets get at ;
|