2009-03-16 21:11:36 -04:00
|
|
|
! Copyright (C) 2007, 2009 Slava Pestov, Daniel Ehrenberg.
|
2008-07-20 05:24:37 -04:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-03-16 21:11:36 -04:00
|
|
|
USING: fry accessors arrays kernel kernel.private combinators.private
|
2009-04-22 22:26:55 -04:00
|
|
|
words sequences generic math math.order namespaces quotations
|
2009-04-11 21:30:51 -04:00
|
|
|
assocs combinators combinators.short-circuit classes.tuple
|
2009-05-14 17:54:16 -04:00
|
|
|
classes.tuple.private effects summary hashtables classes sets
|
2009-03-21 04:10:21 -04:00
|
|
|
definitions generic.standard slots.private continuations locals
|
2009-04-11 21:30:51 -04:00
|
|
|
sequences.private generalizations stack-checker.backend
|
|
|
|
stack-checker.state stack-checker.visitor stack-checker.errors
|
|
|
|
stack-checker.values stack-checker.recursive-state ;
|
2008-07-20 05:24:37 -04:00
|
|
|
IN: stack-checker.transforms
|
|
|
|
|
2009-04-10 08:08:16 -04:00
|
|
|
: call-transformer ( word stack quot -- newquot )
|
|
|
|
'[ _ _ with-datastack [ length 1 assert= ] [ first ] bi nip ]
|
|
|
|
[ transform-expansion-error ]
|
|
|
|
recover ;
|
|
|
|
|
2009-02-06 05:38:54 -05:00
|
|
|
:: ((apply-transform)) ( word quot values stack rstate -- )
|
|
|
|
rstate recursive-state
|
2009-04-10 08:08:16 -04:00
|
|
|
[ word stack quot call-transformer ] with-variable
|
2009-02-06 05:38:54 -05:00
|
|
|
[
|
|
|
|
values [ length meta-d shorten-by ] [ #drop, ] bi
|
|
|
|
rstate infer-quot
|
2009-04-20 19:44:45 -04:00
|
|
|
] [ word infer-word ] if* ;
|
2008-08-10 23:22:26 -04:00
|
|
|
|
2009-02-06 11:21:55 -05:00
|
|
|
: literals? ( values -- ? ) [ literal-value? ] all? ;
|
|
|
|
|
2008-08-10 23:22:26 -04:00
|
|
|
: (apply-transform) ( word quot n -- )
|
2009-02-06 11:21:55 -05:00
|
|
|
ensure-d dup literals? [
|
2009-02-06 05:38:54 -05:00
|
|
|
dup empty? [ dup recursive-state get ] [
|
2008-08-14 00:52:49 -04:00
|
|
|
[ ]
|
2008-08-10 23:22:26 -04:00
|
|
|
[ [ literal value>> ] map ]
|
2008-08-14 00:52:49 -04:00
|
|
|
[ first literal recursion>> ] tri
|
2008-08-10 23:22:26 -04:00
|
|
|
] if
|
|
|
|
((apply-transform))
|
2009-04-20 19:44:45 -04:00
|
|
|
] [ 2drop infer-word ] if ;
|
2008-07-23 01:17:08 -04:00
|
|
|
|
|
|
|
: apply-transform ( word -- )
|
2009-02-06 05:38:54 -05:00
|
|
|
[ ] [ "transform-quot" word-prop ] [ "transform-n" word-prop ] tri
|
|
|
|
(apply-transform) ;
|
2008-07-23 01:17:08 -04:00
|
|
|
|
|
|
|
: apply-macro ( word -- )
|
2009-02-06 05:38:54 -05:00
|
|
|
[ ] [ "macro" word-prop ] [ "declared-effect" word-prop in>> length ] tri
|
|
|
|
(apply-transform) ;
|
2008-07-20 05:24:37 -04:00
|
|
|
|
|
|
|
: define-transform ( word quot n -- )
|
2008-08-31 20:17:04 -04:00
|
|
|
[ drop "transform-quot" set-word-prop ]
|
|
|
|
[ nip "transform-n" set-word-prop ]
|
2008-07-23 01:17:08 -04:00
|
|
|
3bi ;
|
2008-07-20 05:24:37 -04:00
|
|
|
|
|
|
|
! Combinators
|
|
|
|
\ cond [ cond>quot ] 1 define-transform
|
|
|
|
|
2009-04-20 19:44:45 -04:00
|
|
|
\ cond t "no-compile" set-word-prop
|
|
|
|
|
2008-07-20 05:24:37 -04:00
|
|
|
\ case [
|
2008-09-06 20:13:59 -04:00
|
|
|
[
|
|
|
|
[ no-case ]
|
2008-07-20 05:24:37 -04:00
|
|
|
] [
|
2009-05-25 17:38:33 -04:00
|
|
|
dup last callable? [
|
|
|
|
dup last swap but-last
|
2008-07-20 05:24:37 -04:00
|
|
|
] [
|
|
|
|
[ no-case ] swap
|
|
|
|
] if case>quot
|
2008-09-06 20:13:59 -04:00
|
|
|
] if-empty
|
2008-07-20 05:24:37 -04:00
|
|
|
] 1 define-transform
|
|
|
|
|
2009-04-20 19:44:45 -04:00
|
|
|
\ case t "no-compile" set-word-prop
|
|
|
|
|
2008-07-20 05:24:37 -04:00
|
|
|
\ cleave [ cleave>quot ] 1 define-transform
|
|
|
|
|
2009-04-20 19:44:45 -04:00
|
|
|
\ cleave t "no-compile" set-word-prop
|
|
|
|
|
2008-07-20 05:24:37 -04:00
|
|
|
\ 2cleave [ 2cleave>quot ] 1 define-transform
|
|
|
|
|
2009-04-20 19:44:45 -04:00
|
|
|
\ 2cleave t "no-compile" set-word-prop
|
|
|
|
|
2008-07-20 05:24:37 -04:00
|
|
|
\ 3cleave [ 3cleave>quot ] 1 define-transform
|
|
|
|
|
2009-04-20 19:44:45 -04:00
|
|
|
\ 3cleave t "no-compile" set-word-prop
|
|
|
|
|
2008-07-20 05:24:37 -04:00
|
|
|
\ spread [ spread>quot ] 1 define-transform
|
|
|
|
|
2009-04-20 19:44:45 -04:00
|
|
|
\ spread t "no-compile" set-word-prop
|
|
|
|
|
2009-07-18 04:33:45 -04:00
|
|
|
\ 0&& [ '[ _ 0 n&& ] ] 1 define-transform
|
|
|
|
|
|
|
|
\ 0&& t "no-compile" set-word-prop
|
|
|
|
|
|
|
|
\ 1&& [ '[ _ 1 n&& ] ] 1 define-transform
|
|
|
|
|
|
|
|
\ 1&& t "no-compile" set-word-prop
|
|
|
|
|
|
|
|
\ 2&& [ '[ _ 2 n&& ] ] 1 define-transform
|
|
|
|
|
|
|
|
\ 2&& t "no-compile" set-word-prop
|
|
|
|
|
|
|
|
\ 3&& [ '[ _ 3 n&& ] ] 1 define-transform
|
|
|
|
|
|
|
|
\ 3&& t "no-compile" set-word-prop
|
|
|
|
|
|
|
|
\ 0|| [ '[ _ 0 n|| ] ] 1 define-transform
|
|
|
|
|
|
|
|
\ 0|| t "no-compile" set-word-prop
|
|
|
|
|
|
|
|
\ 1|| [ '[ _ 1 n|| ] ] 1 define-transform
|
|
|
|
|
|
|
|
\ 1|| t "no-compile" set-word-prop
|
|
|
|
|
|
|
|
\ 2|| [ '[ _ 2 n|| ] ] 1 define-transform
|
|
|
|
|
|
|
|
\ 2|| t "no-compile" set-word-prop
|
|
|
|
|
|
|
|
\ 3|| [ '[ _ 3 n|| ] ] 1 define-transform
|
|
|
|
|
|
|
|
\ 3|| t "no-compile" set-word-prop
|
|
|
|
|
2008-08-10 23:22:26 -04:00
|
|
|
\ (call-next-method) [
|
2008-11-22 20:57:25 -05:00
|
|
|
[
|
|
|
|
[ "method-class" word-prop ]
|
|
|
|
[ "method-generic" word-prop ] bi
|
|
|
|
[ inlined-dependency depends-on ] bi@
|
2008-11-28 02:11:03 -05:00
|
|
|
] [
|
|
|
|
[ next-method-quot ]
|
|
|
|
[ '[ _ no-next-method ] ] bi or
|
|
|
|
] bi
|
2008-11-22 20:57:25 -05:00
|
|
|
] 1 define-transform
|
2008-08-10 23:22:26 -04:00
|
|
|
|
2009-04-20 19:44:45 -04:00
|
|
|
\ (call-next-method) t "no-compile" set-word-prop
|
|
|
|
|
2008-08-10 23:22:26 -04:00
|
|
|
! Constructors
|
2008-07-20 05:24:37 -04:00
|
|
|
\ boa [
|
|
|
|
dup tuple-class? [
|
2008-08-30 03:31:27 -04:00
|
|
|
dup inlined-dependency depends-on
|
2008-09-19 01:26:27 -04:00
|
|
|
[ "boa-check" word-prop [ ] or ]
|
2008-09-10 23:11:40 -04:00
|
|
|
[ tuple-layout '[ _ <tuple-boa> ] ]
|
2008-07-20 05:24:37 -04:00
|
|
|
bi append
|
2008-08-10 23:22:26 -04:00
|
|
|
] [ drop f ] if
|
|
|
|
] 1 define-transform
|
|
|
|
|
2009-04-20 19:44:45 -04:00
|
|
|
\ boa t "no-compile" set-word-prop
|