1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
(* modules.sml
*
* (C) 2001 Lucent Technologies, Bell Labs
*)
structure Modules : MODULES =
struct
local structure S = Symbol
structure SP = SymPath
structure IP = InvPath
structure EP = EntPath
structure ST = Stamps
structure T = Types
structure A = Access
structure E = Env
in
(* -------------------- signature-related definitions -------------------- *)
type sharespec = SP.path list (* only internal sharing *)
datatype Signature
= SIG of sigrec
| ERRORsig
(*
* 1. tyc spec should only be GENtyc, with FORMAL or DATATYPE tyckinds, or DEFtyc.
* 2. the stamp and the path for the GENtyc or DEFtyc should be meaningless
* (but the stamps are in fact used for relativization of withtype bodies and
* the datacon domains of datatype repl specs)
* 3. if VALspec and CONspec are using typspec instead of T.ty, then
* the whole thing can be further cleaned up.
*)
and spec
= TYCspec of {entVar : EP.entVar, info: tycSpecInfo}
| STRspec of {entVar : EP.entVar, sign : Signature,
def : (strDef * int) option, slot : int}
| FCTspec of {entVar : EP.entVar, sign : fctSig, slot : int}
| VALspec of {spec : T.ty, slot : int}
| CONspec of {spec : T.datacon, slot : int option}
(* there are two forms of TYCspec. One for regular, explicitly defined signatures,
* and the other for inferred signatures, where all the type info is always in the
* realization. But we need some info for printing in the one case where a
* realization is not available with the signature, namely an inferred result
* signature for a functor. *)
and tycSpecInfo
= RegTycSpec of {spec : T.tycon, repl: bool, scope: int} (* normal signature *)
| InfTycSpec of {name: S.symbol, arity: int} (* inferred signature *)
(*
* and specEnv
* = NILsenv
* | BINDsenv of spec E.env * specEnv
* | INCLsenv of int * spec E.env * specEnv
*)
and fctSig
= FSIG of {kind : S.symbol option,
paramsig : Signature,
paramvar : EP.entVar,
paramsym : S.symbol option,
bodysig : Signature}
| ERRORfsig
and extDef
= TYCdef of
{path : SymPath.path,
tyc : T.tycon,
relative : bool} (* does tyc contain entity paths *)
| STRdef of SP.path * strDef
and strDef
= CONSTstrDef of Structure (* constant *)
| VARstrDef of Signature * EP.entPath (* relative *)
(* ------------------------- structures and functors ---------------------- *)
and Structure
= STR of strrec
| STRSIG of {sign: Signature, entPath : EP.entPath}
| ERRORstr
and Functor
= FCT of fctrec
| ERRORfct
(* ----------------------- entity-related definitions -------------------- *)
and entity (* elements of a entityEnv *)
= TYCent of tycEntity
| STRent of strEntity
| FCTent of fctEntity
| ERRORent
(* no entities for val, con, exn, but this may change *)
and fctClosure (* realization for functors *)
= CLOSURE of {param : EP.entVar, body : strExp, env : entityEnv}
and stampExp
= (* CONST of ST.stamp (* an existing stamp *)
| *) GETSTAMP of strExp
| NEW (* generate a new stamp *)
and tycExp (* expression evaluating to a TYCentity *)
= VARtyc of EP.entPath (* selection from cur-EE *)
| CONSTtyc of T.tycon (* actual tycon *)
| FORMtyc of T.tycon (* formal tycon *)
and strExp
= VARstr of EP.entPath (* selection from current entityEnv *)
| CONSTstr of strEntity
| STRUCTURE of {stamp : stampExp, entDec : entityDec}
| APPLY of fctExp * strExp
(* the arg strExp contains coercions to match the fct param sig *)
| LETstr of entityDec * strExp
| ABSstr of Signature * strExp (* shortcut for abstraction matching *)
| FORMstr of fctSig (* formal functor body structure *)
| CONSTRAINstr of {boundvar : EP.entVar, raw : strExp, coercion: strExp}
(* similar to LETstr(M.STRdec(boundvar, strExp), coercion),
* but with special treatment of rpath propagation to support
* accurate type names in functor results where the functor has
* a result signature constraint. *)
and fctExp
= VARfct of EP.entPath (* selection from current entityEnv *)
| CONSTfct of fctEntity
| LAMBDA of {param : EP.entVar, body : strExp}
| LAMBDA_TP of {param : EP.entVar, body : strExp, sign : fctSig}
| LETfct of entityDec * fctExp
and entityExp
= TYCexp of tycExp
| STRexp of strExp
| FCTexp of fctExp
| DUMMYexp
| ERRORexp
and entityDec
= TYCdec of EP.entVar * tycExp
| STRdec of EP.entVar * strExp * S.symbol
| FCTdec of EP.entVar * fctExp
| SEQdec of entityDec list
| LOCALdec of entityDec * entityDec
| ERRORdec
| EMPTYdec
and entityEnv
= MARKeenv of envrec
| BINDeenv of entity EP.EvDict.map * entityEnv
| NILeenv
| ERReenv
and modtree
= TYCNODE of Types.gtrec
| SIGNODE of sigrec
| STRNODE of strrec
| FCTNODE of fctrec
| ENVNODE of envrec
| BRANCH of modtree list
withtype stubinfo =
{owner : PersStamps.persstamp,
lib : bool,
tree : modtree}
and elements = (S.symbol * spec) list
and sigrec =
{stamp : ST.stamp,
name : S.symbol option,
closed : bool,
fctflag : bool,
elements : elements,
properties : PropList.holder, (* boundeps, lambdaty *)
typsharing : sharespec list,
strsharing : sharespec list,
stub : stubinfo option}
and envrec =
{stamp : ST.stamp,
env : entityEnv,
stub : stubinfo option}
and strEntity =
{stamp : ST.stamp,
entities : entityEnv,
properties: PropList.holder, (* lambdaty *)
rpath : IP.path,
stub : stubinfo option}
and strrec =
{sign : Signature,
rlzn : strEntity,
access : A.access,
prim : PrimOpId.strPrimInfo}
and fctEntity =
{stamp : ST.stamp,
closure : fctClosure,
properties: PropList.holder, (* lambdaty *)
tycpath : T.tycpath option,
rpath : IP.path,
stub : stubinfo option}
and fctrec =
{sign : fctSig,
rlzn : fctEntity,
access : A.access,
prim : PrimOpId.strPrimInfo}
(* the stamp and arith inside T.tycon are critical *)
and tycEntity = T.tycon
(*
and constraint
= {my_path : SP.path, its_ancestor : instrep, its_path : SP.path}
*)
val bogusStrStamp = ST.special "bogusStr"
val bogusFctStamp = ST.special "bogusFct"
val bogusSigStamp = ST.special "bogusSig"
val bogusRpath = IP.IPATH[S.strSymbol "Bogus"]
val bogusStrEntity : strEntity =
{ stamp = bogusStrStamp,
entities = ERReenv,
properties = PropList.newHolder (), (* lambdaty = ref NONE *)
rpath = bogusRpath,
stub = NONE}
val bogusSig : Signature =
SIG {stamp = bogusSigStamp,
name=NONE, closed=true, fctflag=false,
elements=[],
properties = PropList.newHolder (),
(* boundeps=ref NONE, lambdaty=ref NONE *)
typsharing=[], strsharing=[],
stub = NONE}
val bogusFctEntity : fctEntity =
{stamp = bogusFctStamp,
closure = CLOSURE{param=EP.bogusEntVar,
body= CONSTstr bogusStrEntity,
env=NILeenv},
tycpath=NONE,
properties = PropList.newHolder (), (* lambdaty = ref NONE *)
rpath = bogusRpath,
stub = NONE}
end (* local *)
end (* structure Modules *)
|