| 
									
										
										
										
											2008-01-01 14:54:14 -05:00
										 |  |  | ! Copyright (C) 2004, 2008 Slava Pestov. | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							|  |  |  | USING: kernel namespaces arrays sequences io inference.backend | 
					
						
							| 
									
										
										
										
											2008-04-07 21:07:30 -04:00
										 |  |  | inference.state generator debugger words compiler.units | 
					
						
							|  |  |  | continuations vocabs assocs alien.compiler dlists optimizer | 
					
						
							|  |  |  | definitions math compiler.errors threads graphs generic | 
					
						
							| 
									
										
										
										
											2008-06-11 03:58:38 -04:00
										 |  |  | inference combinators dequeues search-dequeues ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | IN: compiler | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-11 03:58:38 -04:00
										 |  |  | SYMBOL: +failed+ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : ripple-up ( words -- )
 | 
					
						
							|  |  |  |     dup "compiled-effect" word-prop +failed+ eq?
 | 
					
						
							|  |  |  |     [ usage [ word? ] filter ] [ compiled-usage keys ] if
 | 
					
						
							|  |  |  |     [ queue-compile ] each ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : ripple-up? ( word effect -- ? )
 | 
					
						
							|  |  |  |     #! If the word has previously been compiled and had a | 
					
						
							|  |  |  |     #! different stack effect, we have to recompile any callers. | 
					
						
							|  |  |  |     swap "compiled-effect" word-prop [ = not ] keep and ;
 | 
					
						
							| 
									
										
										
										
											2007-12-19 20:55:40 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : save-effect ( word effect -- )
 | 
					
						
							| 
									
										
										
										
											2008-06-11 03:58:38 -04:00
										 |  |  |     [ dupd ripple-up? [ ripple-up ] [ drop ] if ] | 
					
						
							|  |  |  |     [ "compiled-effect" set-word-prop ] | 
					
						
							|  |  |  |     2bi ;
 | 
					
						
							| 
									
										
										
										
											2007-12-19 20:55:40 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-07 08:49:36 -04:00
										 |  |  | : compile-begins ( word -- )
 | 
					
						
							|  |  |  |     f swap compiler-error ;
 | 
					
						
							| 
									
										
										
										
											2008-01-01 14:54:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-07 08:49:36 -04:00
										 |  |  | : compile-failed ( word error -- )
 | 
					
						
							|  |  |  |     [ swap compiler-error ] | 
					
						
							| 
									
										
										
										
											2007-12-24 21:41:46 -05:00
										 |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-05-07 08:49:36 -04:00
										 |  |  |         drop
 | 
					
						
							| 
									
										
										
										
											2008-06-11 03:58:38 -04:00
										 |  |  |         [ compiled-unxref ] | 
					
						
							| 
									
										
										
										
											2008-05-07 08:49:36 -04:00
										 |  |  |         [ f swap compiled get set-at ] | 
					
						
							| 
									
										
										
										
											2008-06-11 03:58:38 -04:00
										 |  |  |         [ +failed+ save-effect ] | 
					
						
							|  |  |  |         tri
 | 
					
						
							| 
									
										
										
										
											2008-05-07 08:49:36 -04:00
										 |  |  |     ] 2bi ;
 | 
					
						
							| 
									
										
										
										
											2008-01-01 14:54:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-07 08:49:36 -04:00
										 |  |  | : compile-succeeded ( effect word -- )
 | 
					
						
							|  |  |  |     [ swap save-effect ] | 
					
						
							|  |  |  |     [ compiled-unxref ] | 
					
						
							|  |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-06-06 21:47:09 -04:00
										 |  |  |         dup crossref? | 
					
						
							| 
									
										
										
										
											2008-05-07 08:49:36 -04:00
										 |  |  |         [ dependencies get compiled-xref ] [ drop ] if
 | 
					
						
							|  |  |  |     ] tri ;
 | 
					
						
							| 
									
										
										
										
											2008-01-01 14:54:14 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : (compile) ( word -- )
 | 
					
						
							| 
									
										
										
										
											2008-05-07 08:49:36 -04:00
										 |  |  |     [ | 
					
						
							|  |  |  |         H{ } clone dependencies set
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             [ compile-begins ] | 
					
						
							|  |  |  |             [ | 
					
						
							|  |  |  |                 [ word-dataflow ] [ compile-failed return ] recover
 | 
					
						
							|  |  |  |                 optimize | 
					
						
							|  |  |  |             ] | 
					
						
							|  |  |  |             [ dup generate ] | 
					
						
							|  |  |  |             [ compile-succeeded ] | 
					
						
							|  |  |  |         } cleave
 | 
					
						
							|  |  |  |     ] curry with-return ;
 | 
					
						
							| 
									
										
										
										
											2007-12-24 21:41:46 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-11 03:58:38 -04:00
										 |  |  | : compile-loop ( dequeue -- )
 | 
					
						
							|  |  |  |     [ (compile) yield ] slurp-dequeue ;
 | 
					
						
							| 
									
										
										
										
											2007-12-17 16:29:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 03:19:38 -05:00
										 |  |  | : decompile ( word -- )
 | 
					
						
							|  |  |  |     f 2array 1array t modify-code-heap ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : optimized-recompile-hook ( words -- alist )
 | 
					
						
							| 
									
										
										
										
											2007-12-17 16:29:54 -05:00
										 |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-06-11 03:58:38 -04:00
										 |  |  |         <hashed-dlist> compile-queue set
 | 
					
						
							| 
									
										
										
										
											2007-12-24 21:41:46 -05:00
										 |  |  |         H{ } clone compiled set
 | 
					
						
							| 
									
										
										
										
											2008-02-25 04:38:37 -05:00
										 |  |  |         [ queue-compile ] each
 | 
					
						
							| 
									
										
										
										
											2007-12-24 21:41:46 -05:00
										 |  |  |         compile-queue get compile-loop | 
					
						
							| 
									
										
										
										
											2008-02-17 19:38:29 -05:00
										 |  |  |         compiled get >alist
 | 
					
						
							| 
									
										
										
										
											2008-02-24 03:19:38 -05:00
										 |  |  |     ] with-scope ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-02 22:27:49 -04:00
										 |  |  | : enable-compiler ( -- )
 | 
					
						
							|  |  |  |     [ optimized-recompile-hook ] recompile-hook set-global ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : disable-compiler ( -- )
 | 
					
						
							|  |  |  |     [ default-recompile-hook ] recompile-hook set-global ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-27 17:26:39 -05:00
										 |  |  | : recompile-all ( -- )
 | 
					
						
							| 
									
										
										
										
											2008-02-24 03:19:38 -05:00
										 |  |  |     forget-errors all-words compile ;
 |