| 
									
										
										
										
											2010-07-23 19:31:15 -04:00
										 |  |  | ! Copyright (C) 2008, 2010 Slava Pestov. | 
					
						
							| 
									
										
										
										
											2008-08-31 06:40:29 -04:00
										 |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							| 
									
										
										
										
											2014-12-13 19:10:21 -05:00
										 |  |  | USING: accessors assocs classes classes.builtin | 
					
						
							|  |  |  | classes.singleton classes.tuple combinators | 
					
						
							|  |  |  | combinators.short-circuit compiler.tree | 
					
						
							|  |  |  | compiler.tree.combinators compiler.tree.late-optimizations fry | 
					
						
							|  |  |  | kernel math.partial-dispatch memoize sequences | 
					
						
							|  |  |  | stack-checker.dependencies words ;
 | 
					
						
							| 
									
										
										
										
											2008-08-31 06:40:29 -04:00
										 |  |  | IN: compiler.tree.finalization | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GENERIC: finalize* ( node -- nodes )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-08 04:51:44 -04:00
										 |  |  | : finalize ( nodes -- nodes' ) [ finalize* ] map-nodes ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : splice-final ( quot -- nodes ) splice-quot finalize ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-23 19:31:15 -04:00
										 |  |  | : splice-predicate ( word -- nodes )
 | 
					
						
							| 
									
										
										
										
											2012-06-21 02:55:24 -04:00
										 |  |  |     [ add-depends-on-definition ] [ def>> splice-final ] bi ;
 | 
					
						
							| 
									
										
										
										
											2010-07-23 19:31:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-18 04:33:24 -04:00
										 |  |  | M: #copy finalize* drop f ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: #shuffle finalize* | 
					
						
							|  |  |  |     dup { | 
					
						
							|  |  |  |         [ [ in-d>> length ] [ out-d>> length ] bi = ] | 
					
						
							|  |  |  |         [ [ in-r>> length ] [ out-r>> length ] bi = ] | 
					
						
							|  |  |  |         [ [ in-d>> ] [ out-d>> ] [ mapping>> ] tri '[ _ at = ] 2all? ] | 
					
						
							|  |  |  |         [ [ in-r>> ] [ out-r>> ] [ mapping>> ] tri '[ _ at = ] 2all? ] | 
					
						
							|  |  |  |     } 1&& [ drop f ] when ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-06 10:16:29 -05:00
										 |  |  | MEMO: cached-expansion ( word -- nodes )
 | 
					
						
							| 
									
										
										
										
											2008-10-08 04:51:44 -04:00
										 |  |  |     def>> splice-final ;
 | 
					
						
							| 
									
										
										
										
											2008-09-02 23:59:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-06 10:16:29 -05:00
										 |  |  | GENERIC: finalize-word ( #call word -- nodes )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: predicate finalize-word | 
					
						
							|  |  |  |     "predicating" word-prop { | 
					
						
							|  |  |  |         { [ dup builtin-class? ] [ drop word>> cached-expansion ] } | 
					
						
							| 
									
										
										
										
											2010-07-23 19:31:15 -04:00
										 |  |  |         { [ dup tuple-class? ] [ drop word>> splice-predicate ] } | 
					
						
							|  |  |  |         { [ dup singleton-class? ] [ drop word>> splice-predicate ] } | 
					
						
							| 
									
										
										
										
											2008-12-06 10:16:29 -05:00
										 |  |  |         [ drop ] | 
					
						
							|  |  |  |     } cond ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-16 19:29:40 -04:00
										 |  |  | M: math-partial finalize-word | 
					
						
							|  |  |  |     dup primitive? [ drop ] [ nip cached-expansion ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-06 10:16:29 -05:00
										 |  |  | M: word finalize-word drop ;
 | 
					
						
							| 
									
										
										
										
											2008-09-02 23:59:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-02 03:02:05 -04:00
										 |  |  | M: #call finalize* | 
					
						
							| 
									
										
										
										
											2008-12-06 10:16:29 -05:00
										 |  |  |     dup word>> finalize-word ;
 | 
					
						
							| 
									
										
										
										
											2008-09-02 03:02:05 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-31 06:40:29 -04:00
										 |  |  | M: node finalize* ;
 |