2005-01-13 17:28:29 -05:00
|
|
|
! Copyright (C) 2004, 2005 Slava Pestov.
|
2005-02-22 23:07:47 -05:00
|
|
|
! See http://factor.sf.net/license.txt for BSD license.
|
2004-11-26 22:23:57 -05:00
|
|
|
IN: inference
|
2005-03-07 22:11:36 -05:00
|
|
|
USING: errors generic interpreter kernel lists math namespaces
|
2005-04-02 02:39:33 -05:00
|
|
|
prettyprint sequences strings unparser vectors words ;
|
2004-11-26 22:23:57 -05:00
|
|
|
|
2005-05-14 00:23:00 -04:00
|
|
|
! This variable takes a boolean value.
|
2005-01-13 17:28:29 -05:00
|
|
|
SYMBOL: inferring-base-case
|
2005-01-10 23:08:27 -05:00
|
|
|
|
2004-11-26 22:23:57 -05:00
|
|
|
! Word properties that affect inference:
|
|
|
|
! - infer-effect -- must be set. controls number of inputs
|
|
|
|
! expected, and number of outputs produced.
|
|
|
|
! - infer - quotation with custom inference behavior; ifte uses
|
|
|
|
! this. Word is passed on the stack.
|
|
|
|
|
2004-12-23 16:37:16 -05:00
|
|
|
! Vector of results we had to add to the datastack. Ie, the
|
|
|
|
! inputs.
|
2004-11-26 22:23:57 -05:00
|
|
|
SYMBOL: d-in
|
|
|
|
|
2005-05-14 00:23:00 -04:00
|
|
|
: pop-literal ( -- rstate obj )
|
2005-05-17 16:13:08 -04:00
|
|
|
1 #drop node, pop-d >literal< ;
|
2005-03-29 19:11:10 -05:00
|
|
|
|
2005-07-27 01:46:06 -04:00
|
|
|
: computed-value-vector ( n -- vector )
|
|
|
|
empty-vector dup [ drop <computed> ] nmap ;
|
2004-12-23 16:37:16 -05:00
|
|
|
|
2004-12-23 01:14:07 -05:00
|
|
|
: required-inputs ( typelist stack -- values )
|
2005-07-27 01:46:06 -04:00
|
|
|
>r length r> length - abs computed-value-vector ;
|
2004-11-26 22:23:57 -05:00
|
|
|
|
2004-12-23 01:14:07 -05:00
|
|
|
: ensure-d ( typelist -- )
|
2005-07-27 01:46:06 -04:00
|
|
|
meta-d get required-inputs dup
|
2005-04-25 19:54:21 -04:00
|
|
|
meta-d [ append ] change
|
|
|
|
d-in [ append ] change ;
|
2004-11-26 22:23:57 -05:00
|
|
|
|
2005-05-17 16:13:08 -04:00
|
|
|
: hairy-node ( node effect quot -- )
|
|
|
|
over car ensure-d
|
|
|
|
-rot 2dup car length 0 rot node-inputs
|
|
|
|
2slip
|
2005-05-28 20:52:23 -04:00
|
|
|
second length 0 rot node-outputs ; inline
|
2005-05-17 16:13:08 -04:00
|
|
|
|
2005-07-27 01:46:06 -04:00
|
|
|
: present-effect ( [[ d-in meta-d ]] -- [[ in# out# ]] )
|
2005-01-16 17:58:28 -05:00
|
|
|
#! After inference is finished, collect information.
|
2005-07-27 01:46:06 -04:00
|
|
|
uncons length >r length r> 2list ;
|
2005-01-16 17:58:28 -05:00
|
|
|
|
2004-11-26 22:23:57 -05:00
|
|
|
: init-inference ( recursive-state -- )
|
|
|
|
init-interpreter
|
2004-12-22 22:16:46 -05:00
|
|
|
0 <vector> d-in set
|
2004-11-26 22:23:57 -05:00
|
|
|
recursive-state set
|
2004-12-30 02:40:14 -05:00
|
|
|
dataflow-graph off
|
2005-05-20 23:52:31 -04:00
|
|
|
current-node off ;
|
2004-11-26 22:23:57 -05:00
|
|
|
|
2005-02-24 20:52:17 -05:00
|
|
|
GENERIC: apply-object
|
2004-11-26 22:23:57 -05:00
|
|
|
|
2004-11-27 00:33:17 -05:00
|
|
|
: apply-literal ( obj -- )
|
|
|
|
#! Literals are annotated with the current recursive
|
|
|
|
#! state.
|
2005-05-17 16:13:08 -04:00
|
|
|
recursive-state get <literal> push-d 1 #push node, ;
|
2004-11-27 00:33:17 -05:00
|
|
|
|
2005-02-24 20:52:17 -05:00
|
|
|
M: object apply-object apply-literal ;
|
2004-11-26 22:23:57 -05:00
|
|
|
|
2005-02-08 22:02:44 -05:00
|
|
|
: active? ( -- ? )
|
|
|
|
#! Is this branch not terminated?
|
|
|
|
d-in get meta-d get and ;
|
|
|
|
|
2005-02-24 20:52:17 -05:00
|
|
|
: effect ( -- [[ d-in meta-d ]] )
|
|
|
|
d-in get meta-d get cons ;
|
|
|
|
|
2005-02-08 22:02:44 -05:00
|
|
|
: terminate ( -- )
|
|
|
|
#! Ignore this branch's stack effect.
|
|
|
|
meta-d off meta-r off d-in off ;
|
|
|
|
|
|
|
|
: terminator? ( obj -- ? )
|
|
|
|
#! Does it throw an error?
|
2005-03-05 14:45:23 -05:00
|
|
|
dup word? [ "terminator" word-prop ] [ drop f ] ifte ;
|
2005-02-08 22:02:44 -05:00
|
|
|
|
|
|
|
: handle-terminator ( quot -- )
|
|
|
|
#! If the quotation throws an error, do not count its stack
|
|
|
|
#! effect.
|
2005-07-16 22:16:18 -04:00
|
|
|
[ terminator? ] find drop -1 > [ terminate ] when ;
|
2005-02-08 22:02:44 -05:00
|
|
|
|
2004-12-02 22:44:36 -05:00
|
|
|
: infer-quot ( quot -- )
|
2004-11-26 22:23:57 -05:00
|
|
|
#! Recursive calls to this word are made for nested
|
|
|
|
#! quotations.
|
2005-02-08 22:02:44 -05:00
|
|
|
active? [
|
|
|
|
[ unswons apply-object infer-quot ] when*
|
|
|
|
] [
|
|
|
|
drop
|
|
|
|
] ifte ;
|
2004-11-26 22:23:57 -05:00
|
|
|
|
2005-05-16 01:15:48 -04:00
|
|
|
: infer-quot-value ( rstate quot -- )
|
|
|
|
recursive-state get >r
|
|
|
|
swap recursive-state set
|
|
|
|
dup infer-quot handle-terminator
|
|
|
|
r> recursive-state set ;
|
|
|
|
|
2005-05-15 21:17:56 -04:00
|
|
|
: check-active ( -- )
|
|
|
|
active? [ "Provable runtime error" inference-error ] unless ;
|
|
|
|
|
2004-12-04 23:45:41 -05:00
|
|
|
: check-return ( -- )
|
|
|
|
#! Raise an error if word leaves values on return stack.
|
2005-05-15 21:17:56 -04:00
|
|
|
meta-r get empty? [
|
2005-02-22 23:07:47 -05:00
|
|
|
"Word leaves elements on return stack" inference-error
|
2004-12-04 23:45:41 -05:00
|
|
|
] unless ;
|
|
|
|
|
2005-05-15 21:17:56 -04:00
|
|
|
: with-infer ( quot -- )
|
|
|
|
[
|
2005-05-20 23:52:31 -04:00
|
|
|
inferring-base-case off
|
2005-05-15 21:17:56 -04:00
|
|
|
f init-inference
|
|
|
|
call
|
|
|
|
check-active
|
|
|
|
check-return
|
|
|
|
] with-scope ;
|
2004-12-02 22:44:36 -05:00
|
|
|
|
2005-05-17 16:13:08 -04:00
|
|
|
: infer ( quot -- effect )
|
2004-11-26 22:23:57 -05:00
|
|
|
#! Stack effect of a quotation.
|
2005-05-15 21:17:56 -04:00
|
|
|
[ infer-quot effect present-effect ] with-infer ;
|
2004-11-27 00:33:17 -05:00
|
|
|
|
2004-12-01 19:48:08 -05:00
|
|
|
: dataflow ( quot -- dataflow )
|
|
|
|
#! Data flow of a quotation.
|
2005-05-17 16:13:08 -04:00
|
|
|
[ infer-quot #return node, dataflow-graph get ] with-infer ;
|