SCM Repository
View of /sml/trunk/src/cm/bootstrap/btcompile.sml
Parent Directory
|
Revision Log
Revision 368 -
(download)
(annotate)
Sat Jul 3 13:05:59 1999 UTC (21 years, 6 months ago) by blume
File size: 9415 byte(s)
Sat Jul 3 13:05:59 1999 UTC (21 years, 6 months ago) by blume
File size: 9415 byte(s)
better pathconfig interface + some cosmetic improvements
(* * The bootstrap compiler. * (Formerly known as "batch" compiler.) * * (C) 1999 Lucent Technologies, Bell Laboratories * * Author: Matthias Blume (blume@kurims.kyoto-u.ac.jp) *) functor BootstrapCompileFn (structure MachDepVC: MACHDEP_VC val os: SMLofNJ.SysInfo.os_kind) :> sig val make' : string option -> bool val make : unit -> bool val deliver' : string option -> bool val deliver : unit -> bool val reset : unit -> unit end = struct structure EM = GenericVC.ErrorMsg structure E = GenericVC.Environment structure SE = GenericVC.CMStaticEnv structure BE = GenericVC.BareEnvironment structure PS = GenericVC.PersStamps structure CoerceEnv = GenericVC.CoerceEnv structure SSV = SpecificSymValFn (structure MachDepVC = MachDepVC val os = os) structure P = OS.Path structure F = OS.FileSys (* Since the bootstrap compiler never executes any of the code * it produces, we don't need any dynamic values. Therefore, * we create RecompPersstate (but not FullPersstate!) and * instantiate Recomp as well as RecompTraversal. * Since RecompPersstate is not part of any surrounding FullPersstate, * function "discard_value" simply does nothing. *) structure RecompPersstate = RecompPersstateFn (structure MachDepVC = MachDepVC val discard_code = true fun stable_value_present i = false fun new_smlinfo i = ()) structure Recomp = RecompFn (structure PS = RecompPersstate) structure RT = CompileGenericFn (structure CT = Recomp) fun recomp gp g = isSome (RT.group gp g) (* instantiate Stabilize... *) structure Stabilize = StabilizeFn (fun bn2statenv gp i = #1 (#stat (valOf (RT.bnode gp i))) val getPid = RecompPersstate.pid_fetch_sml fun warmup (i, p) = () val recomp = recomp val transfer_state = RecompPersstate.transfer_state) (* ... and Parse *) structure Parse = ParseFn (structure Stabilize = Stabilize val pending = AutoLoad.getPending) (* copying an input file to an output file safely... *) fun copyFile (oi, ci, oo, co, inp, outp, eof) (inf, outf) = let fun workIn is = let fun workOut os = let val N = 4096 fun loop () = if eof is then () else (outp (os, inp (is, N)); loop ()) in loop () end in SafeIO.perform { openIt = fn () => oo outf, closeIt = co, work = workOut, cleanup = fn () => (F.remove outf handle _ => ()) } end in SafeIO.perform { openIt = fn () => oi inf, closeIt = ci, work = workIn, cleanup = fn () => () } end val copyTextFile = copyFile (TextIO.openIn, TextIO.closeIn, AutoDir.openTextOut, TextIO.closeOut, TextIO.inputN, TextIO.output, TextIO.endOfStream) val copyBinFile = copyFile (BinIO.openIn, BinIO.closeIn, AutoDir.openBinOut, BinIO.closeOut, BinIO.inputN, BinIO.output, BinIO.endOfStream) fun compile deliver dbopt = let val dirbase = getOpt (dbopt, BtNames.dirbaseDefault) val pcmodespec = BtNames.pcmodespec val initgspec = BtNames.initgspec val maingspec = BtNames.maingspec val arch = MachDepVC.architecture val osname = FilenamePolicy.kind2name os val bindir = concat [dirbase, ".bin.", arch, "-", osname] val bootdir = concat [dirbase, ".boot.", arch, "-", osname] fun listName (p, copy) = case P.fromString p of { vol = "", isAbs = false, arcs = arc0 :: arc1 :: arcn } => let fun win32name () = concat (arc1 :: foldr (fn (a, r) => "\\" :: a :: r) [] arcn) fun doCopy () = let val bootpath = P.toString { isAbs = false, vol = "", arcs = bootdir :: arc1 :: arcn } in copyBinFile (p, bootpath) end in if copy andalso arc0 = bindir then doCopy () else (); case os of SMLofNJ.SysInfo.WIN32 => win32name () | _ => P.toString { isAbs = false, vol = "", arcs = arc1 :: arcn } end | _ => raise Fail "BootstrapCompile:listName: bad name" val keep_going = EnvConfig.getSet StdConfig.keep_going NONE val ctxt = SrcPath.cwdContext () val pidfile = P.joinDirFile { dir = bootdir, file = "RTPID" } val listfile = P.joinDirFile { dir = bootdir, file = "BOOTLIST" } val pcmode = PathConfig.new () val _ = PathConfig.processSpecFile (pcmode, pcmodespec) fun stdpath s = SrcPath.standard pcmode { context = ctxt, spec = s } val initgspec = stdpath initgspec val maingspec = stdpath maingspec val cmifile = valOf (SrcPath.reAnchoredName (initgspec, bootdir)) handle Option => raise Fail "BootstrapCompile: cmifile" val fnpolicy = FilenamePolicy.separate { bindir = bindir, bootdir = bootdir } { arch = arch, os = os } fun mkParam { primconf, pervasive, pervcorepids } { corenv } = { primconf = primconf, fnpolicy = fnpolicy, pcmode = pcmode, symenv = SSV.env, keep_going = keep_going, pervasive = pervasive, corenv = corenv, pervcorepids = pervcorepids } val emptydyn = E.dynamicPart E.emptyEnv (* first, build an initial GeneralParam.info, so we can * deal with the pervasive env and friends... *) val primconf = Primitive.primEnvConf val mkInitParam = mkParam { primconf = primconf, pervasive = E.emptyEnv, pervcorepids = PidSet.empty } val param_nocore = mkInitParam { corenv = BE.staticPart BE.emptyEnv } val groupreg = GroupReg.new () val errcons = EM.defaultConsumer () val ginfo_nocore = { param = param_nocore, groupreg = groupreg, errcons = errcons } fun main_compile arg = let val { rts, core, pervasive, primitives, binpaths } = arg val ovldR = GenericVC.Control.overloadKW val savedOvld = !ovldR val _ = ovldR := true (* here we build a new gp -- the one that uses the freshly * brewed pervasive env, core env, and primitives *) val core = valOf (RT.sbnode ginfo_nocore core) val corenv = CoerceEnv.es2bs (#1 (#stat core)) val core_sym = #1 (#sym core) (* The following is a bit of a hack (but corenv is a hack anyway): * As soon as we have core available, we have to patch the * ginfo to include the correct corenv (because virtually * everybody else needs access to corenv). *) val param_justcore = mkInitParam { corenv = corenv } val ginfo_justcore = { param = param_justcore, groupreg = groupreg, errcons = errcons } fun rt n = valOf (RT.sbnode ginfo_justcore n) val rts = rt rts val pervasive = rt pervasive fun sn2pspec (name, n) = let val { stat = (s, sp), sym = (sy, syp), ctxt } = rt n val env = E.mkenv { static = s, symbolic = sy, dynamic = emptydyn } val pidInfo = { statpid = sp, sympid = syp, ctxt = ctxt } in { name = name, env = env, pidInfo = pidInfo } end val pspecs = map sn2pspec primitives val _ = ovldR := savedOvld (* This is a hack but must be done for both the symbolic * and later the dynamic part of the core environment: * we must include these parts in the pervasive env. *) val perv_sym = E.layerSymbolic (#1 (#sym pervasive), core_sym) val param = mkParam { primconf = Primitive.configuration pspecs, pervasive = E.mkenv { static = #1 (#stat pervasive), symbolic = perv_sym, dynamic = emptydyn }, pervcorepids = PidSet.addList (PidSet.empty, [#2 (#stat pervasive), #2 (#sym pervasive), #2 (#stat core)]) } { corenv = corenv } val stab = if deliver then SOME true else NONE in case Parse.parse NONE param stab maingspec of NONE => false | SOME (g, gp) => if recomp gp g then let val rtspid = PS.toHex (#2 (#stat rts)) fun writeList s = let fun add ((p, flag), l) = let val n = listName (p, true) in if flag then n :: l else l end fun transcribe (p, NONE) = listName (p, true) | transcribe (p, SOME (off, desc)) = concat [listName (p, false), "@", Int.toString off, ":", desc] val bootstrings = foldr add (map transcribe (MkBootList.group g)) binpaths fun show str = (TextIO.output (s, str); TextIO.output (s, "\n")) in app show bootstrings end in if deliver then (SafeIO.perform { openIt = fn () => AutoDir.openTextOut pidfile, closeIt = TextIO.closeOut, work = fn s => TextIO.output (s, rtspid ^ "\n"), cleanup = fn () => OS.FileSys.remove pidfile handle _ => () }; SafeIO.perform { openIt = fn () => AutoDir.openTextOut listfile, closeIt = TextIO.closeOut, work = writeList, cleanup = fn () => OS.FileSys.remove listfile handle _ => () }; copyTextFile (SrcPath.osstring initgspec, cmifile); Say.say ["Runtime System PID is: ", rtspid, "\n"]) else (); true end else false end handle Option => (RT.reset (); false) (* to catch valOf failures in "rt" *) in case BuildInitDG.build ginfo_nocore initgspec of SOME x => main_compile x | NONE => false end val make' = compile false fun make () = make' NONE val deliver' = compile true fun deliver () = deliver' NONE fun reset () = (RecompPersstate.reset (); RT.resetAll (); Recomp.reset (); Parse.reset ()) end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |