Inference transforms can now give up; remove elaboration phase since we'll do that while building CFG
parent
73ed573a05
commit
fe16de52e0
|
@ -22,6 +22,11 @@ IN: compiler.tree.builder
|
||||||
] with-tree-builder nip
|
] with-tree-builder nip
|
||||||
unclip-last in-d>> ;
|
unclip-last in-d>> ;
|
||||||
|
|
||||||
|
: build-sub-tree ( #call quot -- nodes )
|
||||||
|
[ [ out-d>> ] [ in-d>> ] bi ] dip
|
||||||
|
build-tree-with
|
||||||
|
rot #copy suffix ;
|
||||||
|
|
||||||
: (make-specializer) ( class picker -- quot )
|
: (make-specializer) ( class picker -- quot )
|
||||||
swap "predicate" word-prop append ;
|
swap "predicate" word-prop append ;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
! Copyright (C) 2008 Slava Pestov.
|
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
|
||||||
IN: compiler.tree.elaboration
|
|
||||||
|
|
||||||
: elaborate ( nodes -- nodes' ) ;
|
|
|
@ -1,6 +1,26 @@
|
||||||
! Copyright (C) 2008 Slava Pestov.
|
! Copyright (C) 2008 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: kernel ;
|
USING: kernel classes.tuple classes.tuple.private math arrays
|
||||||
|
byte-arrays words stack-checker.known-words ;
|
||||||
IN: compiler.tree.intrinsics
|
IN: compiler.tree.intrinsics
|
||||||
|
|
||||||
: <immutable-tuple-boa> ( ... class -- tuple ) "Intrinsic" throw ;
|
: <immutable-tuple-boa> ( ... class -- tuple )
|
||||||
|
"BUG: missing <immutable-tuple-boa> intrinsic" throw ;
|
||||||
|
|
||||||
|
: (tuple) ( layout -- tuple )
|
||||||
|
"BUG: missing (tuple) intrinsic" throw ;
|
||||||
|
|
||||||
|
\ (tuple) { tuple-layout } { tuple } define-primitive
|
||||||
|
\ (tuple) make-flushable
|
||||||
|
|
||||||
|
: (array) ( n -- array )
|
||||||
|
"BUG: missing (array) intrinsic" throw ;
|
||||||
|
|
||||||
|
\ (array) { integer } { array } define-primitive
|
||||||
|
\ (array) make-flushable
|
||||||
|
|
||||||
|
: (byte-array) ( n -- byte-array )
|
||||||
|
"BUG: missing (byte-array) intrinsic" throw ;
|
||||||
|
|
||||||
|
\ (byte-array) { integer } { byte-array } define-primitive
|
||||||
|
\ (byte-array) make-flushable
|
||||||
|
|
|
@ -22,7 +22,7 @@ IN: compiler.tree.loop.detection
|
||||||
|
|
||||||
SYMBOL: loop-heights
|
SYMBOL: loop-heights
|
||||||
SYMBOL: loop-calls
|
SYMBOL: loop-calls
|
||||||
SYMBOL: label-stack
|
SYMBOL: loop-stack
|
||||||
SYMBOL: work-list
|
SYMBOL: work-list
|
||||||
|
|
||||||
GENERIC: collect-loop-info* ( tail? node -- )
|
GENERIC: collect-loop-info* ( tail? node -- )
|
||||||
|
@ -34,14 +34,14 @@ GENERIC: collect-loop-info* ( tail? node -- )
|
||||||
[ tail-calls ] keep [ collect-loop-info* ] 2each ;
|
[ tail-calls ] keep [ collect-loop-info* ] 2each ;
|
||||||
|
|
||||||
: remember-loop-info ( label -- )
|
: remember-loop-info ( label -- )
|
||||||
label-stack get length swap loop-heights get set-at ;
|
loop-stack get length swap loop-heights get set-at ;
|
||||||
|
|
||||||
M: #recursive collect-loop-info*
|
M: #recursive collect-loop-info*
|
||||||
nip
|
nip
|
||||||
[
|
[
|
||||||
[
|
[
|
||||||
label>>
|
label>>
|
||||||
[ label-stack [ swap suffix ] change ]
|
[ loop-stack [ swap suffix ] change ]
|
||||||
[ remember-loop-info ]
|
[ remember-loop-info ]
|
||||||
[ t >>loop? drop ]
|
[ t >>loop? drop ]
|
||||||
tri
|
tri
|
||||||
|
@ -50,7 +50,7 @@ M: #recursive collect-loop-info*
|
||||||
] with-scope ;
|
] with-scope ;
|
||||||
|
|
||||||
: current-loop-nesting ( label -- labels )
|
: current-loop-nesting ( label -- labels )
|
||||||
label-stack get swap loop-heights get at tail ;
|
loop-stack get swap loop-heights get at tail ;
|
||||||
|
|
||||||
: disqualify-loop ( label -- )
|
: disqualify-loop ( label -- )
|
||||||
work-list get push-front ;
|
work-list get push-front ;
|
||||||
|
@ -69,7 +69,7 @@ M: #dispatch collect-loop-info*
|
||||||
M: node collect-loop-info* 2drop ;
|
M: node collect-loop-info* 2drop ;
|
||||||
|
|
||||||
: collect-loop-info ( node -- )
|
: collect-loop-info ( node -- )
|
||||||
{ } label-stack set
|
{ } loop-stack set
|
||||||
H{ } clone loop-calls set
|
H{ } clone loop-calls set
|
||||||
H{ } clone loop-heights set
|
H{ } clone loop-heights set
|
||||||
<hashed-dlist> work-list set
|
<hashed-dlist> work-list set
|
||||||
|
|
|
@ -8,7 +8,7 @@ compiler.tree.tuple-unboxing
|
||||||
compiler.tree.def-use
|
compiler.tree.def-use
|
||||||
compiler.tree.dead-code
|
compiler.tree.dead-code
|
||||||
compiler.tree.strength-reduction
|
compiler.tree.strength-reduction
|
||||||
compiler.tree.loop-detection
|
compiler.tree.loop.detection
|
||||||
compiler.tree.branch-fusion ;
|
compiler.tree.branch-fusion ;
|
||||||
IN: compiler.tree.optimizer
|
IN: compiler.tree.optimizer
|
||||||
|
|
||||||
|
@ -16,11 +16,11 @@ IN: compiler.tree.optimizer
|
||||||
normalize
|
normalize
|
||||||
propagate
|
propagate
|
||||||
cleanup
|
cleanup
|
||||||
|
detect-loops
|
||||||
|
invert-loops
|
||||||
|
fuse-branches
|
||||||
escape-analysis
|
escape-analysis
|
||||||
unbox-tuples
|
unbox-tuples
|
||||||
compute-def-use
|
compute-def-use
|
||||||
remove-dead-code
|
remove-dead-code
|
||||||
strength-reduce
|
strength-reduce ;
|
||||||
detect-loops
|
|
||||||
fuse-branches
|
|
||||||
elaborate ;
|
|
||||||
|
|
|
@ -18,10 +18,7 @@ M: word splicing-nodes
|
||||||
[ [ in-d>> ] [ out-d>> ] bi ] dip #call 1array ;
|
[ [ in-d>> ] [ out-d>> ] bi ] dip #call 1array ;
|
||||||
|
|
||||||
M: quotation splicing-nodes
|
M: quotation splicing-nodes
|
||||||
[ [ out-d>> ] [ in-d>> ] bi ] dip
|
build-sub-tree normalize ;
|
||||||
build-tree-with
|
|
||||||
rot #copy suffix
|
|
||||||
normalize ;
|
|
||||||
|
|
||||||
: propagate-body ( #call -- )
|
: propagate-body ( #call -- )
|
||||||
body>> (propagate) ;
|
body>> (propagate) ;
|
||||||
|
|
|
@ -165,24 +165,27 @@ M: object infer-call*
|
||||||
{ call execute dispatch load-locals get-local drop-locals }
|
{ call execute dispatch load-locals get-local drop-locals }
|
||||||
[ t "no-compile" set-word-prop ] each
|
[ t "no-compile" set-word-prop ] each
|
||||||
|
|
||||||
|
SYMBOL: +primitive+
|
||||||
|
|
||||||
: non-inline-word ( word -- )
|
: non-inline-word ( word -- )
|
||||||
dup +called+ depends-on
|
dup +called+ depends-on
|
||||||
{
|
{
|
||||||
{ [ dup +shuffle+ word-prop ] [ infer-shuffle-word ] }
|
{ [ dup +shuffle+ word-prop ] [ infer-shuffle-word ] }
|
||||||
{ [ dup +special+ word-prop ] [ infer-special ] }
|
{ [ dup +special+ word-prop ] [ infer-special ] }
|
||||||
{ [ dup primitive? ] [ infer-primitive ] }
|
{ [ dup +primitive+ word-prop ] [ infer-primitive ] }
|
||||||
{ [ dup +cannot-infer+ word-prop ] [ cannot-infer-effect ] }
|
{ [ dup +cannot-infer+ word-prop ] [ cannot-infer-effect ] }
|
||||||
{ [ dup +inferred-effect+ word-prop ] [ cached-infer ] }
|
|
||||||
{ [ dup +transform-quot+ word-prop ] [ apply-transform ] }
|
{ [ dup +transform-quot+ word-prop ] [ apply-transform ] }
|
||||||
|
{ [ dup +inferred-effect+ word-prop ] [ cached-infer ] }
|
||||||
{ [ dup "macro" word-prop ] [ apply-macro ] }
|
{ [ dup "macro" word-prop ] [ apply-macro ] }
|
||||||
{ [ dup recursive-label ] [ call-recursive-word ] }
|
{ [ dup recursive-label ] [ call-recursive-word ] }
|
||||||
[ dup infer-word apply-word/effect ]
|
[ dup infer-word apply-word/effect ]
|
||||||
} cond ;
|
} cond ;
|
||||||
|
|
||||||
: define-primitive ( word inputs outputs -- )
|
: define-primitive ( word inputs outputs -- )
|
||||||
|
[ 2drop t +primitive+ set-word-prop ]
|
||||||
[ drop "input-classes" set-word-prop ]
|
[ drop "input-classes" set-word-prop ]
|
||||||
[ nip "default-output-classes" set-word-prop ]
|
[ nip "default-output-classes" set-word-prop ]
|
||||||
3bi ;
|
3tri ;
|
||||||
|
|
||||||
! Stack effects for all primitives
|
! Stack effects for all primitives
|
||||||
\ fixnum< { fixnum fixnum } { object } define-primitive
|
\ fixnum< { fixnum fixnum } { object } define-primitive
|
||||||
|
|
|
@ -11,31 +11,45 @@ IN: stack-checker.transforms
|
||||||
SYMBOL: +transform-quot+
|
SYMBOL: +transform-quot+
|
||||||
SYMBOL: +transform-n+
|
SYMBOL: +transform-n+
|
||||||
|
|
||||||
: (apply-transform) ( quot n -- newquot )
|
: give-up-transform ( word -- )
|
||||||
dup zero? [
|
dup recursive-label
|
||||||
|
[ call-recursive-word ]
|
||||||
|
[ dup infer-word apply-word/effect ]
|
||||||
|
if ;
|
||||||
|
|
||||||
|
: ((apply-transform)) ( word quot stack -- )
|
||||||
|
swap with-datastack first2
|
||||||
|
dup [ swap infer-quot drop ] [ 2drop give-up-transform ] if ;
|
||||||
|
inline
|
||||||
|
|
||||||
|
: (apply-transform) ( word quot n -- )
|
||||||
|
consume-d dup [ known literal? ] all? [
|
||||||
|
dup empty? [
|
||||||
drop recursive-state get 1array
|
drop recursive-state get 1array
|
||||||
] [
|
] [
|
||||||
consume-d
|
|
||||||
[ #drop, ]
|
[ #drop, ]
|
||||||
[ [ literal value>> ] map ]
|
[ [ literal value>> ] map ]
|
||||||
[ first literal recursion>> ] tri prefix
|
[ first literal recursion>> ] tri prefix
|
||||||
] if
|
] if
|
||||||
swap with-datastack ;
|
((apply-transform))
|
||||||
|
] [ 2drop give-up-transform ] if ;
|
||||||
|
|
||||||
: apply-transform ( word -- )
|
: apply-transform ( word -- )
|
||||||
[ +inlined+ depends-on ] [
|
[ +inlined+ depends-on ] [
|
||||||
|
[ ]
|
||||||
[ +transform-quot+ word-prop ]
|
[ +transform-quot+ word-prop ]
|
||||||
[ +transform-n+ word-prop ]
|
[ +transform-n+ word-prop ]
|
||||||
bi (apply-transform)
|
tri
|
||||||
first2 swap infer-quot
|
(apply-transform)
|
||||||
] bi ;
|
] bi ;
|
||||||
|
|
||||||
: apply-macro ( word -- )
|
: apply-macro ( word -- )
|
||||||
[ +inlined+ depends-on ] [
|
[ +inlined+ depends-on ] [
|
||||||
|
[ ]
|
||||||
[ "macro" word-prop ]
|
[ "macro" word-prop ]
|
||||||
[ "declared-effect" word-prop in>> length ]
|
[ "declared-effect" word-prop in>> length ]
|
||||||
bi (apply-transform)
|
tri
|
||||||
first2 swap infer-quot
|
(apply-transform)
|
||||||
] bi ;
|
] bi ;
|
||||||
|
|
||||||
: define-transform ( word quot n -- )
|
: define-transform ( word quot n -- )
|
||||||
|
@ -66,20 +80,80 @@ SYMBOL: +transform-n+
|
||||||
|
|
||||||
\ spread [ spread>quot ] 1 define-transform
|
\ spread [ spread>quot ] 1 define-transform
|
||||||
|
|
||||||
|
\ (call-next-method) [
|
||||||
|
[ [ +inlined+ depends-on ] bi@ ] [ next-method-quot ] 2bi
|
||||||
|
] 2 define-transform
|
||||||
|
|
||||||
|
! Constructors
|
||||||
\ boa [
|
\ boa [
|
||||||
dup tuple-class? [
|
dup tuple-class? [
|
||||||
dup +inlined+ depends-on
|
dup +inlined+ depends-on
|
||||||
[ "boa-check" word-prop ]
|
[ "boa-check" word-prop ]
|
||||||
[ tuple-layout '[ , <tuple-boa> ] ]
|
[ tuple-layout '[ , <tuple-boa> ] ]
|
||||||
bi append
|
bi append
|
||||||
] [
|
] [ drop f ] if
|
||||||
\ boa \ no-method boa time-bomb
|
|
||||||
] if
|
|
||||||
] 1 define-transform
|
] 1 define-transform
|
||||||
|
|
||||||
\ (call-next-method) [
|
\ new [
|
||||||
[ [ +inlined+ depends-on ] bi@ ] [ next-method-quot ] 2bi
|
dup tuple-class? [
|
||||||
] 2 define-transform
|
dup +inlined+ depends-on
|
||||||
|
dup all-slots rest-slice ! delegate slot
|
||||||
|
[ [ initial>> literalize , ] each literalize , \ boa , ] [ ] make
|
||||||
|
] [ drop f ] if
|
||||||
|
] 1 define-transform
|
||||||
|
|
||||||
|
! Membership testing
|
||||||
|
: bit-member-n 256 ; inline
|
||||||
|
|
||||||
|
: bit-member? ( seq -- ? )
|
||||||
|
#! Can we use a fast byte array test here?
|
||||||
|
{
|
||||||
|
{ [ dup length 8 < ] [ f ] }
|
||||||
|
{ [ dup [ integer? not ] contains? ] [ f ] }
|
||||||
|
{ [ dup [ 0 < ] contains? ] [ f ] }
|
||||||
|
{ [ dup [ bit-member-n >= ] contains? ] [ f ] }
|
||||||
|
[ t ]
|
||||||
|
} cond nip ;
|
||||||
|
|
||||||
|
: bit-member-seq ( seq -- flags )
|
||||||
|
bit-member-n swap [ member? 1 0 ? ] curry B{ } map-as ;
|
||||||
|
|
||||||
|
: exact-float? ( f -- ? )
|
||||||
|
dup float? [ dup >integer >float = ] [ drop f ] if ; inline
|
||||||
|
|
||||||
|
: bit-member-quot ( seq -- newquot )
|
||||||
|
[
|
||||||
|
[ drop ] % ! drop the sequence itself; we don't use it at run time
|
||||||
|
bit-member-seq ,
|
||||||
|
[
|
||||||
|
{
|
||||||
|
{ [ over fixnum? ] [ ?nth 1 eq? ] }
|
||||||
|
{ [ over bignum? ] [ ?nth 1 eq? ] }
|
||||||
|
{ [ over exact-float? ] [ ?nth 1 eq? ] }
|
||||||
|
[ 2drop f ]
|
||||||
|
} cond
|
||||||
|
] %
|
||||||
|
] [ ] make ;
|
||||||
|
|
||||||
|
: member-quot ( seq -- newquot )
|
||||||
|
dup bit-member? [
|
||||||
|
bit-member-quot
|
||||||
|
] [
|
||||||
|
[ literalize [ t ] ] { } map>assoc
|
||||||
|
[ drop f ] suffix [ nip case ] curry
|
||||||
|
] if ;
|
||||||
|
|
||||||
|
\ member? [
|
||||||
|
dup sequence? [ member-quot ] [ drop f ] if
|
||||||
|
] 1 define-transform
|
||||||
|
|
||||||
|
: memq-quot ( seq -- newquot )
|
||||||
|
[ [ dupd eq? ] curry [ drop t ] ] { } map>assoc
|
||||||
|
[ drop f ] suffix [ nip cond ] curry ;
|
||||||
|
|
||||||
|
\ memq? [
|
||||||
|
dup sequence? [ memq-quot ] [ drop f ] if
|
||||||
|
] 1 define-transform
|
||||||
|
|
||||||
! Deprecated
|
! Deprecated
|
||||||
\ get-slots [ [ 1quotation ] map [ cleave ] curry ] 1 define-transform
|
\ get-slots [ [ 1quotation ] map [ cleave ] curry ] 1 define-transform
|
||||||
|
|
Loading…
Reference in New Issue