suppressing printing of file names during bootstrap.
This commit is contained in:
		
							parent
							
								
									fe1f7077ff
								
							
						
					
					
						commit
						0939370a07
					
				
										
											Binary file not shown.
										
									
								
							|  | @ -1 +1 @@ | ||||||
| 1510 | 1511 | ||||||
|  |  | ||||||
|  | @ -1469,6 +1469,15 @@ | ||||||
| 
 | 
 | ||||||
| (import (ikarus makefile collections)) | (import (ikarus makefile collections)) | ||||||
| 
 | 
 | ||||||
|  | (define verbose-output? #f) | ||||||
|  | 
 | ||||||
|  | (define debugf | ||||||
|  |   (if verbose-output? | ||||||
|  |       printf | ||||||
|  |       (case-lambda | ||||||
|  |         [(str) (printf str)] | ||||||
|  |         [(str . args) (printf ".")]))) | ||||||
|  | 
 | ||||||
| (define (assq1 x ls) | (define (assq1 x ls) | ||||||
|   (let f ([x x] [ls ls] [p #f]) |   (let f ([x x] [ls ls] [p #f]) | ||||||
|     (cond |     (cond | ||||||
|  | @ -1582,9 +1591,9 @@ | ||||||
|                         [(assq x ',primlocs) => cdr] |                         [(assq x ',primlocs) => cdr] | ||||||
|                         [else #f]))) |                         [else #f]))) | ||||||
|                   ,@(map build-library library-legend))]) |                   ,@(map build-library library-legend))]) | ||||||
|     (let-values ([(code empty-subst empty-env) |     (let-values ([(name code empty-subst empty-env) | ||||||
|                   (boot-library-expand code)]) |                   (boot-library-expand code)]) | ||||||
|        code))) |        (values name code)))) | ||||||
| 
 | 
 | ||||||
| ;;; the first code to run on the system is one that initializes | ;;; the first code to run on the system is one that initializes | ||||||
| ;;; the value and proc fields of the location of $init-symbol-value! | ;;; the value and proc fields of the location of $init-symbol-value! | ||||||
|  | @ -1599,6 +1608,7 @@ | ||||||
|   (define val (gensym)) |   (define val (gensym)) | ||||||
|   (define args (gensym)) |   (define args (gensym)) | ||||||
|   (values  |   (values  | ||||||
|  |     (list '(ikarus.init)) | ||||||
|     (list |     (list | ||||||
|       `((case-lambda  |       `((case-lambda  | ||||||
|           [(,proc) (,proc ',loc ,proc)]) |           [(,proc) (,proc ',loc ,proc)]) | ||||||
|  | @ -1626,31 +1636,35 @@ | ||||||
|       ((null? subst) '())  |       ((null? subst) '())  | ||||||
|       ((not (assq (cdar subst) env)) (prune-subst (cdr subst) env))  |       ((not (assq (cdar subst) env)) (prune-subst (cdr subst) env))  | ||||||
|       (else (cons (car subst) (prune-subst (cdr subst) env))))) |       (else (cons (car subst) (prune-subst (cdr subst) env))))) | ||||||
|   (let-values (((code* subst env) (make-init-code))) |   (let-values (((name* code* subst env) (make-init-code))) | ||||||
|  |     (debugf "Expanding ") | ||||||
|     (for-each |     (for-each | ||||||
|       (lambda (file) |       (lambda (file) | ||||||
|         (printf "expanding ~s\n" file) |         (debugf " ~s" file) | ||||||
|         (load file |         (load file | ||||||
|           (lambda (x)  |           (lambda (x)  | ||||||
|             (let-values ([(code export-subst export-env) |             (let-values ([(name code export-subst export-env) | ||||||
|                           (boot-library-expand x)]) |                           (boot-library-expand x)]) | ||||||
|  |                (set! name* (cons name name*)) | ||||||
|                (set! code* (cons code code*)) |                (set! code* (cons code code*)) | ||||||
|                (set! subst (append export-subst subst)) |                (set! subst (append export-subst subst)) | ||||||
|                (set! env (append export-env env)))))) |                (set! env (append export-env env)))))) | ||||||
|       files) |       files) | ||||||
|  |     (debugf "\n") | ||||||
|     (let-values ([(export-subst export-env export-locs) |     (let-values ([(export-subst export-env export-locs) | ||||||
|                   (make-system-data (prune-subst subst env) env)]) |                   (make-system-data (prune-subst subst env) env)]) | ||||||
|       (let ([code (build-system-library export-subst export-env export-locs)]) |       (let-values ([(name code) | ||||||
|  |                     (build-system-library export-subst export-env export-locs)]) | ||||||
|         (values  |         (values  | ||||||
|  |           (reverse (cons* (car name*) name (cdr name*))) | ||||||
|           (reverse (cons* (car code*) code (cdr code*))) |           (reverse (cons* (car code*) code (cdr code*))) | ||||||
|           export-locs))))) |           export-locs))))) | ||||||
| 
 | 
 | ||||||
| 
 |  | ||||||
| (verify-map) | (verify-map) | ||||||
| 
 | 
 | ||||||
| (time-it "the entire bootstrap process" | (time-it "the entire bootstrap process" | ||||||
|   (lambda () |   (lambda () | ||||||
|     (let-values ([(core* locs) |     (let-values ([(name* core* locs) | ||||||
|                   (time-it "macro expansion" |                   (time-it "macro expansion" | ||||||
|                     (lambda ()  |                     (lambda ()  | ||||||
|                       (parameterize ([current-library-collection |                       (parameterize ([current-library-collection | ||||||
|  | @ -1662,15 +1676,18 @@ | ||||||
|               [(assq x locs) => cdr] |               [(assq x locs) => cdr] | ||||||
|               [else  |               [else  | ||||||
|                (error 'bootstrap "no location for primitive" x)]))) |                (error 'bootstrap "no location for primitive" x)]))) | ||||||
|          |  | ||||||
|         (let ([p (open-file-output-port "ikarus.boot"  |         (let ([p (open-file-output-port "ikarus.boot"  | ||||||
|                     (file-options no-fail))]) |                     (file-options no-fail))]) | ||||||
|           (time-it "code generation and serialization" |           (time-it "code generation and serialization" | ||||||
|             (lambda () |             (lambda () | ||||||
|  |               (debugf "Compiling ") | ||||||
|               (for-each  |               (for-each  | ||||||
|                 (lambda (x)  |                 (lambda (name core)  | ||||||
|                   (compile-core-expr-to-port x p)) |                   (debugf " ~s" name) | ||||||
|                 core*))) |                   (compile-core-expr-to-port core p)) | ||||||
|  |                 name* | ||||||
|  |                 core*)  | ||||||
|  |               (debugf "\n"))) | ||||||
|           (close-output-port p))))) |           (close-output-port p))))) | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -3719,7 +3719,7 @@ | ||||||
|     (let-values (((id name ver imp* vis* inv*  |     (let-values (((id name ver imp* vis* inv*  | ||||||
|                    invoke-code visit-code export-subst export-env) |                    invoke-code visit-code export-subst export-env) | ||||||
|                   (library-expander x))) |                   (library-expander x))) | ||||||
|       (values invoke-code export-subst export-env))) |       (values name invoke-code export-subst export-env))) | ||||||
|    |    | ||||||
|   (define (rev-map-append f ls ac) |   (define (rev-map-append f ls ac) | ||||||
|     (cond |     (cond | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	 Abdulaziz Ghuloum
						Abdulaziz Ghuloum