123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- ; Copyright (c) 1993-2007 by Richard Kelsey and Jonathan Rees. See file COPYING.
- ; Packages involved in building the initial system.
- ; Access to values from packages and structures
- (define-structure environments environments-interface
- (open scheme-level-2
- packages bindings meta-types
- fluids cells
- locations ; contents location-assigned?
- simple-signals) ; error
- (files (rts env)))
- ; EVAL and LOAD
- (define-structure evaluation evaluation-interface
- (open scheme-level-2
- packages ;package-uid package->environment link!
- environments ;package-for-load
- compiler-envs ;bind-source-filename
- reading-forms ;read-forms $note-file-package
- syntactic ;scan-forms expand-forms
- compiler ;compile-forms
- closures ;make-closure
- vm-exposure ;invoke-closure
- features ;current-noise-port force-output
- simple-signals fluids)
- (files (rts eval)))
- ; Scheme = scheme-level-2 plus EVAL and friends
- (define-module (make-scheme environments evaluation)
- (define-structure scheme scheme-interface
- (open scheme-level-2
- environments
- evaluation))
- scheme)
- ; Command processor.
- (define-module (make-mini-command scheme) ;copied from debug-packages.scm
- (define-structure mini-command (export command-processor)
- (open scheme
- ascii byte-vectors os-strings
- writing methods
- simple-signals simple-conditions handle
- i/o) ;current-error-port
- (files (debug mini-command)
- (env dispcond))) ; avoid having to include this generally
- mini-command)
- ; For building systems.
- (define-module (make-initial-system scheme command)
- (define-structure initial-system (export start)
- (open scheme
- command
- interfaces ;make-simple-interface
- packages ;make-simple-package
- environments ;with-interaction-environment, etc.
- usual-resumer
- simple-conditions handle ;error? with-handler
- simple-signals) ;error
- (files (env start)))
- initial-system)
- ; Utility to load packages following dependency links (OPEN and ACCESS)
- ;Cf. (link-initial-system) and Makefile
- (define-structure ensures-loaded (export ensure-loaded)
- (open scheme-level-2
- features ;current-noise-port
- packages ;package-uid package-clients
- packages-internal ;package-loaded? set-package-loaded?!
- scan-package ;collect-packages check-structure
- compile-packages ;compile-package
- closures ;make-closure
- vm-exposure ;invoke-closure
- environments ;with-interaction-environment
- weak ;walk-population
- )
- (files (env load-package)))
- ; Things needed by the expression generated by REIFY-STRUCTURES.
- (define-structure for-reification for-reification-interface
- (open scheme-level-1
- packages packages-internal
- simple-signals
- meta-types ;sexp->type structure-type
- interfaces ;make-simple-interface
- bindings
- nodes ;get-operator operator? operator-type
- primops ;get-primop primop? primop-type
- usual-macros ;usual-transform
- inline ;inline-transform
- transforms ;make-transform transform? transform-type
- tables)
- (files (bcomp for-reify)))
|