-
Notifications
You must be signed in to change notification settings - Fork 6
/
merge-modules.sml
191 lines (170 loc) · 5.93 KB
/
merge-modules.sml
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
structure MergeModules = struct
open ExprVisitor
open Expr
open Unpackage
infixr 0 $
infixr 0 !!
fun collect_names_expr_visitor_vtable cast () =
let
fun extend_i this (sctx, kctx, cctx, tctx) name = (Name2str name :: sctx, kctx, cctx, tctx)
fun extend_t this (sctx, kctx, cctx, tctx) name = (sctx, Name2str name :: kctx, cctx, tctx)
fun extend_c this (sctx, kctx, cctx, tctx) name = (sctx, kctx, Name2str name :: cctx, tctx)
fun extend_e this (sctx, kctx, cctx, tctx) name = (sctx, kctx, cctx, Name2str name :: tctx)
in
default_expr_visitor_vtable
cast
extend_i
extend_t
extend_c
extend_e
visit_noop
visit_noop
visit_noop
visit_noop
visit_noop
visit_noop
visit_noop
visit_noop
visit_noop
end
fun new_collect_names_expr_visitor a = new_expr_visitor collect_names_expr_visitor_vtable a
fun collect_names_mod b =
snd $ visit_mod_acc (new_collect_names_expr_visitor ()) (b, ([], [], [], []))
fun spec2decl mid (sctx, kctx, cctx, tctx) spec =
let
fun V n = QID ((mid, dummy), (n, dummy))
in
case spec of
SpecVal (ename, t) =>
let
val n = indexOf (curry op= $ fst ename) tctx !! (fn () => raise Impossible "spec2decl/SpecVal")
val e = EVar (V n, true)
(* todo: use [t] to add type annotations *)
in
MakeDVal (ename, [], e, dummy)
end
| SpecIdx (iname, s) =>
let
val n = indexOf (curry op= $ fst iname) sctx !! (fn () => raise Impossible "spec2decl/SpecIdx")
in
MakeDIdxDef (iname, SOME s, VarI $ V n)
end
| SpecType (tname, k) =>
let
val n = indexOf (curry op= $ fst tname) kctx !! (fn () => raise Impossible "spec2decl/SpecType")
in
MakeDTypeDef (tname, MtVar $ V n)
end
| SpecTypeDef (tname, t) =>
(* we don't allow [datatype] in signature for now, so no special treatment of [TDatatype] *)
MakeDTypeDef (tname, t)
end
fun decorate_top_decl mid decl =
let
fun decorate (Binder (ns, (name, r))) = Binder (ns, (mid ^ "_" ^ name, r))
(* todo: implement *)
fun decorate_ptrn mid pn = pn
in
case decl of
DVal (name, bind, r) => DVal (decorate name, bind, r)
| DValPtrn (pn, e, r) => DValPtrn (decorate_ptrn mid pn, e, r)
| DRec (name, bind, r) => DRec (decorate name, bind, r)
| DIdxDef (name, s, i) => DIdxDef (decorate name, s, i)
| DAbsIdx2 (name, s, i) => DAbsIdx2 (decorate name, s, i)
| DAbsIdx ((name, s, i), Rebind decls, r) => DAbsIdx ((decorate name, s, i), Rebind $ Teles $ map (decorate_top_decl mid) $ unTeles decls, r)
| DTypeDef (name, t) => DTypeDef (decorate name, t)
| DConstrDef (name, c) => DConstrDef (decorate name, c)
| DOpen _ => raise Impossible "decorate_top_decl/DOpen"
end
fun sgn2mod (mid, names) (specs, _) =
let
val decls = map (spec2decl mid names) specs
in
ModComponents (decls, dummy)
end
fun merge_module ((mid, m), acc) =
case m of
ModComponents (decls, _) =>
let
val acc = unpackage_e_decls mid 0 acc
val acc = unpackage_c_decls mid 0 acc
val acc = unpackage_t_decls mid 0 acc
val acc = unpackage_i_decls mid 0 acc
val decls = map (decorate_top_decl mid) decls
in
decls @ acc
end
| ModTransparentAsc (m, _) => merge_module ((mid, m), acc)
| ModSeal (m, sg) =>
let
val mid' = prefix "__" mid
val names = collect_names_mod m
val acc = merge_module ((mid, sgn2mod (mid', names) sg), acc)
val acc = merge_module ((mid', m), acc)
in
acc
end
fun do_merge_modules ms decls = foldr merge_module decls ms
fun remove_top_DAbsIdx2_m m =
case m of
ModComponents (decls, r) =>
let
fun on_decl d =
case d of
DAbsIdx2 (name, Outer s, Outer i) =>
let
val () = println "Warning: can't translate module-level [absidx] yet. They will be converted to [idx]"
in
DIdxDef (name, Outer $ SOME s, Outer i)
end
| _ => d
val decls = map on_decl decls
in
ModComponents (decls, r)
end
| ModSeal (m, sg) => ModSeal (remove_top_DAbsIdx2_m m, sg)
| ModTransparentAsc (m, sg) => ModTransparentAsc (remove_top_DAbsIdx2_m m, sg)
open RemoveOpen
fun merge_modules ms decls =
let
val decls = remove_DOpen_decls decls
val ms = map (mapSnd remove_DOpen_m) ms
val ms = map (mapSnd remove_top_DAbsIdx2_m) ms
in
do_merge_modules ms decls
end
fun lookup_top_bind rev_p name =
Option.map (snd o snd) $ findi (fn (name', _) => fst name' = fst name) rev_p
fun collect_names_top_name rev_p name =
let
val bind = lookup_top_bind rev_p name !! (fn () => raise Impossible "collect_names_top_name")
in
case bind of
TopModBind m => collect_names_mod m
| TopFunctorBind (_, body) => collect_names_mod body
| TopFunctorApp (name1, name2) => collect_names_top_name rev_p name1
end
fun top_bind_to_mod rev_p (name, bind) =
case bind of
TopModBind m => [(fst name, m)]
| TopFunctorBind _ => []
| TopFunctorApp (name1, name2) =>
let
val bind1 = lookup_top_bind rev_p name1 !! (fn () => raise Impossible "top_bind_to_mod/lookup")
val ((arg_name, arg_sig), body) =
case bind1 of
TopFunctorBind data => data
| _ => raise Impossible "top_bind_to_mod/bind1"
val names = collect_names_top_name rev_p name2
val m1 = (fst arg_name, sgn2mod (fst name2, names) arg_sig)
val m2 = (fst name, body)
in
[m2, m1]
end
fun prog2modules' p =
case p of
[] => []
| bind :: p => top_bind_to_mod p bind @ prog2modules' p
fun prog2modules p = rev $ prog2modules' $ rev p
fun merge_prog p = merge_modules $ prog2modules p
end