factor/library/inference/inference.factor

200 lines
5.2 KiB
Factor
Raw Normal View History

2005-01-13 17:28:29 -05:00
! Copyright (C) 2004, 2005 Slava Pestov.
! See http://factor.sf.net/license.txt for BSD license.
2004-11-26 22:23:57 -05:00
IN: inference
USING: generic interpreter kernel lists math namespaces strings
unparser vectors words ;
2004-11-26 22:23:57 -05:00
: max-recursion 0 ;
2005-01-13 17:28:29 -05:00
! This variable takes a value from 0 up to max-recursion.
SYMBOL: inferring-base-case
: branches-can-fail? ( -- ? )
inferring-base-case get max-recursion > ;
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.
! Vector of results we had to add to the datastack. Ie, the
! inputs.
2004-11-26 22:23:57 -05:00
SYMBOL: d-in
2004-12-30 02:40:14 -05:00
! Recursive state. An alist, mapping words to labels.
2004-11-26 22:23:57 -05:00
SYMBOL: recursive-state
2004-12-19 22:53:41 -05:00
GENERIC: value= ( literal value -- ? )
GENERIC: value-class-and ( class value -- )
2004-12-19 22:53:41 -05:00
2005-02-23 21:50:51 -05:00
TUPLE: value class recursion class-ties literal-ties ;
2004-12-31 02:17:45 -05:00
2005-01-31 14:02:09 -05:00
C: value ( recursion -- value )
[ set-value-recursion ] keep ;
TUPLE: computed delegate ;
2004-12-31 02:17:45 -05:00
C: computed ( class -- value )
2005-01-31 14:02:09 -05:00
swap recursive-state get <value> [ set-value-class ] keep
over set-computed-delegate ;
M: computed value= ( literal value -- ? )
2004-12-19 22:53:41 -05:00
2drop f ;
2005-02-23 21:50:51 -05:00
: failing-class-and ( class class -- class )
2dup class-and dup null = [
drop [
word-name , " and " , word-name ,
" do not intersect" ,
] make-string inference-error
] [
2nip
] ifte ;
M: computed value-class-and ( class value -- )
[
value-class failing-class-and
] keep set-value-class ;
2005-01-31 14:02:09 -05:00
TUPLE: literal value delegate ;
C: literal ( obj rstate -- value )
2005-01-31 14:02:09 -05:00
[
>r <value> [ >r dup class r> set-value-class ] keep
r> set-literal-delegate
] keep
[ set-literal-value ] keep ;
M: literal value= ( literal value -- ? )
2005-01-31 14:02:09 -05:00
literal-value = ;
M: literal value-class-and ( class value -- )
value-class class-and drop ;
M: literal set-value-class ( class value -- )
2drop ;
2004-12-19 22:53:41 -05:00
M: computed literal-value ( value -- )
"A literal value was expected where a computed value was"
" found: " rot unparse cat3 inference-error ;
: (ensure-types) ( typelist n stack -- )
pick [
3dup >r >r car r> r> vector-nth value-class-and
>r >r cdr r> 1 + r> (ensure-types)
] [
3drop
] ifte ;
: ensure-types ( typelist stack -- )
dup vector-length pick length - dup 0 < [
swap >r neg tail 0 r>
] [
swap
] ifte (ensure-types) ;
2004-12-23 01:14:07 -05:00
: required-inputs ( typelist stack -- values )
>r dup length r> vector-length - dup 0 > [
head [ <computed> ] map
2004-11-26 22:23:57 -05:00
] [
2004-12-23 01:14:07 -05:00
2drop f
2004-11-26 22:23:57 -05:00
] ifte ;
2004-12-23 01:14:07 -05:00
: vector-prepend ( values stack -- stack )
>r list>vector r> vector-append ;
2004-12-23 01:14:07 -05:00
: ensure-d ( typelist -- )
dup meta-d get ensure-types
2004-12-23 01:14:07 -05:00
meta-d get required-inputs dup
meta-d [ vector-prepend ] change
d-in [ vector-prepend ] change ;
2004-11-26 22:23:57 -05:00
: (present-effect) ( vector -- list )
[ value-class ] vector-map vector>list ;
: present-effect ( [[ d-in meta-d ]] -- [ in-types out-types ] )
2004-11-26 22:23:57 -05:00
#! After inference is finished, collect information.
uncons >r (present-effect) r> (present-effect) 2list ;
: simple-effect ( [[ d-in meta-d ]] -- [[ in# out# ]] )
#! After inference is finished, collect information.
uncons vector-length >r vector-length r> cons ;
2004-11-26 22:23:57 -05:00
: init-inference ( recursive-state -- )
init-interpreter
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-01-13 17:28:29 -05:00
0 inferring-base-case set ;
2004-11-26 22:23:57 -05:00
GENERIC: apply-object
2004-11-26 22:23:57 -05:00
: apply-literal ( obj -- )
#! Literals are annotated with the current recursive
#! state.
dup recursive-state get <literal> push-d
#push dataflow, [ 1 0 node-outputs ] bind ;
M: object apply-object apply-literal ;
2004-11-26 22:23:57 -05:00
: active? ( -- ? )
#! Is this branch not terminated?
d-in get meta-d get and ;
: check-active ( -- )
active? [
"Provable runtime error" inference-error
] unless ;
: effect ( -- [[ d-in meta-d ]] )
d-in get meta-d get cons ;
: terminate ( -- )
#! Ignore this branch's stack effect.
meta-d off meta-r off d-in off ;
: terminator? ( obj -- ? )
#! Does it throw an error?
dup word? [ "terminator" word-prop ] [ drop f ] ifte ;
: handle-terminator ( quot -- )
#! If the quotation throws an error, do not count its stack
#! effect.
[ terminator? ] some? [ terminate ] when ;
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.
active? [
[ unswons apply-object infer-quot ] when*
] [
drop
] ifte ;
2004-11-26 22:23:57 -05:00
2004-12-04 23:45:41 -05:00
: check-return ( -- )
#! Raise an error if word leaves values on return stack.
meta-r get vector-length 0 = [
"Word leaves elements on return stack" inference-error
2004-12-04 23:45:41 -05:00
] unless ;
: values-node ( op -- )
#! Add a #values or #return node to the graph.
f swap dataflow, [
2004-12-02 22:44:36 -05:00
meta-d get vector>list node-consume-d set
] bind ;
: (infer) ( quot -- )
2004-12-04 23:45:41 -05:00
f init-inference
infer-quot
check-active
2004-12-04 23:45:41 -05:00
#return values-node check-return ;
2004-12-02 22:44:36 -05:00
: infer ( quot -- [[ in out ]] )
2004-11-26 22:23:57 -05:00
#! Stack effect of a quotation.
[ (infer) effect present-effect ] with-scope ;
: dataflow ( quot -- dataflow )
#! Data flow of a quotation.
2004-12-02 22:44:36 -05:00
[ (infer) get-dataflow ] with-scope ;