factor/library/inference/branches.factor

261 lines
7.8 KiB
Factor
Raw Normal View History

2004-11-26 22:23:57 -05:00
! :folding=indent:collapseFolds=1:
! $Id$
!
2005-01-13 14:41:08 -05:00
! Copyright (C) 2004, 2005 Slava Pestov.
2004-11-26 22:23:57 -05:00
!
! Redistribution and use in source and binary forms, with or without
! modification, are permitted provided that the following conditions are met:
!
! 1. Redistributions of source code must retain the above copyright notice,
! this list of conditions and the following disclaimer.
!
! 2. Redistributions in binary form must reproduce the above copyright notice,
! this list of conditions and the following disclaimer in the documentation
! and/or other materials provided with the distribution.
!
! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
IN: inference
USE: errors
2004-12-10 18:38:40 -05:00
USE: generic
2004-11-26 22:23:57 -05:00
USE: interpreter
USE: kernel
USE: lists
USE: math
USE: namespaces
USE: strings
USE: vectors
USE: words
USE: hashtables
2004-12-24 17:29:16 -05:00
USE: prettyprint
2004-11-26 22:23:57 -05:00
2004-12-31 02:17:45 -05:00
: longest-vector ( list -- length )
[ vector-length ] map [ > ] top ;
: computed-value-vector ( n -- vector )
[ drop object <computed> ] vector-project ;
: add-inputs ( count stack -- stack )
2004-12-31 02:17:45 -05:00
#! Add this many inputs to the given stack.
[ vector-length - computed-value-vector ] keep
vector-append ;
2004-12-31 02:17:45 -05:00
: unify-lengths ( list -- list )
#! Pad all vectors to the same length. If one vector is
#! shorter, pad it with unknown results at the bottom.
dup longest-vector swap [ add-inputs ] map-with ;
2004-12-31 02:17:45 -05:00
: unify-results ( list -- value )
#! If all values in list are equal, return the value.
#! Otherwise, unify types.
dup all=? [
car
] [
2004-12-31 02:17:45 -05:00
[ value-class ] map class-or-list <computed>
] ifte ;
2004-12-31 02:17:45 -05:00
: vector-transpose ( list -- vector )
#! Turn a list of same-length vectors into a vector of lists.
dup car vector-length [
over [ vector-nth ] map-with
2004-12-31 02:17:45 -05:00
] vector-project nip ;
2004-11-26 22:23:57 -05:00
: unify-stacks ( list -- stack )
#! Replace differing literals in stacks with unknown
#! results.
2004-12-31 02:17:45 -05:00
unify-lengths vector-transpose [ unify-results ] vector-map ;
: balanced? ( list -- ? )
#! Check if a list of [[ instack outstack ]] pairs is
#! balanced.
[ uncons vector-length swap vector-length - ] map all=? ;
2004-12-07 23:21:32 -05:00
: unify-effect ( list -- in out )
#! Unify a list of [[ instack outstack ]] pairs.
dup balanced? [
unzip unify-stacks >r unify-stacks r>
2004-12-25 21:28:47 -05:00
] [
"Unbalanced branches" throw
2004-12-25 21:28:47 -05:00
] ifte ;
2004-12-07 23:21:32 -05:00
: datastack-effect ( list -- )
[ [ effect ] bind ] map
unify-effect
meta-d set d-in set ;
: callstack-effect ( list -- )
[ [ { } meta-r get ] bind cons ] map
unify-effect
meta-r set drop ;
: filter-terminators ( list -- list )
[ [ d-in get meta-d get and ] bind ] subset [
"No branch has a stack effect" throw
] unless* ;
2004-12-07 23:21:32 -05:00
2004-12-24 17:29:16 -05:00
: unify-effects ( list -- )
filter-terminators dup datastack-effect callstack-effect ;
2004-11-26 22:23:57 -05:00
2004-12-26 17:04:08 -05:00
SYMBOL: cloned
2004-12-23 18:26:04 -05:00
: deep-clone ( vector -- vector )
2004-12-26 17:04:08 -05:00
#! Clone a vector if it hasn't already been cloned in this
#! with-deep-clone scope.
2005-01-02 23:57:54 -05:00
dup cloned get assoc [
vector-clone [ dup cloned [ acons ] change ] keep
] ?unless ;
2004-12-26 17:04:08 -05:00
: deep-clone-vector ( vector -- vector )
2004-12-23 18:26:04 -05:00
#! Clone a vector of vectors.
[ deep-clone ] vector-map ;
2004-12-26 17:04:08 -05:00
: copy-inference ( -- )
#! We avoid cloning the same object more than once in order
#! to preserve identity structure.
cloned off
meta-r [ deep-clone-vector ] change
meta-d [ deep-clone-vector ] change
d-in [ deep-clone-vector ] change
dataflow-graph off ;
2004-12-23 18:26:04 -05:00
2004-12-30 02:40:14 -05:00
: terminator? ( obj -- ? )
dup word? [ "terminator" word-property ] [ drop f ] ifte ;
: handle-terminator ( quot -- )
[ terminator? ] some? [
meta-d off meta-r off d-in off
] when ;
: propagate-type ( [[ value class ]] -- )
2004-12-31 02:17:45 -05:00
#! Type propagation is chained.
[
unswons 2dup set-value-class
[ type-propagations get ] bind assoc propagate-type
] when* ;
2004-12-27 15:27:18 -05:00
: infer-branch ( value -- namespace )
2004-12-07 23:21:32 -05:00
<namespace> [
2004-12-31 02:17:45 -05:00
uncons propagate-type
2004-12-19 22:53:41 -05:00
dup value-recursion recursive-state set
2004-12-26 17:04:08 -05:00
copy-inference
2004-12-30 02:40:14 -05:00
literal-value dup infer-quot
#values values-node
2004-12-30 02:40:14 -05:00
handle-terminator
2004-12-07 23:21:32 -05:00
] extend ;
: (infer-branches) ( branchlist -- list )
#! The branchlist is a list of pairs:
#! [[ value typeprop ]]
#! value is either a literal or computed instance; typeprop
#! is a pair [[ value class ]] indicating a type propagation
#! for the given branch.
2004-12-30 02:40:14 -05:00
[
[
2005-01-13 17:28:29 -05:00
inferring-base-case get 0 > [
2004-12-30 02:40:14 -05:00
[
infer-branch ,
] [
[ drop ] when
] catch
] [
infer-branch ,
] ifte
] each
] make-list ;
2004-11-29 23:14:12 -05:00
2004-12-24 17:29:16 -05:00
: unify-dataflow ( inputs instruction effectlist -- )
[ [ get-dataflow ] bind ] map
swap dataflow, [ node-consume-d set ] bind ;
2004-11-29 23:14:12 -05:00
: infer-branches ( inputs instruction branchlist -- )
2004-11-26 22:23:57 -05:00
#! Recursive stack effect inference is done here. If one of
#! the branches has an undecidable stack effect, we set the
2004-11-29 23:14:12 -05:00
#! base case to this stack effect and try again. The inputs
#! parameter is a vector.
(infer-branches) dup unify-effects unify-dataflow ;
: (with-block) ( label quot -- )
#! Call a quotation in a new namespace, and transfer
#! inference state from the outer scope.
swap >r [
dataflow-graph off
call
d-in get meta-d get meta-r get get-dataflow
] with-scope
r> swap #label dataflow, [ node-label set ] bind
meta-r set meta-d set d-in set ;
2004-11-26 22:23:57 -05:00
2005-01-13 14:41:08 -05:00
: boolean-value? ( value -- ? )
#! Return if the value's boolean valuation is known.
value-class
dup \ f = swap
builtin-supertypes
\ f builtin-supertypes intersection not
or ;
: boolean-value ( value -- ? )
#! Only valid if boolean? returns true.
value-class \ f = not ;
: static-branch? ( value -- ? )
boolean-value? branches-can-fail? not and ;
2004-12-27 15:27:18 -05:00
: static-ifte ( true false -- )
#! If the branch taken is statically known, just infer
#! along that branch.
2005-01-13 14:41:08 -05:00
dataflow-drop, pop-d boolean-value [ drop ] [ nip ] ifte
2004-12-27 15:27:18 -05:00
gensym [
dup value-recursion recursive-state set
literal-value infer-quot
] (with-block) ;
: dynamic-ifte ( true false -- )
#! If branch taken is computed, infer along both paths and
#! unify.
2list >r 1 meta-d get vector-tail* #ifte r>
2004-12-26 02:16:38 -05:00
pop-d [
2005-01-13 14:41:08 -05:00
dup \ general-t cons ,
2004-12-26 02:16:38 -05:00
\ f cons ,
] make-list zip ( condition )
2004-11-26 22:23:57 -05:00
infer-branches ;
: infer-ifte ( -- )
#! Infer effects for both branches, unify.
[ object general-list general-list ] ensure-d
dataflow-drop, pop-d
dataflow-drop, pop-d swap
peek-d static-branch? [
static-ifte
] [
2004-12-27 15:27:18 -05:00
dynamic-ifte
] ifte ;
2004-12-13 16:28:28 -05:00
\ ifte [ infer-ifte ] "infer" set-word-property
2004-12-19 22:53:41 -05:00
: vtable>list ( value -- list )
dup value-recursion swap literal-value vector>list
[ over <literal> ] map nip ;
2004-11-26 22:23:57 -05:00
2004-12-13 16:28:28 -05:00
: infer-dispatch ( -- )
2004-11-26 22:23:57 -05:00
#! Infer effects for all branches, unify.
2004-12-23 01:14:07 -05:00
[ object vector ] ensure-d
2004-11-28 21:56:58 -05:00
dataflow-drop, pop-d vtable>list
2004-12-13 16:28:28 -05:00
>r 1 meta-d get vector-tail* #dispatch r>
2004-12-31 02:17:45 -05:00
pop-d ( n ) num-types [ dupd cons ] project nip zip
2004-11-26 22:23:57 -05:00
infer-branches ;
2004-12-24 02:52:02 -05:00
USE: kernel-internals
2004-12-13 16:28:28 -05:00
\ dispatch [ infer-dispatch ] "infer" set-word-property
2004-12-24 17:29:16 -05:00
\ dispatch [ [ fixnum vector ] [ ] ]
"infer-effect" set-word-property