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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
|
\documentclass{article}
\usepackage{pifont}
\usepackage{graphicx} %[pdftex] OR [dvips]
\usepackage{fullpage}
\usepackage{wrapfig}
\usepackage{float}
\usepackage{titling}
\usepackage{hyperref}
\usepackage{tikz}
\usepackage{color}
\usepackage{footnote}
\usepackage{float}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{bigfoot}
\usepackage{amssymb}
\usepackage{framed}
% Alter some LaTeX defaults for better treatment of figures:
% See p.105 of "TeX Unbound" for suggested values.
% See pp. 199-200 of Lamport's "LaTeX" book for details.
% General parameters, for ALL pages:
\renewcommand{\topfraction}{0.9} % max fraction of floats at top
\renewcommand{\bottomfraction}{0.8} % max fraction of floats at bottom
% Parameters for TEXT pages (not float pages):
\setcounter{topnumber}{2}
\setcounter{bottomnumber}{2}
\setcounter{totalnumber}{4} % 2 may work better
\setcounter{dbltopnumber}{2} % for 2-column pages
\renewcommand{\dbltopfraction}{0.9} % fit big float above 2-col. text
\renewcommand{\textfraction}{0.07} % allow minimal text w. figs
% Parameters for FLOAT pages (not text pages):
\renewcommand{\floatpagefraction}{0.7} % require fuller float pages
% N.B.: floatpagefraction MUST be less than topfraction !!
\renewcommand{\dblfloatpagefraction}{0.7} % require fuller float pages
% remember to use [htp] or [htpb] for placement
\newcommand{\I}[1]{\ensuremath{\mathit{#1}}}
\newcommand{\optionrule}{\noindent\rule{1.0\textwidth}{0.75pt}}
\newenvironment{aside}
{\begin{figure}\def\FrameCommand{\hspace{2em}}
\MakeFramed{\advance\hsize-\width}\optionrule\small}
{\par\vskip-\smallskipamount\optionrule\endMakeFramed\end{figure}}
\setlength{\droptitle}{-6em}
\newcommand{\Red}[1]{{\color{red} #1}}
\title{The Backpack algorithm}
\begin{document}
\maketitle
This document describes the Backpack shaping and typechecking
passes, as we intend to implement it.
\section{Changelog}
\paragraph{April 28, 2015} A signature declaration no longer provides
a signature in the technical shaping sense; the motivation for this change
is explained in \textbf{In-scope signatures are not provisions}. The simplest
consequence of this is that all requirements are importable (Derek has stated that he doesn't
think this will be too much of a problem in practice); it is also possible to
extend shape with a \verb|signatures| field, although some work has to be
done specifying coherence conditions between \verb|signatures| and \verb|requirements|.
\section{Front-end syntax}
\begin{figure}[htpb]
$$
\begin{array}{rcll}
p,q,r && \mbox{Package names} \\
m,n && \mbox{Module names} \\[1em]
\multicolumn{3}{l}{\mbox{\bf Packages}} \\
\I{pkg} & ::= & \verb|package|\; p\; [\I{provreq}]\; \verb|where {| d_1 \verb|;| \ldots \verb|;| d_n \verb|}| \\[1em]
\multicolumn{3}{l}{\mbox{\bf Declarations}} \\
d & ::= & \verb|module|\; m \; [exports]\; \verb|where|\; \I{body} \\
& | & \verb|signature|\; m \; [exports]\; \verb|where|\; \I{body} \\
& | & \verb|include|\; p \; [provreq] \\[1em]
\multicolumn{3}{l}{\mbox{\bf Provides/requires specification}} \\
\I{provreq} & ::= & \verb|(| \, \I{rns} \, \verb|)| \;
[ \verb|requires(|\, \I{rns} \, \verb|)| ] \\
\I{rns} & ::= & \I{rn}_0 \verb|,| \, \ldots \verb|,| \, \I{rn}_n [\verb|,|] & \mbox{Renamings} \\
\I{rn} & ::= & m\; \verb|as| \; n & \mbox{Renaming} \\[1em]
\multicolumn{3}{l}{\mbox{\bf Haskell code}} \\
\I{exports} & & \mbox{A Haskell module export list} \\
\I{body} & & \mbox{A Haskell module body} \\
\end{array}
$$
\caption{Syntax of Backpack} \label{fig:syntax}
\end{figure}
The syntax of Backpack is given in Figure~\ref{fig:syntax}.
See the ``Backpack manual'' for more explanation about the syntax. It
is slightly simplified here by removing any constructs which are easily implemented as
syntactic sugar (e.g., a bare $m$ in a renaming is simply $m\; \verb|as|\; m$.)
\newpage
\section{Shaping}
\begin{figure}[htpb]
$$
\begin{array}{rcll}
\I{Shape} & ::= & \verb|provides:|\; m \; \verb|->|\; \I{Module}\; \verb|{|\, \I{Name} \verb|,|\, \ldots \, \verb|};| \ldots \\
& & \verb|requires:| \; m \; \verb|->|\; \textcolor{white}{\I{Module}}\; \verb|{| \, \I{Name} \verb|,| \, \ldots \, \verb|}| \verb|;| \ldots \\
\I{PkgKey} & ::= & p \verb|(| \, m \; \verb|->| \; \I{Module} \verb|,|\, \ldots\, \verb|)| \\
\I{Module} & ::= & \I{PkgKey} \verb|:| m \\
\I{Name} & ::= & \I{Module} \verb|.| \I{OccName} \\
\I{OccName} & & \mbox{Unqualified name in a namespace}
\end{array}
$$
\caption{Semantic entities in Backpack} \label{fig:semantic}
\end{figure}
Shaping computes a \I{Shape}, whose form is described in Figure~\ref{fig:semantic}.
A shape describes what modules a package implements and exports (the \emph{provides})
and what signatures a package needs to have filled in (the \emph{requires}). Both
provisions and requires can be imported after a package is included.
We incrementally build a shape by starting with an empty
shape context and adding to it as follows:
\begin{enumerate}
\item Calculate the shape of a declaration, with respect to the
current shape context. (e.g., by renaming a module/signature,
or using the shape from an included package.)
\item Merge this shape into the shape context.
\end{enumerate}
The final shape context is the shape of the package as a whole.
Optionally, we can also compute the renamed syntax trees of
modules and signatures.
% (There is a slight
% technical difficulty here, where to do shaping, we actually need an \texttt{AvailInfo},
% so we can resolve \texttt{T(..)} style imports.)
% One variation of shaping also computes the renamed version of a package,
% i.e., where each identifier in the module and signature is replaced with
% the original name (equivalently, we record the output of GHC's renaming
% pass). This simplifies type checking because you no longer have to
% recalculate the set of available names, which otherwise would be lost.
% See more about this in the type checking section.
In the description below, we'll assume \verb|THIS| is the package key
of the package being processed.
\begin{aside}
\textbf{\textit{OccName} is implied by \textit{Name}.}
In Haskell, the following is not valid syntax:
\begin{verbatim}
import A (foobar as baz)
\end{verbatim}
In particular, a \I{Name} which is in scope will always have the same
\I{OccName} (even if it may be qualified.) You might imagine relaxing
this restriction so that declarations can be used under different \I{OccName}s;
in such a world, we need a different definition of shape:
\begin{verbatim}
Shape ::=
provided: ModName -> { OccName -> Name }
required: ModName -> { OccName -> Name }
\end{verbatim}
Presently, however, such an \I{OccName} annotation would be redundant: it can be inferred from the \I{Name}.
\end{aside}
\begin{aside}
\textbf{Holes of a package are a mapping, not a set.} Why can't the \I{PkgKey} just record a
set of \I{Module}s, e.g. $\I{PkgKey}\;::= \; \I{SrcPkgKey} \; \verb|{| \; \I{Module} \; \verb|}|$? Consider:
\begin{verbatim}
package p (A) requires (H1, H2) where
signature H1(T) where
data T
signature H2(T) where
data T
module A(A(..)) where
import qualified H1
import qualified H2
data A = A H1.T H2.T
package q (A12, A21) where
module I1(T) where
data T = T Int
module I2(T) where
data T = T Bool
include p (A as A12) requires (H1 as I1, H2 as I2)
include p (A as A21) requires (H1 as I2, H2 as I1)
\end{verbatim}
With a mapping, the first instance of \verb|p| has key \verb|p(H1 -> q():I1, H2 -> q():I2)|
while the second instance has key \verb|p(H1 -> q():I2, H2 -> q():I1)|; with
a set, both would have the key \verb|p(q():I1, q():I2)|.
\end{aside}
\begin{aside}
\textbf{Signatures can require a specific entity.}
With requirements like \verb|A -> { HOLE:A.T, HOLE:A.foo }|,
why not specify it as \verb|A -> { T, foo }|,
e.g., \verb|required: { ModName -> { OccName } }|? Consider:
\begin{verbatim}
package p () requires (A, B) where
signature A(T) where
data T
signature B(T) where
import T
\end{verbatim}
The requirements of this package specify that \verb|A.T| $=$ \verb|B.T|; this
can be expressed with \I{Name}s as
\begin{verbatim}
A -> { HOLE:A.T }
B -> { HOLE:A.T }
\end{verbatim}
But, without \I{Name}s, the sharing constraint is impossible: \verb|A -> { T }; B -> { T }|. (NB: \verb|A| and \verb|B| don't have to be implemented with the same module.)
\end{aside}
\begin{aside}
\textbf{The \textit{Name} of a value is used to avoid
ambiguous identifier errors.} We state that two types
are equal when their \I{Name}s are the same; however,
for values, it is less clear why we care. But consider this example:
\begin{verbatim}
package p (A) requires (H1, H2) where
signature H1(x) where
x :: Int
signature H2(x) where
import H1(x)
module A(y) where
import H1
import H2
y = x
\end{verbatim}
The reference to \verb|x| in \verb|A| is unambiguous, because it is known
that \verb|x| from \verb|H1| and \verb|x| from \verb|H2| are the same (have
the same \I{Name}.) If they were not the same, it would be ambiguous and
should cause an error. Knowing the \I{Name} of a value distinguishes
between these two cases.
\end{aside}
\begin{aside}
\textbf{Holes are linear}
Requirements do not record what \I{Module} represents
the identity of a requirement, which means that it's not possible to assert
that hole \verb|A| and hole \verb|B| should be implemented with the same module,
as might occur with aliasing:
\begin{verbatim}
signature A where
signature B where
alias A = B
\end{verbatim}
%
The benefit of this restriction is that when a requirement is filled,
it is obvious that this is the only requirement that is filled: you won't
magically cause some other requirements to be filled. The downside is
it's not possible to write a package which looks for an interface it is
looking for in one of $n$ names, accepting any name as an acceptable linkage.
If aliasing was allowed, we'd need a separate physical shaping context,
to make sure multiple mentions of the same hole were consistent.
\end{aside}
%\newpage
\subsection{\texttt{module M}}
A module declaration provides a module \verb|THIS:M| at module name \verb|M|. It
has the shape:
\begin{verbatim}
provides: M -> THIS:M { exports of renamed M under THIS:M }
requires: (nothing)
\end{verbatim}
Example:
\begin{verbatim}
module A(T) where
data T = T
-- provides: A -> THIS:A { THIS:A.T }
-- requires: (nothing)
\end{verbatim}
\newpage
\subsection{\texttt{signature M}}
A signature declaration creates a requirement at module name \verb|M|. It has the shape:
\begin{verbatim}
provides: (nothing)
requires: M -> { exports of renamed M under HOLE:M }
\end{verbatim}
\noindent Example:
\begin{verbatim}
signature H(T) where
data T
-- provides: H -> (nothing)
-- requires: H -> { HOLE:H.T }
\end{verbatim}
\begin{aside}
\textbf{In-scope signatures are not provisions}. We enforce the invariant that
a provision is always (syntactically) a \verb|module| and a requirement
is always a \verb|signature|. This means that if you have a requirement
and a provision of the same name, the requirement can \emph{always} be filled
with the provision. Without this invariant, it's not clear if a provision
will actually fill a signature. Consider this example, where
a signature is required and exposed:
\begin{verbatim}
package a-sigs (A) requires (A) where -- ***
signature A where
data T
package a-user (B) requires (A) where
signature A where
data T
x :: T
module B where
...
package p where
include a-sigs
include a-user
\end{verbatim}
%
When we consider merging in the shape of \verb|a-user|, does the
\verb|A| provided by \verb|a-sigs| fill in the \verb|A| requirement
in \verb|a-user|? It \emph{should not}, since \verb|a-sigs| does not
actually provide enough declarations to satisfy \verb|a-user|'s
requirement: the intended semantics \emph{merges} the requirements
of \verb|a-sigs| and \verb|a-user|.
\begin{verbatim}
package a-sigs (M as A) requires (H as A) where
signature H(T) where
data T
module M(T) where
import H(T)
\end{verbatim}
%
We rightly should error, since the provision is a module. And in this situation:
\begin{verbatim}
package a-sigs (H as A) requires (H) where
signature H(T) where
data T
\end{verbatim}
%
The requirements should be merged, but should the merged requirement
be under the name \verb|H| or \verb|A|?
It may still be possible to use the \verb|(A) requires (A)| syntax to
indicate exposed signatures, but this would be a mere syntactic
alternative to \verb|() requires (exposed A)|.
\end{aside}
%
\newpage
\subsection{\texttt{include pkg (X) requires (Y)}}
We merge with the transformed shape of package \verb|pkg|, where this
shape is transformed by:
\begin{itemize}
\item Renaming and thinning the provisions according to \verb|(X)|
\item Renaming requirements according to \verb|(Y)| (requirements cannot
be thinned, so non-mentioned requirements are implicitly passed through.)
For each renamed requirement from \verb|Y| to \verb|Y'|,
substitute \verb|HOLE:Y| with \verb|HOLE:Y'| in the
\I{Module}s and \I{Name}s of the provides and requires.
\end{itemize}
%
If there are no thinnings/renamings, you just merge the
shape unchanged! Here is an example:
\begin{verbatim}
package p (M) requires (H) where
signature H where
data T
module M where
import H
data S = S T
package q (A) where
module X where
data T = T
include p (M as A) requires (H as X)
\end{verbatim}
%
The shape of package \verb|p| is:
\begin{verbatim}
requires: M -> { p(H -> HOLE:H):M.S }
provides: H -> { HOLE:H.T }
\end{verbatim}
%
Thus, when we process the \verb|include| in package \verb|q|,
we make the following two changes: we rename the provisions,
and we rename the requirements, substituting \verb|HOLE|s.
The resulting shape to be merged in is:
\begin{verbatim}
provides: A -> { p(H -> HOLE:X):M.S }
requires: X -> { HOLE:X.T }
\end{verbatim}
%
After merging this in, the final shape of \verb|q| is:
\begin{verbatim}
provides: X -> { q():X.T } -- from shaping 'module X'
A -> { p(H -> q():X):M.S }
requires: (nothing) -- discharged by provided X
\end{verbatim}
\newpage
\subsection{Merging}
The shapes we've given for individual declarations have been quite
simple. Merging combines two shapes, filling requirements with
implementations, unifying \I{Name}s, and unioning requirements; it is
the most complicated part of the shaping process.
The best way to think about merging is that we take two packages with
inputs (requirements) and outputs (provisions) and ``wiring'' them up so
that outputs feed into inputs. In the absence
of mutual recursion, this wiring process is \emph{directed}: the provisions
of the first package feed into the requirements of the second package,
but never vice versa. (With mutual recursion, things can go in the opposite
direction as well.)
Suppose we are merging shape $p$ with shape $q$ (e.g., $p; q$). Merging
proceeds as follows:
\begin{enumerate}
\item \emph{Fill every requirement of $q$ with provided modules from
$p$.} For each requirement $M$ of $q$ that is provided by $p$ (in particular,
all of its required \verb|Name|s are provided),
substitute each \I{Module} occurrence of \verb|HOLE:M| with the
provided $p\verb|(|M\verb|)|$, unify the names, and remove the requirement from $q$.
If the names of the provision are not a superset of the required names, error.
\item If mutual recursion is supported, \emph{fill every requirement of $p$ with provided modules from $q$.}
\item \emph{Merge leftover requirements.} For each requirement $M$ of $q$ that is not
provided by $p$ but required by $p$, unify the names, and union them together to form the new requirement. (It's not
necessary to substitute \I{Module}s, since they are guaranteed to be the same.)
\item \emph{Add provisions of $q$.} Union the provisions of $p$ and $q$, erroring
if there is a duplicate that doesn't have the same identity.
\end{enumerate}
%
To unify two sets of names, find each pair of names with matching \I{OccName}s $n$ and $m$ and do the following:
\begin{enumerate}
\item If both are from holes, pick a canonical representative $m$ and substitute $n$ with $m$.
\item If one $n$ is from a hole, substitute $n$ with $m$.
\item Otherwise, error if the names are not the same.
\end{enumerate}
%
It is important to note that substitutions on \I{Module}s and substitutions on
\I{Name}s are disjoint: a substitution from \verb|HOLE:A| to \verb|HOLE:B|
does \emph{not} substitute inside the name \verb|HOLE:A.T|.
Since merging is the most complicated step of shaping, here are a big
pile of examples of it in action.
\subsubsection{A simple example}
In the following set of packages:
\begin{verbatim}
package p(M) requires (A) where
signature A(T) where
data T
module M(T, S) where
import A(T)
data S = S T
package q where
module A where
data T = T
include p
\end{verbatim}
When we \verb|include p|, we need to merge the partial shape
of \verb|q| (with just provides \verb|A|) with the shape
of \verb|p|. Here is each step of the merging process:
\begin{verbatim}
shape 1 shape 2
--------------------------------------------------------------------------------
(initial shapes)
provides: A -> THIS:A { q():A.T } M -> p(A -> HOLE:A) { HOLE:A.T, p(A -> HOLE:A).S }
requires: (nothing) A -> { HOLE:A.T }
(after filling requirements)
provides: A -> THIS:A { q():A.T } M -> p(A -> THIS:A) { q():A.T, p(A -> THIS:A).S }
requires: (nothing) (nothing)
(after adding provides)
provides: A -> THIS:A { q():A.T }
M -> p(A -> THIS:A) { q():A.T, p(A -> THIS:A).S }
requires: (nothing)
\end{verbatim}
Notice that we substituted \verb|HOLE:A| with \verb|THIS:A|, but \verb|HOLE:A.T| with \verb|q():A.T|.
\subsubsection{Requirements merging can affect provisions}
When a merge results in a substitution, we substitute over both
requirements and provisions:
\begin{verbatim}
signature H(T) where
data T
module A(T) where
import H(T)
module B(T) where
data T = T
-- provides: A -> THIS:A { HOLE:H.T }
-- B -> THIS:B { THIS:B.T }
-- requires: H -> { HOLE:H.T }
signature H(T, f) where
import B(T)
f :: a -> a
-- provides: A -> THIS:A { THIS:B.T } -- UPDATED
-- B -> THIS:B { THIS:B.T }
-- requires: H -> { THIS:B.T, HOLE:H.f } -- UPDATED
\end{verbatim}
\subsubsection{Sharing constraints}
Suppose you have two signature which both independently define a type,
and you would like to assert that these two types are the same. In the
ML world, such a constraint is known as a sharing constraint. Sharing
constraints can be encoded in Backpacks via clever use of reexports;
they are also an instructive example for signature merging.
\begin{verbatim}
signature A(T) where
data T
signature B(T) where
data T
-- requires: A -> { HOLE:A.T }
B -> { HOLE:B.T }
-- the sharing constraint!
signature A(T) where
import B(T)
-- (shape to merge)
-- requires: A -> { HOLE:B.T }
-- (after merge)
-- requires: A -> { HOLE:A.T }
-- B -> { HOLE:A.T }
\end{verbatim}
%
\Red{I'm pretty sure any choice of \textit{Name} is OK, since the
subsequent substitution will make it alpha-equivalent.}
% \subsubsection{Leaky requirements}
% Both requirements and provisions can be imported, but requirements
% are always available
%\Red{How to relax this so hs-boot works}
%\Red{Example of how loopy modules which rename requirements make it un-obvious whether or not
%a requirement is still required. Same example works declaration level.}
%\Red{package p (A) requires (A); the input output ports should be the same}
% We figure out the requirements (because no loopy modules)
%
% package p (A, B) requires (B)
% include base
% sig B(T)
% import Prelude(T)
%
% requirement example
%
% mental model: you start with an empty package, and you start accreting
% things on things, merging things together as you discover that this is
% the case.
%\newpage
\subsection{Export declarations}
If an explicit export declaration is given, the final shape is the
computed shape, minus any provisions not mentioned in the list, with the
appropriate renaming applied to provisions and requirements. (Requirements
are implicitly passed through if they are not named.)
If no explicit export declaration is given, the final shape is
the computed shape, including only provisions which were defined
in the declarations of the package.
\begin{aside}
\textbf{Signature visibility, and defaulting}
The simplest formulation of requirements is to have them always be
visible. Signature visibility could be controlled by associating
every requirement with a flag indicating if it is importable or
not: a signature declaration sets a requirement to be visible, and
an explicit export list can specify if a requirement is to be visible
or not.
When an export list is absent, we have to pick a default visibility
for a signature. If we use the same behavior as with modules,
a strange situation can occur:
\begin{verbatim}
package p where -- S is visible
signature S where
x :: True
package q where -- use defaulting
include p
signature S where
y :: True
module M where
import S
z = x && y -- OK
package r where
include q
module N where
import S
z = y -- OK
z = x -- ???
\end{verbatim}
%
Absent the second signature declaration in \verb|q|, \verb|S.x| clearly
should not be visible in \verb|N|. However, what ought to occur when this signature
declaration is added? One interpretation is to say that only some
(but not all) declarations are provided (\verb|S.x| remains invisible);
another interpretation is that adding \verb|S| is enough to treat
the signature as ``in-line'', and all declarations are now provided
(\verb|S.x| is visible).
The latter interpretation avoids having to keep track of providedness
per declarations, and means that you can always express defaulting
behavior by writing an explicit provides declaration on the package.
However, it has the odd behavior of making empty signatures semantically
meaningful:
\begin{verbatim}
package q where
include p
signature S where
\end{verbatim}
\end{aside}
%
% SPJ: This would be too complicated (if there's yet a third way)
\subsection{Package key}
What is \verb|THIS|? It is the package name, plus for every requirement \verb|M|,
a mapping \verb|M -> HOLE:M|. Annoyingly, you don't know the full set of
requirements until the end of shaping, so you don't know the package key ahead of time;
however, it can be substituted at the end easily.
\clearpage
\newpage
\section{Type constructor exports}
In the previous section, we described the \I{Name}s of a
module as a flat namespace; but actually, there is one level of
hierarchy associated with type-constructors. The type:
\begin{verbatim}
data A = B { foo :: Int }
\end{verbatim}
%
brings three \I{OccName}s into scope, \verb|A|, \verb|B|
and \verb|foo|, but the constructors and record selectors are
considered \emph{children}
of \verb|A|: in an import list, they can be implicitly brought
into scope with \verb|A(..)|, or individually brought into
scope with \verb|foo| or \verb|pattern B| (using the new \verb|PatternSynonyms|
extension). Symmetrically, a module may export only \emph{some}
of the constructors/selectors of a type; it may not even
export the type itself!
We \emph{absolutely} need this information to rename a module or
signature, which means that there is a little bit of extra information
we have to collect when shaping. What is this information? If we take
GHC's internal representation at face value, we have the more complex
semantic representation seen in Figure~\ref{fig:semantic2}:
\begin{figure}[htpb]
$$
\begin{array}{rcll}
\I{Shape} & ::= & \verb|provides:|\; m \; \verb|->|\; \I{Module}\; \verb|{|\, \I{AvailInfo} \verb|,|\, \ldots \, \verb|};| \ldots \\
& & \verb|requires:| \; m \; \verb|->|\; \textcolor{white}{\I{Module}}\; \verb|{| \, \I{AvailInfo} \verb|,| \, \ldots \, \verb|}| \verb|;| \ldots \\
\I{AvailInfo} & ::= & \I{Name} & \mbox{Plain identifiers} \\
& | & \I{Name} \, \verb|{| \, \I{Name}_0\verb|,| \, \ldots\verb|,| \, \I{Name}_n \, \verb|}| & \mbox{Type constructors} \\
\end{array}
$$
\caption{Enriched semantic entities in Backpack} \label{fig:semantic2}
\end{figure}
%
For type constructors, the outer \I{Name} identifies the \emph{parent}
identifier, which may not necessarily be in scope (define this to be the \texttt{availName}); the inner list consists
of the children identifiers that are actually in scope. If a wildcard
is written, all of the child identifiers are brought into scope.
In the following examples, we've ensured that
types and constructors are unambiguous, although in Haskell proper they
live in separate namespaces; we've also elided the \verb|THIS| package
key from the identifiers.
\begin{verbatim}
module M(A(..)) where
data A = B { foo :: Int }
-- M.A{ M.A, M.B, M.foo }
module N(A) where
data A = B { foo :: Int }
-- N.A{ N.A }
module O(foo) where
data A = B { foo :: Int }
-- O.A{ O.foo }
module A where
data T = S { bar :: Int }
module B where
data T = S { baz :: Bool }
module C(bar, baz) where
import A(bar)
import B(baz)
-- A.T{ A.bar }, B.T{ B.baz }
-- NB: it would be illegal for the type constructors
-- A.T and B.T to be both exported from C!
\end{verbatim}
%
Previously, we stated that we simply merged \I{Name}s based on their
\I{OccName}s. We now must consider what it means to merge \I{AvailInfo}s.
\subsection{Algorithm}
Our merging algorithm takes two sets of \I{AvailInfo}s and merges them
into one set. In the degenerate case where every \I{AvailInfo} is a
$Name$, this algorithm operates the same as the original algorithm.
Merging proceeds in two steps: unification and then simple union.
Unification proceeds as follows: for each pair of \I{Name}s with
matching \I{OccName}s, unify the names. For each pair of $\I{Name}\, \verb|{|\,
\I{Name}_0\verb|,|\, \ldots\verb|,|\, \I{Name}_n\, \verb|}|$, where there
exists some pair of child names with matching \I{OccName}s, unify the
parent \I{Name}s. (A single \I{AvailInfo} may participate in multiple such
pairs.) A simple identifier and a type constructor \I{AvailInfo} with
overlapping in-scope names fails to unify. After unification,
the simple union combines entries with matching \verb|availName|s (parent
name in the case of a type constructor), recursively unioning the child
names of type constructor \I{AvailInfo}s.
Unification of \I{Name}s results in a substitution, and a \I{Name} substitution
on \I{AvailInfo} is a little unconventional. Specifically, substitution on $\I{Name}\, \verb|{|\,
\I{Name}_0\verb|,|\, \ldots\verb|,|\, \I{Name}_n\, \verb|}|$ proceeds specially:
a substitution from \I{Name} to $\I{Name}'$ induces a substitution from
\I{Module} to $Module'$ (as the \I{OccName}s of the \I{Name}s are guaranteed
to be equal), so for each child $\I{Name}_i$, perform the \I{Module}
substitution. So for example, the substitution \verb|HOLE:A.T| to \verb|THIS:A.T|
takes the \I{AvailInfo} \verb|HOLE:A.T { HOLE:A.B, HOLE:A.foo }| to
\verb|THIS:A.T { THIS:A.B, THIS:A.foo }|. In particular, substitution
on children \I{Name}s is \emph{only} carried out by substituting on the outer name;
we will never directly substitute children.
\subsection{Examples}
Unfortunately, there are a number of tricky scenarios:
\paragraph{Merging when type constructors are not in scope}
\begin{verbatim}
signature A1(foo) where
data A = A { foo :: Int, bar :: Bool }
signature A2(bar) where
data A = A { foo :: Int, bar :: Bool }
\end{verbatim}
%
If we merge \verb|A1| and \verb|A2|, are we supposed to conclude that
the types \verb|A1.A| and \verb|A2.A| (not in scope!) are the same?
The answer is no! Consider these implementations:
\begin{verbatim}
module A1(A(..)) where
data A = A { foo :: Int, bar :: Bool }
module A2(A(..)) where
data A = A { foo :: Int, bar :: Bool }
module A(foo, bar) where
import A1(foo)
import A2(bar)
\end{verbatim}
Here, \verb|module A1| implements \verb|signature A1|, \verb|module A2| implements \verb|signature A2|,
and \verb|module A| implements \verb|signature A1| and \verb|signature A2| individually
and should certainly implement their merge. This is why we cannot simply
merge type constructors based on the \I{OccName} of their top-level type;
merging only occurs between in-scope identifiers.
\paragraph{Does merging a selector merge the type constructor?}
\begin{verbatim}
signature A1(A(..)) where
data A = A { foo :: Int, bar :: Bool }
signature A2(A(..)) where
data A = A { foo :: Int, bar :: Bool }
signature A2(foo) where
import A1(foo)
\end{verbatim}
%
Does the last signature, which is written in the style of a sharing constraint on \verb|foo|,
also cause \verb|bar| and the type and constructor \verb|A| to be unified?
Because a merge of a child name results in a substitution on the parent name,
the answer is yes.
\paragraph{Incomplete data declarations}
\begin{verbatim}
signature A1(A(foo)) where
data A = A { foo :: Int }
signature A2(A(bar)) where
data A = A { bar :: Bool }
\end{verbatim}
%
Should \verb|A1| and \verb|A2| merge? If yes, this would imply
that data definitions in signatures could only be \emph{partial}
specifications of their true data types. This seems complicated,
which suggests this should not be supported; however, in fact,
this sort of definition, while disallowed during type checking,
should be \emph{allowed} during shaping. The reason that the
shape we abscribe to the signatures \verb|A1| and \verb|A2| are
equivalent to the shapes for these which should merge:
\begin{verbatim}
signature A1(A(foo)) where
data A = A { foo :: Int, bar :: Bool }
signature A2(A(bar)) where
data A = A { foo :: Int, bar :: Bool }
\end{verbatim}
\subsection{Subtyping record selectors as functions}
\begin{verbatim}
signature H(A, foo) where
data A
foo :: A -> Int
module M(A, foo) where
data A = A { foo :: Int, bar :: Bool }
\end{verbatim}
%
Does \verb|M| successfully fill \verb|H|? If so, it means that anywhere
a signature requests a function \verb|foo|, we can instead validly
provide a record selector. This capability seems quite attractive,
although in practice record selectors rarely seem to be abstracted this
way: one reason is that \verb|M.foo| still \emph{is} a record selector,
and can be used to modify a record. (Many library authors find this
suprising!)
Nor does this seem to be an insurmountable instance of the avoidance
problem:
as a workaround, \verb|H| can equivalently be written as:
\begin{verbatim}
signature H(foo) where
data A = A { foo :: Int, bar :: Bool }
\end{verbatim}
%
However, you might not like this, as the otherwise irrelevant \verb|bar| must be mentioned
in the definition.
In any case, actually implementing this `subtyping' is quite complicated, because we can no
longer assume that every child name is associated with a parent name.
The technical difficulty is that we now need to unify a plain identifier
\I{AvailInfo} (from the signature) with a type constructor \I{AvailInfo}
(from a module.) It is not clear what this should mean.
Consider this situation:
\begin{verbatim}
package p where
signature H(A, foo, bar) where
data A
foo :: A -> Int
bar :: A -> Bool
module X(A, foo) where
import H
package q where
include p
signature H(bar) where
data A = A { foo :: Int, bar :: Bool }
module Y where
import X(A(..)) -- ???
\end{verbatim}
Should the wildcard import on \verb|X| be allowed?
This question is equivalent to whether or not shaping discovers
whether or not a function is a record selector and propagates this
information elsewhere.
If the wildcard is not allowed, here is another situation:
\begin{verbatim}
package p where
-- define without record selectors
signature X1(A, foo) where
data A
foo :: A -> Int
module M1(A, foo) where
import X1
package q where
-- define with record selectors (X1s unify)
signature X1(A(..)) where
data A = A { foo :: Int, bar :: Bool }
signature X2(A(..)) where
data A = A { foo :: Int, bar :: Bool }
-- export some record selectors
signature Y1(bar) where
import X1
signature Y2(bar) where
import X2
package r where
include p
include q
-- sharing constraint
signature Y2(bar) where
import Y1(bar)
-- the payload
module Test where
import M1(foo)
import X2(foo)
... foo ... -- conflict?
\end{verbatim}
Without the sharing constraint, the \verb|foo|s from \verb|M1| and \verb|X2|
should conflict. With it, however, we should conclude that the \verb|foo|s
are the same, even though the \verb|foo| from \verb|M1| is \emph{not}
considered a child of \verb|A|, and even though in the sharing constraint
we \emph{only} unified \verb|bar| (and its parent \verb|A|). To know that
\verb|foo| from \verb|M1| should also be unified, we have to know a bit
more about \verb|A| when the sharing constraint performs unification;
however, the \I{AvailInfo} will only tell us about what is in-scope, which
is \emph{not} enough information.
%\newpage
\section{Type checking}
\begin{figure}[htpb]
$$
\begin{array}{rcll}
\I{PkgType} & ::= & \I{ModIface}_0 \verb|;|\, \ldots\verb|;|\, \I{ModIface}_n \\[1em]
\multicolumn{3}{l}{\mbox{\bf Module interface}} \\
\I{ModIface} & ::= & \verb|module| \; \I{Module} \; \verb|(| \I{mi\_exports} \verb|)| \; \verb|where| \\
& & \qquad \I{mi\_decls} \\
& & \qquad \I{mi\_insts} \\
& & \qquad \I{dep\_orphs} \\
\I{mi\_exports} & ::= & \I{AvailInfo}_0 \verb|,|\, \ldots \verb|,|\, \I{AvailInfo}_n & \mbox{Export list} \\
\I{mi\_decls} & ::= & \I{IfaceDecl}_0 \verb|;|\, \ldots \verb|;|\, \I{IfaceDecl}_n & \mbox{Defined declarations} \\
\I{mi\_insts} & ::= & \I{IfaceClsInst}_0 \verb|;|\, \ldots \verb|;|\, \I{IfaceClsInst}_n & \mbox{Defined instances} \\
\I{dep\_orphs} & ::= & \I{Module}_0 \verb|;|\, \ldots \verb|;|\, \I{Module}_n & \mbox{Transitive orphan dependencies} \\[1em]
\multicolumn{3}{l}{\mbox{\bf Interface declarations}} \\
\I{IfaceDecl} & ::= & \I{OccName} \; \verb|::| \; \I{IfaceId} \\
& | & \verb|data| \; \I{OccName} \; \verb|=| \;\ \I{IfaceData} \\
& | & \ldots \\
\I{IfaceClsInst} & & \mbox{A type-class instance} \\
\I{IfaceId} & & \mbox{Interface of top-level binder} \\
\I{IfaceData} & & \mbox{Interface of type constructor} \\
\end{array}
$$
\caption{Module interfaces in GHC} \label{fig:typecheck}
\end{figure}
In general terms,
type checking an indefinite package (a package with holes) involves
calculating, for every module, a \I{ModIface} representing the
type/interface of the module in question (which is serialized
to disk). The general form of these
interface files are described in Figure~\ref{fig:typecheck}; notably,
the interfaces \I{IfaceId}, \I{IfaceData}, etc. contain \I{Name} references,
which must be resolved by
looking up a \I{ModIface} corresponding to the \I{Module} associated
with the \I{Name}. (We will say more about this lookup process shortly.)
For example, given:
\begin{verbatim}
package p where
signature H where
data T
module A(S, T) where
import H
data S = S T
\end{verbatim}
%
the \I{PkgType} is:
\begin{verbatim}
module HOLE:H (HOLE:H.T) where
data T -- abstract type constructor
module THIS:A (THIS:A.S, HOLE:H.T) where
data S = S HOLE:H.T
-- where THIS = p(H -> HOLE:H)
\end{verbatim}
%
However, while it is true that the \I{ModIface} is the final result
of type checking, we actually are conflating two distinct concepts: the user-visible
notion of a \I{ModuleName}, which, when imported, brings some \I{Name}s
into scope (or could trigger a deprecation warning, or pull in some
orphan instances\ldots), versus the actual declarations, which, while recorded
in the \I{ModIface}, have an independent existence: even if a declaration
is not visible for an import, we may internally refer to its \I{Name}, and
need to look it up to find out type information. (A simple case when
this can occur is if a module exports a function with type \verb|T -> T|,
but doesn't export \verb|T|).
\begin{figure}[htpb]
$$
\begin{array}{rcll}
\I{ModDetails} & ::= & \langle\I{md\_types} \verb|;|\; \I{md\_insts}\rangle \\
\I{md\_types} & ::= & \I{TyThing}_0 \verb|,|\, \ldots\verb|,|\, \I{TyThing}_n \\
\I{md\_insts} & ::= & \I{ClsInst}_0 \verb|,|\, \ldots\verb|,|\, \I{ClsInst}_n \\[1em]
\multicolumn{3}{l}{\mbox{\bf Type-checked declarations}} \\
\I{TyThing} & & \mbox{Type-checked thing with a \I{Name}} \\
\I{ClsInst} & & \mbox{Type-checked type class instance} \\
\end{array}
$$
\caption{Semantic objects in GHC} \label{fig:typecheck-more}
\end{figure}
Thus, a \I{ModIface} can be type-checked into a \I{ModDetails}, described in
Figure~\ref{fig:typecheck-more}. Notice that a \I{ModDetails} is just
a bag of type-checkable entities which GHC knows about. We
define the \emph{external package state (EPT)} to
simply be the union of the \I{ModDetails}
of all external modules.
Type checking is a delicate balancing act between module
interfaces and our semantic objects. A \I{ModIface} may get
type-checked multiple times with different hole instantiations
to provide multiple \I{ModDetails}.
Furthermore complicating matters
is that GHC does this resolution \emph{lazily}: a \I{ModIface}
is only converted to a \I{ModDetails} when we are looking up
the type of a \I{Name} that is described by the interface;
thus, unlike usual theoretical treatments of type checking, we can't
eagerly go ahead and perform substitutions on \I{ModIface}s when
they get included.
In a separate compiler like GHC, there are two primary functions we must provide:
\paragraph{\textit{ModuleName} to \textit{ModIface}} Given a \I{ModuleName} which
was explicitly imported by a user, we must produce a \I{ModIface}
that, among other things, specifies what \I{Name}s are brought
into scope. This is used by the renamer to resolve plain references
to identifiers to real \I{Name}s. (By the way, if shaping produced
renamed trees, it would not be necessary to do this step!)
\paragraph{\textit{Module} to \textit{ModDetails}/EPT} Given a \I{Module} which may be
a part of a \I{Name}, we must be able to type check it into
a \I{ModDetails} (usually by reading and typechecking the \I{ModIface}
associated with the \I{Module}, but this process is involved). This
is used by the type checker to find out type information on things. \\
There are two points in the type checker where these capabilities are exercised:
\paragraph{Source-level imports} When a user explicitly imports a
module, the \textit{ModuleName} is mapped to a \textit{ModIface}
to find out what exports are brought into scope (\I{mi\_exports})
and what orphan instances must be loaded (\I{dep\_orphs}). Additionally,
the \textit{Module} is loaded to the EPT to bring instances from
the module into scope.
\paragraph{Internal name lookup} During type checking, we may have
a \I{Name} for which we need type information (\I{TyThing}). If it's not already in the
EPT, we type check and load
into the EPT the \I{ModDetails} of the \I{Module} in the \I{Name},
and then check the EPT again. (\verb|importDecl|)
\subsection{\textit{ModName} to \textit{ModIface}}
In all cases, the \I{mi\_exports} can be calculated directly from the
shaping process, which specifies exactly for each \I{ModName} in scope
what will be brought into scope.
\paragraph{Modules} Modules are straightforward, as for any
\I{Module} there is only one possibly \I{ModIface} associated
with it (the \I{ModIface} for when we type-checked the (unique) \verb|module|
declaration.)
\paragraph{Signatures} For signatures, there may be multiple \I{ModIface}s
associated with a \I{ModName} in scope, e.g. in this situation:
\begin{verbatim}
package p where
signature S where
data A
package q where
include p
signature S where
data B
module M where
import S
\end{verbatim}
%
Each literal \verb|signature| has a \I{ModIface} associated with it; and
the import of \verb|S| in \verb|M|, we want to see the \emph{merged}
\I{ModIface}s. We can determine the \I{mi\_exports} from the shape,
but we also need to pull in orphan instances for each signature, and
produce a warning for each deprecated signature.
\begin{aside}
\textbf{Does hiding a signature hide its orphans.} Suppose that we have
extended Backpack to allow hiding signatures from import.
\begin{verbatim}
package p requires (H) where -- H is hidden from import
module A where
instance Eq (a -> b) where -- orphan
signature H {-# DEPRECATED "Don't use me" #-} where
import A
package q where
include p
signature H where
data T
module M where
import H -- warn deprecated?
instance Eq (a -> b) -- overlap?
\end{verbatim}
It is probably the most consistent to not pull in orphan instances
and not give the deprecated warning: this corresponds to merging
visible \I{ModIface}s, and ignoring invisible ones.
\end{aside}
\subsection{\textit{Module} to \textit{ModDetails}}
\paragraph{Modules} For modules, we have a \I{Module} of
the form $\I{p}\verb|(|m\; \verb|->|\; \I{Module}\verb|,|\, \ldots\verb|)|$,
and we also have a unique \I{ModIface}, where each hole instantiation
is $\verb|HOLE:|m$.
To generate the \I{ModDetails} associated with the specific instantiation,
we have to type-check the \I{ModIface} with the following adjustments:
\begin{enumerate}
\item Perform a \I{Module} substitution according to the instantiation
of the \I{ModIface}'s \I{Module}. (NB: we \emph{do}
substitute \verb|HOLE:A.x| to \verb|HOLE:B.x| if we instantiated
\verb|A -> HOLE:B|, \emph{unlike} the disjoint
substitutions applied by shaping.)
\item Perform a \I{Name} substitution as follows: for any name
with a package key that is a $\verb|HOLE|$,
substitute with the recorded \I{Name} in the requirements of the shape.
Otherwise, look up the (unique) \I{ModIface} for the \I{Module},
and subsitute with the corresponding \I{Name} in the \I{mi\_exports}.
\end{enumerate}
\paragraph{Signatures} For signatures, we have a \I{Module} of the form
$\verb|HOLE:|m$. Unlike modules, there are multiple \I{ModIface}s associated with a hole.
We distinguish each separate \I{ModIface} by considering the full \I{PkgKey}
it was defined in, e.g. \verb|p(A -> HOLE:C, B -> q():B)|; call this
the hole's \emph{defining package key}; the set of \I{ModIface}s for a hole
and their defining package keys can easily be calculated during shaping.
To generate the \I{ModDetails} associated with a hole, we type-check each
\I{ModIface}, with the following adjustments:
\begin{enumerate}
\item Perform a \I{Module} substitution according to the instantiation
of the defining package key. (NB: This may rename the hole itself!)
\item Perform a \I{Name} substitution as follows, in the same manner
as would be done in the case of modules.
\item When these \I{ModDetails} are merged into the EPT, some merging
of duplicate types may occur; a type
may be defined multiple times, in which case we check that each
definition is compatible with the previous ones. A concrete
type is always compatible with an abstract type.
\end{enumerate}
\paragraph{Invariants} When we perform \I{Name} substitutions, we must be
sure that we can always find out the correct \I{Name} to substitute to.
This isn't obviously true, consider:
\begin{verbatim}
package p where
signature S(foo) where
data T
foo :: T
module M(bar) where
import S
bar = foo
package q where
module A(T(..)) where
data T = T
foo = T
module S(foo) where
import A
include p
module A where
import M
... bar ...
\end{verbatim}
%
When we type check \verb|p|, we get the \I{ModIface}s:
\begin{verbatim}
module HOLE:S(HOLE:S.foo) where
data T
foo :: HOLE:S.T
module THIS:M(THIS:M.bar) where
bar :: HOLE:S.T
\end{verbatim}
%
Now, when we type check \verb|A|, we pull on the \I{Name} \verb|p(S -> q():S):M.bar|,
which means we have to type check the \I{ModIface} for \verb|p(S -> q():S):M|.
The un-substituted type of \verb|bar| has a reference to \verb|HOLE:S.T|;
this should be substituted to \verb|q():S.T|. But how do we discover this?
We know that \verb|HOLE:S| was instantiated to \verb|q():S|, so we might try
and look for \verb|q():S.T|. However, this \I{Name} does not exist because
the \verb|module S| reexports the selector from \verb|A|! Nor can we consult
the (unique) \I{ModIface} for the module, as it doesn't reexport the relevant
type.
The conclusion, then, is that a module written this way should be disallowed.
Specifically, the correctness condition for a signature is this: \emph{Any \I{Name}
mentioned in the \I{ModIface} of a signature must either be from an external module, or be
exported by the signature}.
\begin{aside}
\textbf{Special case export rule for record selectors.} Here is the analogous case for
record selectors:
\begin{verbatim}
package p where
signature S(foo) where
data T = T { foo :: Int }
module M(bar) where
import S
bar = foo
package q where
module A(T(..)) where
data T = T { foo :: Int }
module S(foo) where
import A
include p
module A where
import M
... bar ...
\end{verbatim}
We could reject this, but technically we can find the right substitution
for \verb|T|, because the export of \verb|foo| is an \I{AvailTC} which
does mention \verb|T|.
\end{aside}
\section{Cabal}
Design goals:
\begin{itemize}
\item Backpack files are user-written. (In an earlier design, we had
the idea that Cabal would generate Backpack files; however, we've
since made Backpack files more user-friendly and reasonable to
write by hand since they are reasonably designed for user development.)
\item Backpack files are optional. A package can add a Backpack file
to replace some (but not all) of the fields in a Cabal description.
\item Backpack files can be compiled without GHC, if it is self-contained
with respect to all the indefinite packages it includes. To include
an indefinite package which is not locally defined but installed
to the package database, you must use Cabal.
\item Backpack packages are \emph{unversioned}; you never see a version
number in a Backpack package.
\end{itemize}
\subsection{Versioning}
In this section, we discuss how version numbers from Cabal factor into
Backpack. In particular, versioning impacts the specification of \I{PkgKey}s.
See \url{https://ghc.haskell.org/trac/ghc/wiki/Commentary/Packages/Concepts}
for more background, and \url{https://ghc.haskell.org/trac/ghc/ticket/10566}
for implementation progress.
\paragraph{Design goals}
Here are some design goals for versioning:
\begin{enumerate}
\item GHC doesn't know anything about version numbers: this is Cabal
specific information. There are a few cases in GHC today where
this design goal is already in force: pre-7.10, linker
symbols were prefixed using a package name and version, but GHC
simply represented this internally as an opaque string. And in
today's GHC, package qualified imports only allow qualification by
package name, and not by version.
\item Cabal doesn't know anything about package keys: GHC is
responsible for calculating the package key of a package. This is
because GHC must be able to maintain a mapping between the unhashed
and hashed versions of a key, and the hashing process must be
deterministic. If Cabal needs to generate a new package key, it
must do so through GHC. (This is NOT how this is happening in GHC 7.10.)
\item Our design should, in principle, support mutual recursion
between packages, even if the implementation does not at the moment.
\item GHC should not lose functionality, i.e. it should still be
possible to link together the same package with different versions;
however, Cabal may arrange for this to not occur by default unless a
user explicitly asks for it.
\item A Cabal source package identifier (e.g. \verb|foo-0.1|), which is
a unit of distribution, is a distinct
concept from a Backpack package (which we have referred to previously
in the document as a mere package name), because a single Cabal file may
ship a Backpack file that defines multiple internal packages.
\end{enumerate}
These goals imply a few things:
\begin{enumerate}
\item Backpack files should not contain any version numbers,
and should be agnostic to versioning. Backpack files are parsed
and interpreted by GHC, and version numbers are Cabal's provenance!
\item As a corollary, if you want to refer to a specific version of
a package from a Backpack file, this has to be done by giving the
alternate version a different package name, e.g. \verb|network-old|.
(It is tempting to want to simply say that this means we should allow
version numbers into GHC, but consider more complicated situations where
you want to refer to two instances of \verb|foo|, but one compiled
with \verb|bar-0.1| and the other compiled with \verb|bar-0.2|, then
your description of which package to pick up becomes considerably more
complicated than just a package name and version. Better to defer
this decision to Cabal.)
\item Package keys must record versioning information, otherwise
we can't link together two different versions of the same package.
This is due to our backwards-compatibility requirement.
\end{enumerate}
\paragraph{Package keys}
To allow linking together multiple versions of
the same package, we must record versioning information into the
\I{PkgKey}. To do this, we include in the \I{PkgKey} a \I{VersionHash}.
Cabal is responsible for defining \I{VersionHash} and may do whatever it
wants, but we give two possible
definitions in Figure~\ref{fig:version}.
\begin{figure}[htpb]
$$
\begin{array}{rcll}
p && \mbox{Package name} \\
\I{SrcPkgId} && \mbox{Cabal source package ID, e.g. } \verb|foo-0.1| \\[1em]
\I{VersionHash} & ::= & \I{SrcPkgId}\; \verb|{| \, p_0 \; \verb|->| \; \I{VersionHash}_0 \verb|,|\, \ldots\, p_n \; \verb|->| \; \I{VersionHash}_n \, \verb|}| & \mbox{Full version hash} \\
\I{VersionHash'} & ::= & \I{SrcPkgId} \; \verb|{| \, \I{SrcPkgId}_0 \verb|,|\, \ldots\, \verb|,|\, \I{SrcPkgId}_n \, \verb|}| & \mbox{Simplified version hash} \\
\I{PkgKey} & ::= & p\verb|-|\I{VersionHash} \verb|(| \, m \; \verb|->| \; \I{Module} \verb|,|\, \ldots\, \verb|)| \\
\end{array}
$$
\caption{Version hash} \label{fig:version}
\end{figure}
The difference between a full version hash and a simplified version hash
is what linking restrictions they impose on programs: the full version
hash supports linking arbitrary versions of packages with arbitrary
other versions, whereas the simplified hash has a Cabal-style requirement
that there be some globally consistent mapping from package name to version.
The full version hash has some subtleties:
\begin{itemize}
\item Each sub-\I{VersionHash} recorded in a \I{VersionHash} is
identified by a package name, which may not necessarily equal the
package name embedded in the \I{SrcPkgId} in the \I{VersionHash}. This permits us to calculate
a \I{VersionHash} for a package like:
\begin{verbatim}
package p where
include network (Network)
include network-old (Network as Network.Old)
...
\end{verbatim}
if we want \verb|network| to refer to \verb|network-2.0| and
\verb|network-old| to refer to \verb|network-1.0|. Without
identifying each subdependency by package name, we could not
distinguish the recorded \I{VersionHash}s for \verb|network-old| and \verb|network|.
\item If a package name is locally specified in a Backpack
file, it does not occur in the \I{VersionHash}: \I{VersionHash}
strictly operates over Cabal's notion of package identity.
\item You might wonder why we need a \I{VersionHash} as well as a \I{PkgKey};
why not just specify \I{PkgKey} as $\I{SrcPkgId} \; \verb|{| \, p \; \verb|->| \; \I{PkgKey} \verb|,|\, \ldots\, \verb|}| \verb|(| \, m \; \verb|->| \; \I{Module} \verb|,|\, \ldots\, \verb|)|$? However, there is ``too much'' information in the \I{PkgKey}, causing the scheme to not work with mutual recursion:
\begin{verbatim}
package p where
module M
include q
\end{verbatim}
To specify the package key of \verb|p|, we need the package key of \verb|q|; to
specify the package key of \verb|q|, we need the module identifier of \verb|M|
which contains the package key of \verb|p|: circularity! (The simplified
version hash does not have this problem as it is not recursive.)
\end{itemize}
\subsection{Distribution and installation}
How are Backpack files installed so other people can use them?
\paragraph{Challenges}
\begin{itemize}
\item Prior to Backpack, when a Cabal package (e.g. unit of
distribution) was compiled and installed would result in a single
entry in the installed package database. With Backpack, compiling a
package could result in multiple entries in the installed package
database: (1) for indefinite packages which were instantiated, and
(2) when there are multiple packages in a Backpack file.
\item Relatedly, when we include an indefinite package, we may need
to rebuild it with our specific dependencies. This makes compiling
a Backpack file much more similar to \verb|cabal-install| than to
\verb|Cabal|; however, the dependency structure is something that
only GHC can calculate.
\end{itemize}
\paragraph{Why distribute Backpack files?}
Backpack files offer a convenient mechanism of defining multiple packages
with inline syntax for modules. Further syntax extensions could allow us
to give people a MixML style of programming in Haskell.
A Backpack file is not a replacement for a Cabal file:
\verb|exposed-modules| and similar fields are not necessary but we still
need a \verb|build-depends| to provide version bounds (until Backpack
can also be used to handle version dependency.) This makes it easy
for cabal-install to do its job.
This means we distinguish a package name $p$ which occurs in a Backpack
file and a Cabal \I{SrcPkgId}: Cabal creates a mapping between these.
So to refer to an old version of a package, you would refer to it with
a different name $q$, and then tell Cabal about the version bound constraints
you want.
\paragraph{Definite packages}
Suppose we have written a Backpack file that looks like:
\begin{verbatim}
package helper where
include base
module P
package mypackage where
include containers
include helper
module Q
\end{verbatim}
and have written a Cabal file for it intending to distribute it on
Hackage under the name \verb|mypackage-0.1|. In the end, we will end
up with the following entries in our installed package database:
\begin{verbatim}
name: "mypackage"
id: mypackage-1.0-IPID
version: 1.0
key: XXX
# e.g. mypackage-AAA {}
version-hash: AAA
# e.g. mypackage-1.0 { base -> base-4.7 , containers -> containers-0.5 }
depends: mypackage$helper-1.0-IPID, base-4.7-IPID
---
name: "mypackage$helper"
version: 1.0
id: mypackage$helper-1.0-IPID
key: YYY
# e.g. helper-AAA {}
version-hash: AAA
depends: containers-0.5-IPID
\end{verbatim}
%
Things to note:
\begin{enumerate}
\item The package in the Backpack file with the same name as the Cabal
package has special status: this is the package which is registered
to the installed package database under the same name. All other packages
are \emph{qualified} under the Cabal package name, e.g. \verb|mypackage$helper|.
\item The version hash, as described previously, is computed once for all
packages in the Backpack file, and the \verb|version| and \verb|version-hash|
are the same across all of them.
\item The key varies between the packages, since the $p$ parameter is different
in each one.
\item The installed package ID incorporates information about the package name.
\item Dependencies are only recorded directly \verb|include|d packages in a Backpack package. (GHC has to communicate to Cabal what the includes of every subpackage are.)
\end{enumerate}
%
A more complex example with instantiated packages looks similar:
\begin{verbatim}
package helper where
signature Data.Map
module P
package mypackage where
include containers (Data.Map)
include helper
module Q
\end{verbatim}
%
however, now the instantiation is recorded in the database as well.
\begin{verbatim}
name: "mypackage"
id: mypackage-1.0-IPID
version: 1.0
key: XXX
# e.g. mypackage-AAA {}
version-hash: AAA
# e.g. mypackage-1.0 { containers -> containers-0.5 }
depends: mypackage$helper-1.0-IPID, containers-0.5-IPID
---
name: "mypackage$helper"
version: 1.0
id: mypackage$helper-1.0-IPID
key: YYY
# e.g. helper-AAA { Data.Map -> containers-KEY:Data.Map }
version-hash: AAA
depends: (none)
instantiated-with:
Data.Map -> Data.Map@containers-0.5-IPID
\end{verbatim}
%
More remarks:
\begin{enumerate}
\item Cabal's recorded \verb|instantiated-with| records installed
package IDs, so that the used implementation is uniquely determined.
\item Conversely, \verb|depends| does NOT record non-textual dependencies
such as instantiated holes. \Red{is this necessary}
\item IPID includes information about how holes were instantiated.
\end{enumerate}
\paragraph{GHC to Cabal}
When GHC compiles a Backpack file, it is the only entity which knows
about the subpackages of a package. In order to make sure they are
all correctly installed, GHC has to communicate back some meta-data to
Cabal: for each package,
\begin{itemize}
\item The (computed) package keys
\item The dependencies
\item The instantiation
\end{itemize}
I guess we have to define some format to do this. GHC can't directly
write to the package database, because it doesn't know how to write in
the Cabal-specific portion of the information.
\Red{This is clunky, is there a way to eliminate this? It's not possible
for Cabal out of the box to handle this, since it assumes no module name conflicts
but there definitely may be some in Backpack.}
\paragraph{Indefinite package database}
The indefinite package database records indefinite packages (with holes)
that have been typechecked. An indefinite package is associated with a
(possibly unlimited) number of instantiated versions of the package,
which have been fully instantiated and compiled.
An indefinite package is a new type of entry in the existing installed package
database. \Red{or maybe another entry in a different database} Here are the important things to keep track of for an
indefinite package:
\begin{itemize}
\item Where do the (indefinite) interface files live? (NB: there are no
libraries since we haven't compiled the package.)
\item Where does the shape information live? (We could put it with the
interface files, it's a pretty similar binary file.)
\item Where does the source live, so we can recompile it when we instantiate it.
(If it's empty, we'll have to refetch it from Hackage or something).
\item Where does the Cabal configuration (result of running
\verb|cabal configure|) live, so that we build it with the same dependencies, flags, etc.
\end{itemize}
Associated with an indefinite package is some number of instantiated versions
of this package. These are identified by package key (the installed package ID
is the same) and are morally ``sub''-packages of the indefinite package,
although they get their own entries. \Red{Alternate plan: put them together.
Distinction between Cabal package and Backpack package.}
What makes installed indefinite packages difficult is that GHC may need to
recompile them on the fly depending on an include.
\paragraph{The plan}
\Red{To be worked out}
% Description: cabal-install only computes package-name edge labeling,
% then attempts to compile. If the package is indefinite, Cabal
% type checks and installs the interface files, source code and
% configuration information (TODO: this is something GHC has
% to understand\ldots) to the package database. If the package
% is definite, Cabal goes and ahead and builds it. During compilation,
% when processing an include GHC may notice that a package depends on an
% instantiation of an indefinite package that is not compiled; GHC
% goes ahead and builds it using the saved information.
% Con: We need to install indefinite packages, including all of
% the source and information we'd need to actually build it
% (the result of a configure? Only Cabal really knows how
% to understand that; so it should be like a Cabal configured
% package? If GHC calls in that's annoying.) It would be nice
% if this was done cabal-install style, but there are many downside
% to deferring all of this processing to cabal-install.
% Model: GHC compiles everything itself
% GHC needs to report multiple distinct compile products to Cabal
% GHC needs to ``reset'' the EPS (but only for type checking)
% Model: Cabal pre-compiles dependencies, and then GHC handles the rest
% Trouble: Cabal needs to be able to read the bkp file to find out what the instantiation is
% Fix: Have a GHC mode to output this information. Also, if Cabal is doing an old style it already knows.
% Trouble: seems wrong for normal Cabal to isntall it
% Think about it like a CACHE
\end{document} % chktex 16
|