aboutsummaryrefslogtreecommitdiff
path: root/lux-bootstrapper/src/lux/base.clj
blob: f95c4d6d5c4af081ca003acac8371d0181ee8342 (plain)
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
(ns lux.base
  (:require (clojure [template :refer [do-template]]
                     [string :as string])
            [clojure.core.match :as M :refer [matchv]]
            clojure.core.match.array))

(def prelude
  "library/lux")

(def !log! (atom false))
(defn flag-prn! [& args]
  (when @!log!
    (apply prn args)))

;; [Tags]
(def unit-tag
  (.intern ""))

(defn T [elems]
  (case (count elems)
    0
    unit-tag

    1
    (first elems)

    ;; else
    (to-array elems)))

(defmacro defvariant [& names]
  (assert (> (count names) 1))
  `(do ~@(for [[[name num-params] idx] (map vector names (range (count names)))
               :let [last-idx (dec (count names))
                     is-last? (if (= idx last-idx)
                                ""
                                nil)
                     def-name (with-meta (symbol (str "$" name))
                                {::idx idx
                                 ::is-last? is-last?})]]
           (cond (= 0 num-params)
                 `(def ~def-name
                    (to-array [(int ~idx) ~is-last? unit-tag]))

                 (= 1 num-params)
                 `(defn ~def-name [arg#]
                    (to-array [(int ~idx) ~is-last? arg#]))

                 :else
                 (let [g!args (map (fn [_] (gensym "arg"))
                                   (range num-params))]
                   `(defn ~def-name [~@g!args]
                      (to-array [(int ~idx) ~is-last? (T [~@g!args])])))
                 ))))

(defmacro deftuple [names]
  (assert (vector? names))
  `(do ~@(for [[name idx] (map vector names (range (count names)))]
           `(def ~(symbol (str "$" name))
              (int ~idx)))))

;; List
(defvariant
  ("End" 0)
  ("Item" 2))

;; Maybe
(defvariant
  ("None" 0)
  ("Some" 1))

;; Either
(defvariant
  ("Left" 1)
  ("Right" 1))

;; Code
(defvariant
  ("Bit" 1)
  ("Nat" 1)
  ("Int" 1)
  ("Rev" 1)
  ("Frac" 1)
  ("Text" 1)
  ("Identifier" 1)
  ("Tag" 1)
  ("Form" 1)
  ("Tuple" 1)
  ("Record" 1))

;; Type
(defvariant
  ("Primitive" 2)
  ("Sum" 2)
  ("Product" 2)
  ("Function" 2)
  ("Parameter" 1)
  ("Var" 1)
  ("Ex" 1)
  ("UnivQ" 2)
  ("ExQ" 2)
  ("Apply" 2)
  ("Named" 2))

;; Vars
(defvariant
  ("Local" 1)
  ("Captured" 1))

;; Binding
(deftuple
  ["counter"
   "mappings"])

;; Type-Context
(deftuple
  ["ex-counter"
   "var-counter"
   "var-bindings"])

;; Env
(deftuple
  ["name"
   "inner"
   "locals"
   "captured"])

;; Host
(deftuple
  ["writer"
   "loader"
   "classes"
   "type-env"
   "dummy-mappings"
   ])

(defvariant
  ("Build" 0)
  ("Eval" 0)
  ("REPL" 0))

(deftuple
  ["target"
   "version"
   "mode"])

;; Hosts
(defvariant
  ("Jvm" 1)
  ("Js" 1))

(defvariant
  ("DefinitionG" 1)
  ("TypeG" 1)
  ("TagG" 1)
  ("SlotG" 1)
  ("AliasG" 1))

(deftuple
  ["info"
   "source"
   "location"
   "current-module"
   "modules"
   "scopes"
   "type-context"
   "expected"
   "seed"
   "scope-type-vars"
   "extensions"
   "eval"
   "host"])

(defvariant
  ("UpperBound" 0)
  ("LowerBound" 0))

(defvariant
  ("GenericTypeVar" 1)
  ("GenericClass" 2)
  ("GenericArray" 1)
  ("GenericWildcard" 1))

;; Privacy Modifiers
(defvariant
  ("DefaultPM" 0)
  ("PublicPM" 0)
  ("PrivatePM" 0)
  ("ProtectedPM" 0))

;; State Modifiers
(defvariant
  ("DefaultSM" 0)
  ("VolatileSM" 0)
  ("FinalSM" 0))

;; Inheritance Modifiers
(defvariant
  ("DefaultIM" 0)
  ("AbstractIM" 0)
  ("FinalIM" 0))

;; Fields
(defvariant
  ("ConstantFieldSyntax" 4)
  ("VariableFieldSyntax" 5))

(defvariant
  ("ConstantFieldAnalysis" 4)
  ("VariableFieldAnalysis" 5))

;; Methods
(defvariant
  ("ConstructorMethodSyntax" 1)
  ("VirtualMethodSyntax" 1)
  ("OverridenMethodSyntax" 1)
  ("StaticMethodSyntax" 1)
  ("AbstractMethodSyntax" 1)
  ("NativeMethodSyntax" 1))

(defvariant
  ("ConstructorMethodAnalysis" 1)
  ("VirtualMethodAnalysis" 1)
  ("OverridenMethodAnalysis" 1)
  ("StaticMethodAnalysis" 1)
  ("AbstractMethodAnalysis" 1)
  ("NativeMethodAnalysis" 1))

;; [Exports]
(def ^:const value-field "_value")
(def ^:const module-class-name "_")
(def ^:const +name-separator+ ".")

(def ^:const ^String version "0.6.0")

;; Constructors
(def empty-location (T ["" -1 -1]))

(defn get$ [slot ^objects record]
  (aget record slot))

(defn set$ [slot value ^objects record]
  (doto (aclone ^objects record)
    (aset slot value)))

(defmacro update$ [slot f record]
  `(let [record# ~record]
     (set$ ~slot (~f (get$ ~slot record#))
           record#)))

(defn fail* [message]
  ($Left message))

(defn return* [state value]
  ($Right (T [state value])))

(defn transform-pattern [pattern]
  (cond (vector? pattern) (case (count pattern)
                            0
                            unit-tag

                            1
                            (transform-pattern (first pattern))

                            ;; else
                            (mapv transform-pattern pattern))
        (seq? pattern) [(if-let [tag-var (ns-resolve *ns* (first pattern))]
                          (-> tag-var
                              meta
                              ::idx)
                          (assert false (str "Unknown var: " (first pattern))))
                        '_
                        (transform-pattern (vec (rest pattern)))]
        :else pattern))

(defmacro |case [value & branches]
  (assert (= 0 (mod (count branches) 2)))
  (let [value* (if (vector? value)
                 [`(T [~@value])]
                 [value])]
    `(matchv ::M/objects ~value*
       ~@(mapcat (fn [[pattern body]]
                   (list [(transform-pattern pattern)]
                         body))
                 (partition 2 branches)))))

(defmacro |let [bindings body]
  (reduce (fn [inner [left right]]
            `(|case ~right
               ~left
               ~inner))
          body
          (reverse (partition 2 bindings))))

(defmacro |list [& elems]
  (reduce (fn [tail head]
            `($Item ~head ~tail))
          `$End
          (reverse elems)))

(defmacro |table [& elems]
  (reduce (fn [table [k v]]
            `(|put ~k ~v ~table))
          `$End
          (reverse (partition 2 elems))))

(defn |get [slot table]
  (|case table
    ($End)
    nil
    
    ($Item [k v] table*)
    (if (= k slot)
      v
      (recur slot table*))))

(defn |put [slot value table]
  (|case table
    ($End)
    ($Item (T [slot value]) $End)
    
    ($Item [k v] table*)
    (if (= k slot)
      ($Item (T [slot value]) table*)
      ($Item (T [k v]) (|put slot value table*)))
    ))

(defn |remove [slot table]
  (|case table
    ($End)
    table
    
    ($Item [k v] table*)
    (if (= k slot)
      table*
      ($Item (T [k v]) (|remove slot table*)))))

(defn |update [k f table]
  (|case table
    ($End)
    table

    ($Item [k* v] table*)
    (if (= k k*)
      ($Item (T [k* (f v)]) table*)
      ($Item (T [k* v]) (|update k f table*)))))

(defn |head [xs]
  (|case xs
    ($End)
    (assert false (prn-str '|head))

    ($Item x _)
    x))

(defn |tail [xs]
  (|case xs
    ($End)
    (assert false (prn-str '|tail))

    ($Item _ xs*)
    xs*))

;; [Resources/Monads]
(defn fail [message]
  (fn [_]
    ($Left message)))

(defn return [value]
  (fn [state]
    ($Right (T [state value]))))

(defn bind [m-value step]
  (fn [state]
    (let [inputs (m-value state)]
      (|case inputs
        ($Right ?state ?datum)
        ((step ?datum) ?state)
        
        ($Left _)
        inputs
        ))))

(defmacro |do [steps return]
  (assert (= 0 (rem (count steps) 2)) "The number of steps must be even!")
  (reduce (fn [inner [label computation]]
            (case label
              :let `(|let ~computation ~inner)
              ;; else
              `(bind ~computation
                     (fn [val#]
                       (|case val#
                         ~label
                         ~inner)))))
          return
          (reverse (partition 2 steps))))

;; [Resources/Combinators]
(let [array-class (class (to-array []))]
  (defn adt->text [adt]
    (if (= array-class (class adt))
      (str "[" (->> adt (map adt->text) (interpose " ") (reduce str "")) "]")
      (pr-str adt))))

(defn |++ [xs ys]
  (|case xs
    ($End)
    ys

    ($Item x xs*)
    ($Item x (|++ xs* ys))))

(defn |map [f xs]
  (|case xs
    ($End)
    xs

    ($Item x xs*)
    ($Item (f x) (|map f xs*))

    _
    (assert false (prn-str '|map f (adt->text xs)))))

(defn |empty?
  "(All [a] (-> (List a) Bit))"
  [xs]
  (|case xs
    ($End)
    true

    ($Item _ _)
    false))

(defn |filter
  "(All [a] (-> (-> a Bit) (List a) (List a)))"
  [p xs]
  (|case xs
    ($End)
    xs

    ($Item x xs*)
    (if (p x)
      ($Item x (|filter p xs*))
      (|filter p xs*))))

(defn flat-map
  "(All [a b] (-> (-> a (List b)) (List a) (List b)))"
  [f xs]
  (|case xs
    ($End)
    xs

    ($Item x xs*)
    (|++ (f x) (flat-map f xs*))))

(defn |split-with [p xs]
  (|case xs
    ($End)
    (T [xs xs])

    ($Item x xs*)
    (if (p x)
      (|let [[pre post] (|split-with p xs*)]
        (T [($Item x pre) post]))
      (T [$End xs]))))

(defn |contains? [k table]
  (|case table
    ($End)
    false

    ($Item [k* _] table*)
    (or (= k k*)
        (|contains? k table*))))

(defn |member? [x xs]
  (|case xs
    ($End)
    false

    ($Item x* xs*)
    (or (= x x*) (|member? x xs*))))

(defn fold [f init xs]
  (|case xs
    ($End)
    init

    ($Item x xs*)
    (recur f (f init x) xs*)))

(defn fold% [f init xs]
  (|case xs
    ($End)
    (return init)

    ($Item x xs*)
    (|do [init* (f init x)]
      (fold% f init* xs*))))

(defn folds [f init xs]
  (|case xs
    ($End)
    (|list init)

    ($Item x xs*)
    ($Item init (folds f (f init x) xs*))))

(defn |length [xs]
  (fold (fn [acc _] (inc acc)) 0 xs))

(defn |range* [from to]
  (if (<= from to)
    ($Item from (|range* (inc from) to))
    $End))

(let [|range* (fn |range* [from to]
                (if (< from to)
                  ($Item from (|range* (inc from) to))
                  $End))]
  (defn |range [n]
    (|range* 0 n)))

(defn |first [pair]
  (|let [[_1 _2] pair]
    _1))

(defn |second [pair]
  (|let [[_1 _2] pair]
    _2))

(defn zip2 [xs ys]
  (|case [xs ys]
    [($Item x xs*) ($Item y ys*)]
    ($Item (T [x y]) (zip2 xs* ys*))

    [_ _]
    $End))

(defn |keys [plist]
  (|case plist
    ($End)
    $End
    
    ($Item [k v] plist*)
    ($Item k (|keys plist*))))

(defn |vals [plist]
  (|case plist
    ($End)
    $End
    
    ($Item [k v] plist*)
    ($Item v (|vals plist*))))

(defn |interpose [sep xs]
  (|case xs
    ($End)
    xs

    ($Item _ ($End))
    xs
    
    ($Item x xs*)
    ($Item x ($Item sep (|interpose sep xs*)))))

(do-template [<name> <joiner>]
  (defn <name> [f xs]
    (|case xs
      ($End)
      (return xs)

      ($Item x xs*)
      (|do [y (f x)
            ys (<name> f xs*)]
        (return (<joiner> y ys)))))

  map%      $Item
  flat-map% |++)

(defn list-join [xss]
  (fold |++ $End xss))

(defn |as-pairs [xs]
  (|case xs
    ($Item x ($Item y xs*))
    ($Item (T [x y]) (|as-pairs xs*))

    _
    $End))

(defn |reverse [xs]
  (fold (fn [tail head]
          ($Item head tail))
        $End
        xs))

(defn add-loc [meta ^String msg]
  (if (.startsWith msg "@")
    msg
    (|let [[file line col] meta]
      (str "@ " file "," line "," col "\n" msg))))

(defn fail-with-loc [msg]
  (fn [state]
    (fail* (add-loc (get$ $location state) msg))))

(defn assert! [test message]
  (if test
    (return unit-tag)
    (fail-with-loc message)))

(def get-state
  (fn [state]
    (return* state state)))

(defn try-all% [monads]
  (|case monads
    ($End)
    (fail "[Error] There are no alternatives to try!")

    ($Item m monads*)
    (fn [state]
      (let [output (m state)]
        (|case [output monads*]
          [($Right _) _]
          output

          [_ ($End)]
          output
          
          [_ _]
          ((try-all% monads*) state)
          )))
    ))

(defn try-all-% [prefix monads]
  (|case monads
    ($End)
    (fail "[Error] There are no alternatives to try!")

    ($Item m monads*)
    (fn [state]
      (let [output (m state)]
        (|case [output monads*]
          [($Right _) _]
          output

          [_ ($End)]
          output

          [($Left ^String error) _]
          (if (.contains error prefix)
            ((try-all-% prefix monads*) state)
            output)
          )))
    ))

(defn exhaust% [step]
  (fn [state]
    (|case (step state)
      ($Right state* _)
      ((exhaust% step) state*)

      ($Left ^String msg)
      (if (.contains msg "[Reader Error] EOF")
        (return* state unit-tag)
        (fail* msg)))))

(defn |some
  "(All [a b] (-> (-> a (Maybe b)) (List a) (Maybe b)))"
  [f xs]
  (|case xs
    ($End)
    $None

    ($Item x xs*)
    (|case (f x)
      ($None) (|some f xs*)
      output  output)
    ))

(defn ^:private normalize-char [char]
  (case char
    \* "_AS"
    \+ "_PL"
    \- "_DS"
    \/ "_SL"
    \\ "_BS"
    \_ "_US"
    \% "_PC"
    \$ "_DL"
    \' "_QU"
    \` "_BQ"
    \@ "_AT"
    \^ "_CR"
    \& "_AA"
    \= "_EQ"
    \! "_BG"
    \? "_QM"
    \: "_CO"
    \; "_SC"
    \. "_PD"
    \, "_CM"
    \< "_LT"
    \> "_GT"
    \~ "_TI"
    \| "_PI"
    ;; default
    char))

(defn normalize-name [ident]
  (reduce str "" (map normalize-char ident)))

(def +init-bindings+
  (T [;; "lux;counter"
      0
      ;; "lux;mappings"
      (|table)]))

(def +init-type-context+
  (T [;; ex-counter
      0
      ;; var-counter
      0
      ;; var-bindings
      (|table)]))

(defn env [name old-name]
  (T [;; name
      ($Item name old-name)
      ;; inner
      0
      ;; locals
      +init-bindings+
      ;; captured
      +init-bindings+]
     ))

(do-template [<tag> <host-desc> <host> <ask> <change> <with>]
  (do (def <host>
        (fn [compiler]
          (|case (get$ $host compiler)
            (<tag> host-data)
            (return* compiler host-data)

            _
            ((fail-with-loc (str "[Error] Wrong host.\nExpected: " <host-desc>))
             compiler))))

    (def <ask>
      (fn [compiler]
        (|case (get$ $host compiler)
          (<tag> host-data)
          (return* compiler true)

          _
          (return* compiler false))))

    (defn <change> [slot updater]
      (|do [host <host>]
        (fn [compiler]
          (return* (set$ $host (<tag> (update$ slot updater host)) compiler)
                   (get$ slot host)))))

    (defn <with> [slot updater body]
      (|do [old-val (<change> slot updater)
            ?output-val body
            new-val (<change> slot (fn [_] old-val))]
        (return ?output-val))))

  $Jvm "JVM" jvm-host jvm? change-jvm-host-slot with-jvm-host-slot
  $Js  "JS"  js-host  js?  change-js-host-slot  with-js-host-slot
  )

(do-template [<name> <slot>]
  (def <name>
    (|do [host jvm-host]
      (return (get$ <slot> host))))

  loader       $loader
  classes      $classes
  get-type-env $type-env
  )

(def get-writer
  (|do [host jvm-host]
    (|case (get$ $writer host)
      ($Some writer)
      (return writer)

      _
      (fail-with-loc "[Error] Writer has not been set."))))

(defn with-writer [writer body]
  (with-jvm-host-slot $writer (fn [_] ($Some writer)) body))

(defn with-type-env
  "(All [a] (-> TypeEnv (Meta a) (Meta a)))"
  [type-env body]
  (with-jvm-host-slot $type-env (partial |++ type-env) body))

(defn push-dummy-name [real-name store-name]
  (change-jvm-host-slot $dummy-mappings (partial $Item (T [real-name store-name]))))

(def pop-dummy-name
  (change-jvm-host-slot $dummy-mappings |tail))

(defn de-alias-class [class-name]
  (|do [host jvm-host]
    (return (|case (|some #(|let [[real-name store-name] %]
                             (if (= real-name class-name)
                               ($Some store-name)
                               $None))
                          (get$ $dummy-mappings host))
              ($Some store-name)
              store-name

              _
              class-name))))

(defn default-info [target mode]
  (T [;; target
      target
      ;; version
      version
      ;; mode
      mode]
     ))

(defn init-state [name mode host-data]
  (T [;; "lux;info"
      (default-info name mode)
      ;; "lux;source"
      $End
      ;; "lux;location"
      (T ["" -1 -1])
      ;; "current-module"
      $None
      ;; "lux;modules"
      (|table)
      ;; "lux;scopes"
      $End
      ;; "lux;type-context"
      +init-type-context+
      ;; "lux;expected"
      $None
      ;; "lux;seed"
      0
      ;; scope-type-vars
      $End
      ;; extensions
      "" ;; This is an invalid value. But I don't expect extensions to be used with the bootstrapping compiler.
      ;; eval
      "" ;; This is an invalid value. But I don't expect eval to be used with the bootstrapping compiler.
      ;; "lux;host"
      host-data]
     ))

(defn save-module [body]
  (fn [state]
    (|case (body state)
      ($Right state* output)
      (return* (->> state*
                    (set$ $scopes (get$ $scopes state))
                    (set$ $source (get$ $source state)))
               output)

      ($Left msg)
      (fail* msg))))

(do-template [<name> <tag>]
  (defn <name>
    "(-> CompilerMode Bit)"
    [mode]
    (|case mode
      (<tag>) true
      _       false))

  in-eval? $Eval
  in-repl? $REPL
  )

(defn with-eval [body]
  (fn [state]
    (let [old-mode (->> state (get$ $info) (get$ $mode))]
      (|case (body (update$ $info #(set$ $mode $Eval %) state))
        ($Right state* output)
        (return* (update$ $info #(set$ $mode old-mode %) state*) output)

        ($Left msg)
        (fail* msg)))))

(def get-eval
  (fn [state]
    (return* state (->> state (get$ $info) (get$ $mode) in-eval?))))

(def get-mode
  (fn [state]
    (return* state (->> state (get$ $info) (get$ $mode)))))

(def get-top-local-env
  (fn [state]
    (try (let [top (|head (get$ $scopes state))]
           (return* state top))
      (catch Throwable _
        ((fail-with-loc "[Error] No local environment.")
         state)))))

(def gen-id
  (fn [state]
    (let [seed (get$ $seed state)]
      (return* (set$ $seed (inc seed) state) seed))))

(defn ->seq [xs]
  (|case xs
    ($End)
    (list)

    ($Item x xs*)
    (cons x (->seq xs*))))

(defn ->list [seq]
  (if (empty? seq)
    $End
    ($Item (first seq) (->list (rest seq)))))

(defn |repeat [n x]
  (if (> n 0)
    ($Item x (|repeat (dec n) x))
    $End))

(def get-module-name
  (fn [state]
    (|case (get$ $current-module state)
      ($None)
      ((fail-with-loc "[Analyser Error] Cannot get the module-name without a module.")
       state)

      ($Some module-name)
      (return* state module-name))))

(defn find-module
  "(-> Text (Meta (Module Lux)))"
  [name]
  (fn [state]
    (if-let [module (|get name (get$ $modules state))]
      (return* state module)
      ((fail-with-loc (str "[Error] Unknown module: " name))
       state))))

(def ^{:doc "(Meta (Module Lux))"}
  get-current-module
  (|do [module-name get-module-name]
    (find-module module-name)))

(defn with-scope [name body]
  (fn [state]
    (let [old-name (->> state (get$ $scopes) |head (get$ $name))
          output (body (update$ $scopes #($Item (env name old-name) %) state))]
      (|case output
        ($Right state* datum)
        (return* (update$ $scopes |tail state*) datum)
        
        _
        output))))

(defn run-state [monad state]
  (monad state))

(defn with-closure [body]
  (|do [closure-name (|do [top get-top-local-env]
                       (return (->> top (get$ $inner) str)))]
    (fn [state]
      (let [body* (with-scope closure-name body)]
        (run-state body* (update$ $scopes #($Item (update$ $inner inc (|head %))
                                                  (|tail %))
                                  state))))))

(let [!out! *out*]
  (defn |log! [& parts]
    (binding [*out* !out!]
      (do (print (str (apply str parts) "\n"))
        (flush)))))

(defn |last [xs]
  (|case xs
    ($Item x ($End))
    x

    ($Item x xs*)
    (|last xs*)

    _
    (assert false (adt->text xs))))

(def get-scope-name
  (fn [state]
    (return* state (->> state (get$ $scopes) |head (get$ $name)))))

(defn without-repl-closure [body]
  (|do [_mode get-mode
        current-scope get-scope-name]
    (fn [state]
      (let [output (body (if (and (in-repl? _mode)
                                  (->> current-scope |last (= "REPL")))
                           (update$ $scopes |tail state)
                           state))]
        (|case output
          ($Right state* datum)
          (return* (set$ $scopes (get$ $scopes state) state*) datum)
          
          _
          output)))))

(defn without-repl [body]
  (|do [_mode get-mode]
    (fn [state]
      (let [output (body (if (in-repl? _mode)
                           (update$ $info #(set$ $mode $Build %) state)
                           state))]
        (|case output
          ($Right state* datum)
          (return* (update$ $info #(set$ $mode _mode %) state*) datum)
          
          _
          output)))))

(defn with-expected-type
  "(All [a] (-> Type (Meta a)))"
  [type body]
  (fn [state]
    (let [output (body (set$ $expected ($Some type) state))]
      (|case output
        ($Right ?state ?value)
        (return* (set$ $expected (get$ $expected state) ?state)
                 ?value)

        _
        output))))

(defn with-location
  "(All [a] (-> Location (Meta a)))"
  [^objects location body]
  (|let [[_file-name _ _] location]
    (if (= "" _file-name)
      body
      (fn [state]
        (let [output (body (set$ $location location state))]
          (|case output
            ($Right ?state ?value)
            (return* (set$ $location (get$ $location state) ?state)
                     ?value)

            _
            output))))))

(defn with-analysis-meta
  "(All [a] (-> Location Type (Meta a)))"
  [^objects location type body]
  (|let [[_file-name _ _] location]
    (if (= "" _file-name)
      (fn [state]
        (let [output (body (->> state
                                (set$ $expected ($Some type))))]
          (|case output
            ($Right ?state ?value)
            (return* (->> ?state
                          (set$ $expected (get$ $expected state)))
                     ?value)

            _
            output)))
      (fn [state]
        (let [output (body (->> state
                                (set$ $location location)
                                (set$ $expected ($Some type))))]
          (|case output
            ($Right ?state ?value)
            (return* (->> ?state
                          (set$ $location (get$ $location state))
                          (set$ $expected (get$ $expected state)))
                     ?value)

            _
            output))))))

(def ^{:doc "(Meta Any)"}
  ensure-directive
  (fn [state]
    (|case (get$ $expected state)
      ($None)
      (return* state unit-tag)

      ($Some _)
      ((fail-with-loc "[Error] All directives must be top-level forms.")
       state))))

(def location
  ;; (Meta Location)
  (fn [state]
    (return* state (get$ $location state))))

(def rev-bits 64)

(let [clean-separators (fn [^String input]
                         (.replaceAll input "_" ""))
      rev-text-to-digits (fn [^String input]
                           (loop [output (vec (repeat rev-bits 0))
                                  index (dec (.length input))]
                             (if (>= index 0)
                               (let [digit (Byte/parseByte (.substring input index (inc index)))]
                                 (recur (assoc output index digit)
                                        (dec index)))
                               output)))
      times5 (fn [index digits]
               (loop [index index
                      carry 0
                      digits digits]
                 (if (>= index 0)
                   (let [raw (->> (get digits index) (* 5) (+ carry))]
                     (recur (dec index)
                            (int (/ raw 10))
                            (assoc digits index (rem raw 10))))
                   digits)))
      rev-digit-power (fn [level]
                        (loop [output (-> (vec (repeat rev-bits 0))
                                          (assoc level 1))
                               times level]
                          (if (>= times 0)
                            (recur (times5 level output)
                                   (dec times))
                            output)))
      rev-digits-lt (fn rev-digits-lt
                      ([subject param index]
                       (and (< index rev-bits)
                            (or (< (get subject index)
                                   (get param index))
                                (and (= (get subject index)
                                        (get param index))
                                     (rev-digits-lt subject param (inc index))))))
                      ([subject param]
                       (rev-digits-lt subject param 0)))
      rev-digits-sub-once (fn [subject param-digit index]
                            (if (>= (get subject index)
                                    param-digit)
                              (update-in subject [index] #(- % param-digit))
                              (recur (update-in subject [index] #(- 10 (- param-digit %)))
                                     1
                                     (dec index))))
      rev-digits-sub (fn [subject param]
                       (loop [target subject
                              index (dec rev-bits)]
                         (if (>= index 0)
                           (recur (rev-digits-sub-once target (get param index) index)
                                  (dec index))
                           target)))
      rev-digits-to-text (fn [digits]
                           (loop [output ""
                                  index (dec rev-bits)]
                             (if (>= index 0)
                               (recur (-> (get digits index)
                                          (Character/forDigit 10)
                                          (str output))
                                      (dec index))
                               output)))
      add-rev-digit-powers (fn [dl dr]
                             (loop [index (dec rev-bits)
                                    output (vec (repeat rev-bits 0))
                                    carry 0]
                               (if (>= index 0)
                                 (let [raw (+ carry
                                              (get dl index)
                                              (get dr index))]
                                   (recur (dec index)
                                          (assoc output index (rem raw 10))
                                          (int (/ raw 10))))
                                 output)))]
  ;; Based on the LuxRT.encode_rev method
  (defn encode-rev [input]
    (if (= 0 input)
      ".0"
      (loop [index (dec rev-bits)
             output (vec (repeat rev-bits 0))]
        (if (>= index 0)
          (recur (dec index)
                 (if (bit-test input index)
                   (->> (- (dec rev-bits) index)
                        rev-digit-power
                        (add-rev-digit-powers output))
                   output))
          (-> output rev-digits-to-text
              (->> (str "."))
              (.split "0*$")
              (aget 0))))))

  ;; Based on the LuxRT.decode_rev method
  (defn decode-rev [^String input]
    (if (and (.startsWith input ".")
             (<= (.length input) (inc rev-bits)))
      (loop [digits-left (-> input
                             (.substring 1)
                             clean-separators
                             rev-text-to-digits)
             index 0
             ouput 0]
        (if (< index rev-bits)
          (let [power-slice (rev-digit-power index)]
            (if (not (rev-digits-lt digits-left power-slice))
              (recur (rev-digits-sub digits-left power-slice)
                     (inc index)
                     (bit-set ouput (- (dec rev-bits) index)))
              (recur digits-left
                     (inc index)
                     ouput)))
          ouput))
      (throw (new java.lang.Exception (str "Bad format for Rev number: " input)))))
  )

(defn show-ast [ast]
  (|case ast
    [_ ($Bit ?value)]
    (pr-str ?value)

    [_ ($Nat ?value)]
    (Long/toUnsignedString ?value)

    [_ ($Int ?value)]
    (if (< ?value 0)
      (pr-str ?value)
      (str "+" (pr-str ?value)))

    [_ ($Rev ?value)]
    (encode-rev ?value)

    [_ ($Frac ?value)]
    (pr-str ?value)

    [_ ($Text ?value)]
    (str "\"" ?value "\"")

    [_ ($Tag ?module ?tag)]
    (if (.equals "" ?module)
      (str "#" ?tag)
      (str "#" ?module +name-separator+ ?tag))

    [_ ($Identifier ?module ?name)]
    (if (.equals "" ?module)
      ?name
      (str ?module +name-separator+ ?name))

    [_ ($Tuple ?elems)]
    (str "[" (->> ?elems (|map show-ast) (|interpose " ") (fold str "")) "]")

    [_ ($Record ?elems)]
    (str "{" (->> ?elems
                  (|map (fn [elem]
                          (|let [[k v] elem]
                            (str (show-ast k) " " (show-ast v)))))
                  (|interpose " ") (fold str "")) "}")

    [_ ($Form ?elems)]
    (str "(" (->> ?elems (|map show-ast) (|interpose " ") (fold str "")) ")")

    _
    (assert false (prn-str 'show-ast (adt->text ast)))
    ))

(defn ident->text [ident]
  (|let [[?module ?name] ident]
    (if (= "" ?module)
      ?name
      (str ?module +name-separator+ ?name))))

(defn fold2% [f init xs ys]
  (|case [xs ys]
    [($Item x xs*) ($Item y ys*)]
    (|do [init* (f init x y)]
      (fold2% f init* xs* ys*))

    [($End) ($End)]
    (return init)

    [_ _]
    (assert false "Lists do not match in size.")))

(defn map2% [f xs ys]
  (|case [xs ys]
    [($Item x xs*) ($Item y ys*)]
    (|do [z (f x y)
          zs (map2% f xs* ys*)]
      (return ($Item z zs)))

    [($End) ($End)]
    (return $End)

    [_ _]
    (assert false "Lists do not match in size.")))

(defn map2 [f xs ys]
  (|case [xs ys]
    [($Item x xs*) ($Item y ys*)]
    ($Item (f x y) (map2 f xs* ys*))

    [_ _]
    $End))

(defn fold2 [f init xs ys]
  (|case [xs ys]
    [($Item x xs*) ($Item y ys*)]
    (and init
         (fold2 f (f init x y) xs* ys*))

    [($End) ($End)]
    init

    [_ _]
    init
    ;; (assert false)
    ))

(defn ^:private enumerate*
  "(All [a] (-> Int (List a) (List (, Int a))))"
  [idx xs]
  (|case xs
    ($Item x xs*)
    ($Item (T [idx x])
           (enumerate* (inc idx) xs*))

    ($End)
    xs
    ))

(defn enumerate
  "(All [a] (-> (List a) (List (, Int a))))"
  [xs]
  (enumerate* 0 xs))

(def ^{:doc "(Meta (List Text))"}
  modules
  (fn [state]
    (return* state (|keys (get$ $modules state)))))

(defn when%
  "(-> Bit (Meta Any) (Meta Any))"
  [test body]
  (if test
    body
    (return unit-tag)))

(defn |at
  "(All [a] (-> Int (List a) (Maybe a)))"
  [idx xs]
  (|case xs
    ($Item x xs*)
    (cond (< idx 0)
          $None

          (= idx 0)
          ($Some x)

          :else ;; > 1
          (|at (dec idx) xs*))

    ($End)
    $None))

(defn normalize
  "(-> Ident (Meta Ident))"
  [ident]
  (|case ident
    ["" name] (|do [module get-module-name]
                (return (T [module name])))
    _ (return ident)))

(defn ident= [x y]
  (|let [[xmodule xname] x
         [ymodule yname] y]
    (and (= xmodule ymodule)
         (= xname yname))))

(defn |list-put [idx val xs]
  (|case xs
    ($End)
    $None
    
    ($Item x xs*)
    (if (= idx 0)
      ($Some ($Item val xs*))
      (|case (|list-put (dec idx) val xs*)
        ($None)      $None
        ($Some xs**) ($Some ($Item x xs**)))
      )))

(do-template [<name> <default> <op>]
  (defn <name>
    "(All [a] (-> (-> a Bit) (List a) Bit))"
    [p xs]
    (|case xs
      ($End)
      <default>

      ($Item x xs*)
      (<op> (p x) (<name> p xs*))))

  |every? true  and
  |any?   false or)

(defn m-comp
  "(All [a b c] (-> (-> b (Meta c)) (-> a (Meta b)) (-> a (Meta c))))"
  [f g]
  (fn [x]
    (|do [y (g x)]
      (f y))))

(defn with-attempt
  "(All [a] (-> (Meta a) (-> Text (Meta a)) (Meta a)))"
  [m-value on-error]
  (fn [state]
    (|case (m-value state)
      ($Left msg)
      ((on-error msg) state)
      
      output
      output)))

(defn |take [n xs]
  (|case (T [n xs])
    [0 _]             $End
    [_ ($End)]        $End
    [_ ($Item x xs*)] ($Item x (|take (dec n) xs*))
    ))

(defn |drop [n xs]
  (|case (T [n xs])
    [0 _]             xs
    [_ ($End)]        $End
    [_ ($Item x xs*)] (|drop (dec n) xs*)
    ))

(defn |but-last [xs]
  (|case xs
    ($End)
    $End
    
    ($Item x ($End))
    $End

    ($Item x xs*)
    ($Item x (|but-last xs*))

    _
    (assert false (adt->text xs))))

(defn |partition [n xs]
  (->> xs ->seq (partition-all n) (map ->list) ->list))

(defn with-scope-type-var [id body]
  (fn [state]
    (|case (body (set$ $scope-type-vars
                       ($Item id (get$ $scope-type-vars state))
                       state))
      ($Right [state* output])
      ($Right (T [(set$ $scope-type-vars
                        (get$ $scope-type-vars state)
                        state*)
                  output]))

      ($Left msg)
      ($Left msg))))

(defn with-module [name body]
  (fn [state]
    (|case (body (set$ $current-module ($Some name) state))
      ($Right [state* output])
      ($Right (T [(set$ $current-module (get$ $current-module state) state*)
                  output]))

      ($Left msg)
      ($Left msg))))

(defn |eitherL [left right]
  (fn [compiler]
    (|case (run-state left compiler)
      ($Left _error)
      (run-state right compiler)

      _output
      _output)))

(defn timed% [what when operation]
  (fn [state]
    (let [pre (System/currentTimeMillis)]
      (|case (operation state)
        ($Right state* output)
        (let [post (System/currentTimeMillis)
              duration (- post pre)
              _ (|log! (str what " [" when "]: +" duration "ms"))]
          ($Right (T [state* output])))

        ($Left ^String msg)
        (fail* msg)))))