remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / core / kernel / kernel.factor
blobbe1de766504fb150bd65974ad650d441e9b4bbc6
1 ! Copyright (C) 2004, 2008 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: kernel.private slots.private math.private
4 classes.tuple.private ;
5 IN: kernel
7 DEFER: dip
8 DEFER: 2dip
9 DEFER: 3dip
11 ! Stack stuff
12 : spin ( x y z -- z y x ) swap rot ; inline
14 : roll ( x y z t -- y z t x ) [ rot ] dip swap ; inline
16 : -roll ( x y z t -- t x y z ) swap [ -rot ] dip ; inline
18 : 2over ( x y z -- x y z x y ) pick pick ; inline
20 : clear ( -- ) { } set-datastack ;
22 ! Combinators
23 GENERIC: call ( callable -- )
25 DEFER: if
27 : ? ( ? true false -- true/false )
28     #! 'if' and '?' can be defined in terms of each other
29     #! because the JIT special-cases an 'if' preceeded by
30     #! two literal quotations.
31     rot [ drop ] [ nip ] if ; inline
33 : if ( ? true false -- ) ? call ;
35 ! Single branch
36 : unless ( ? false -- )
37     swap [ drop ] [ call ] if ; inline
39 : when ( ? true -- )
40     swap [ call ] [ drop ] if ; inline
42 ! Anaphoric
43 : if* ( ? true false -- )
44     pick [ drop call ] [ 2nip call ] if ; inline
46 : when* ( ? true -- )
47     over [ call ] [ 2drop ] if ; inline
49 : unless* ( ? false -- )
50     over [ drop ] [ nip call ] if ; inline
52 ! Default
53 : ?if ( default cond true false -- )
54     pick [ roll 2drop call ] [ 2nip call ] if ; inline
56 ! Slippers and dippers.
57 ! Not declared inline because the compiler special-cases them
59 : slip ( quot x -- x )
60     #! 'slip' and 'dip' can be defined in terms of each other
61     #! because the JIT special-cases a 'dip' preceeded by
62     #! a literal quotation.
63     [ call ] dip ;
65 : 2slip ( quot x y -- x y )
66     #! '2slip' and '2dip' can be defined in terms of each other
67     #! because the JIT special-cases a '2dip' preceeded by
68     #! a literal quotation.
69     [ call ] 2dip ;
71 : 3slip ( quot x y z -- x y z )
72     #! '3slip' and '3dip' can be defined in terms of each other
73     #! because the JIT special-cases a '3dip' preceeded by
74     #! a literal quotation.
75     [ call ] 3dip ;
77 : dip ( x quot -- x ) swap slip ;
79 : 2dip ( x y quot -- x y ) -rot 2slip ;
81 : 3dip ( x y z quot -- x y z ) -roll 3slip ;
83 : 4dip ( w x y z quot -- w x y z ) swap [ 3dip ] dip ; inline
85 ! Keepers
86 : keep ( x quot -- x ) over slip ; inline
88 : 2keep ( x y quot -- x y ) [ 2dup ] dip 2dip ; inline
90 : 3keep ( x y z quot -- x y z ) [ 3dup ] dip 3dip ; inline
92 ! Cleavers
93 : bi ( x p q -- )
94     [ keep ] dip call ; inline
96 : tri ( x p q r -- )
97     [ [ keep ] dip keep ] dip call ; inline
99 ! Double cleavers
100 : 2bi ( x y p q -- )
101     [ 2keep ] dip call ; inline
103 : 2tri ( x y p q r -- )
104     [ [ 2keep ] dip 2keep ] dip call ; inline
106 ! Triple cleavers
107 : 3bi ( x y z p q -- )
108     [ 3keep ] dip call ; inline
110 : 3tri ( x y z p q r -- )
111     [ [ 3keep ] dip 3keep ] dip call ; inline
113 ! Spreaders
114 : bi* ( x y p q -- )
115     [ dip ] dip call ; inline
117 : tri* ( x y z p q r -- )
118     [ [ 2dip ] dip dip ] dip call ; inline
120 ! Double spreaders
121 : 2bi* ( w x y z p q -- )
122     [ 2dip ] dip call ; inline
124 : 2tri* ( u v w x y z p q r -- )
125     [ 4dip ] 2dip 2bi* ; inline
127 ! Appliers
128 : bi@ ( x y quot -- )
129     dup bi* ; inline
131 : tri@ ( x y z quot -- )
132     dup dup tri* ; inline
134 ! Double appliers
135 : 2bi@ ( w x y z quot -- )
136     dup 2bi* ; inline
138 : 2tri@ ( u v w y x z quot -- )
139     dup dup 2tri* ; inline
141 ! Object protocol
142 GENERIC: hashcode* ( depth obj -- code )
144 M: object hashcode* 2drop 0 ;
146 M: f hashcode* 2drop 31337 ;
148 : hashcode ( obj -- code ) 3 swap hashcode* ; inline
150 GENERIC: equal? ( obj1 obj2 -- ? )
152 M: object equal? 2drop f ;
154 TUPLE: identity-tuple ;
156 M: identity-tuple equal? 2drop f ;
158 : = ( obj1 obj2 -- ? )
159     2dup eq? [ 2drop t ] [
160         2dup both-fixnums? [ 2drop f ] [ equal? ] if
161     ] if ; inline
163 GENERIC: clone ( obj -- cloned )
165 M: object clone ;
167 M: callstack clone (clone) ;
169 ! Tuple construction
170 GENERIC: new ( class -- tuple )
172 GENERIC: boa ( ... class -- tuple )
174 ! Quotation building
175 : 2curry ( obj1 obj2 quot -- curry )
176     curry curry ; inline
178 : 3curry ( obj1 obj2 obj3 quot -- curry )
179     curry curry curry ; inline
181 : with ( param obj quot -- obj curry )
182     swapd [ swapd call ] 2curry ; inline
184 : prepose ( quot1 quot2 -- compose )
185     swap compose ; inline
187 ! Booleans
188 : not ( obj -- ? ) [ f ] [ t ] if ; inline
190 : and ( obj1 obj2 -- ? ) over ? ; inline
192 : >boolean ( obj -- ? ) [ t ] [ f ] if ; inline
194 : or ( obj1 obj2 -- ? ) dupd ? ; inline
196 : xor ( obj1 obj2 -- ? ) [ f swap ? ] when* ; inline
198 : both? ( x y quot -- ? ) bi@ and ; inline
200 : either? ( x y quot -- ? ) bi@ or ; inline
202 : most ( x y quot -- z )
203     [ 2dup ] dip call [ drop ] [ nip ] if ; inline
205 ! Loops
206 : loop ( pred: ( -- ? ) -- )
207     dup slip swap [ loop ] [ drop ] if ; inline recursive
209 : do ( pred body tail -- pred body tail )
210     over 3dip ; inline
212 : while ( pred: ( -- ? ) body: ( -- ) tail: ( -- ) -- )
213     [ pick 3dip [ do while ] 3curry ] keep if ; inline recursive
215 : until ( pred: ( -- ? ) body: ( -- ) tail: ( -- ) -- )
216     [ [ not ] compose ] 2dip while ; inline
218 ! Error handling -- defined early so that other files can
219 ! throw errors before continuations are loaded
220 : throw ( error -- * ) 5 getenv [ die ] or 1 (throw) ;
222 ERROR: assert got expect ;
224 : assert= ( a b -- ) 2dup = [ 2drop ] [ assert ] if ;
226 <PRIVATE
228 : declare ( spec -- ) drop ;
230 : hi-tag ( obj -- n ) { hi-tag } declare 0 slot ; inline
232 : do-primitive ( number -- ) "Improper primitive call" throw ;
234 PRIVATE>