2009-07-23 21:54:38 -04:00
|
|
|
! Copyright (C) 2008, 2009 Slava Pestov.
|
2008-09-10 23:11:03 -04:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-07-24 04:37:18 -04:00
|
|
|
USING: math sequences kernel namespaces accessors biassocs compiler.cfg
|
2009-07-23 21:54:38 -04:00
|
|
|
compiler.cfg.instructions compiler.cfg.registers compiler.cfg.hats
|
|
|
|
compiler.cfg.predecessors compiler.cfg.stacks.local
|
|
|
|
compiler.cfg.stacks.height compiler.cfg.stacks.global
|
|
|
|
compiler.cfg.stacks.finalize ;
|
2008-10-20 21:40:15 -04:00
|
|
|
IN: compiler.cfg.stacks
|
2008-09-10 23:11:03 -04:00
|
|
|
|
2009-07-23 21:54:38 -04:00
|
|
|
: begin-stack-analysis ( -- )
|
2009-07-24 04:37:18 -04:00
|
|
|
<bihash> locs>vregs set
|
2009-07-23 21:54:38 -04:00
|
|
|
H{ } clone ds-heights set
|
|
|
|
H{ } clone rs-heights set
|
|
|
|
H{ } clone peek-sets set
|
|
|
|
H{ } clone replace-sets set
|
2009-08-01 07:12:43 -04:00
|
|
|
H{ } clone kill-sets set
|
2009-07-23 21:54:38 -04:00
|
|
|
current-height new current-height set ;
|
2008-09-17 19:52:11 -04:00
|
|
|
|
2009-07-23 21:54:38 -04:00
|
|
|
: end-stack-analysis ( -- )
|
|
|
|
cfg get
|
|
|
|
compute-global-sets
|
|
|
|
finalize-stack-shuffling
|
|
|
|
drop ;
|
2008-09-10 23:11:03 -04:00
|
|
|
|
2009-07-23 21:54:38 -04:00
|
|
|
: ds-drop ( -- ) -1 inc-d ;
|
|
|
|
|
|
|
|
: ds-peek ( -- vreg ) D 0 peek-loc ;
|
|
|
|
|
|
|
|
: ds-pop ( -- vreg ) ds-peek ds-drop ;
|
|
|
|
|
|
|
|
: ds-push ( vreg -- ) 1 inc-d D 0 replace-loc ;
|
2008-09-10 23:11:03 -04:00
|
|
|
|
2008-10-21 04:20:48 -04:00
|
|
|
: ds-load ( n -- vregs )
|
2008-11-11 19:46:31 -05:00
|
|
|
dup 0 =
|
|
|
|
[ drop f ]
|
2009-07-23 21:54:38 -04:00
|
|
|
[ [ <reversed> [ <ds-loc> peek-loc ] map ] [ neg inc-d ] bi ] if ;
|
2008-09-10 23:11:03 -04:00
|
|
|
|
2008-10-21 04:20:48 -04:00
|
|
|
: ds-store ( vregs -- )
|
2008-11-11 19:46:31 -05:00
|
|
|
[
|
|
|
|
<reversed>
|
2009-07-23 21:54:38 -04:00
|
|
|
[ length inc-d ]
|
|
|
|
[ [ <ds-loc> replace-loc ] each-index ] bi
|
2008-11-11 19:46:31 -05:00
|
|
|
] unless-empty ;
|
2008-09-10 23:11:03 -04:00
|
|
|
|
2009-07-23 21:54:38 -04:00
|
|
|
: rs-drop ( -- ) -1 inc-r ;
|
|
|
|
|
2008-10-21 04:20:48 -04:00
|
|
|
: rs-load ( n -- vregs )
|
2008-11-11 19:46:31 -05:00
|
|
|
dup 0 =
|
|
|
|
[ drop f ]
|
2009-07-23 21:54:38 -04:00
|
|
|
[ [ <reversed> [ <rs-loc> peek-loc ] map ] [ neg inc-r ] bi ] if ;
|
2008-09-10 23:11:03 -04:00
|
|
|
|
2008-10-21 04:20:48 -04:00
|
|
|
: rs-store ( vregs -- )
|
2008-11-11 19:46:31 -05:00
|
|
|
[
|
|
|
|
<reversed>
|
2009-07-23 21:54:38 -04:00
|
|
|
[ length inc-r ]
|
|
|
|
[ [ <rs-loc> replace-loc ] each-index ] bi
|
2008-11-11 19:46:31 -05:00
|
|
|
] unless-empty ;
|
2008-09-10 23:11:03 -04:00
|
|
|
|
2009-07-23 21:54:38 -04:00
|
|
|
: (2inputs) ( -- vreg1 vreg2 )
|
|
|
|
D 1 peek-loc D 0 peek-loc ;
|
|
|
|
|
2008-10-21 04:20:48 -04:00
|
|
|
: 2inputs ( -- vreg1 vreg2 )
|
2009-07-23 21:54:38 -04:00
|
|
|
(2inputs) -2 inc-d ;
|
|
|
|
|
|
|
|
: (3inputs) ( -- vreg1 vreg2 vreg3 )
|
|
|
|
D 2 peek-loc D 1 peek-loc D 0 peek-loc ;
|
2008-09-10 23:11:03 -04:00
|
|
|
|
2008-10-21 04:20:48 -04:00
|
|
|
: 3inputs ( -- vreg1 vreg2 vreg3 )
|
2009-07-23 21:54:38 -04:00
|
|
|
(3inputs) -3 inc-d ;
|
|
|
|
|
|
|
|
! adjust-d/adjust-r: these are called when other instructions which
|
|
|
|
! internally adjust the stack height are emitted, such as ##call and
|
|
|
|
! ##alien-invoke
|
|
|
|
: adjust-d ( n -- ) current-height get [ + ] change-d drop ;
|
|
|
|
: adjust-r ( n -- ) current-height get [ + ] change-r drop ;
|
|
|
|
|