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
|
(.module:
[lux #*
[control
[monad (#+ do)]]
[data
[text
format]
[collection
["." list ("list/." Functor<List>)]]]
["." math]
[compiler
[default
["." phase
[analysis (#+ Arity)]
["." translation]]]]]
[luxc
[lang
[host
["$" jvm (#+ Inst Method Def Operation)
["$t" type]
["$d" def]
["_" inst]]]]]
["." // (#+ ByteCode)])
(def: $Object $.Type ($t.class "java.lang.Object" (list)))
(def: $Object-Array $.Type ($t.array 1 $Object))
(def: $String $.Type ($t.class "java.lang.String" (list)))
(def: #export $Stack $.Type ($t.array 1 $Object))
(def: #export $Tuple $.Type $Object-Array)
(def: #export $Variant $.Type $Object-Array)
(def: #export $Tag $.Type $t.int)
(def: #export $Flag $.Type $Object)
(def: #export $Datum $.Type $Object)
(def: #export $Function $.Type ($t.class //.function-class (list)))
(def: $Throwable $.Type ($t.class "java.lang.Throwable" (list)))
(def: $Runtime $.Type ($t.class "java.lang.Runtime" (list)))
(def: #export logI
Inst
(let [outI (_.GETSTATIC "java.lang.System" "out" ($t.class "java.io.PrintStream" (list)))
printI (function (_ method) (_.INVOKEVIRTUAL "java.io.PrintStream" method ($t.method (list $Object) #.None (list)) #0))]
(|>> outI (_.string "LOG: ") (printI "print")
outI _.SWAP (printI "println"))))
(def: variant-method
Method
($t.method (list $t.int $Object $Object) (#.Some $Object-Array) (list)))
(def: #export variantI
Inst
(_.INVOKESTATIC //.runtime-class "variant_make" variant-method #0))
(def: #export leftI
Inst
(|>> (_.int +0)
_.NULL
_.DUP2_X1
_.POP2
variantI))
(def: #export rightI
Inst
(|>> (_.int +1)
(_.string "")
_.DUP2_X1
_.POP2
variantI))
(def: #export someI Inst rightI)
(def: #export noneI
Inst
(|>> (_.int +0)
_.NULL
(_.string //.unit)
variantI))
(def: (try-methodI unsafeI)
(-> Inst Inst)
(<| _.with-label (function (_ @from))
_.with-label (function (_ @to))
_.with-label (function (_ @handler))
(|>> (_.try @from @to @handler "java.lang.Exception")
(_.label @from)
unsafeI
someI
_.ARETURN
(_.label @to)
(_.label @handler)
noneI
_.ARETURN)))
(def: #export string-concatI
Inst
(_.INVOKEVIRTUAL "java.lang.String" "concat" ($t.method (list $String) (#.Some $String) (list)) #0))
(def: #export partials-field Text "partials")
(def: #export apply-method Text "apply")
(def: #export num-apply-variants Nat 8)
(def: #export (apply-signature arity)
(-> Arity Method)
($t.method (list.repeat arity $Object) (#.Some $Object) (list)))
(def: adt-methods
Def
(let [store-tagI (|>> _.DUP (_.int +0) (_.ILOAD 0) (_.wrap #$.Int) _.AASTORE)
store-flagI (|>> _.DUP (_.int +1) (_.ALOAD 1) _.AASTORE)
store-valueI (|>> _.DUP (_.int +2) (_.ALOAD 2) _.AASTORE)]
(|>> ($d.method #$.Public $.staticM "variant_make"
($t.method (list $t.int $Object $Object)
(#.Some $Variant)
(list))
(|>> (_.int +3)
(_.array $Object)
store-tagI
store-flagI
store-valueI
_.ARETURN)))))
(def: frac-shiftI Inst (_.double (math.pow +32.0 +2.0)))
(def: frac-methods
Def
(|>> ($d.method #$.Public $.staticM "decode_frac" ($t.method (list $String) (#.Some $Object-Array) (list))
(try-methodI
(|>> (_.ALOAD 0)
(_.INVOKESTATIC "java.lang.Double" "parseDouble" ($t.method (list $String) (#.Some $t.double) (list)) #0)
(_.wrap #$.Double))))
))
(def: clz-method Method ($t.method (list $t.long) (#.Some $t.int) (list)))
(def: text-methods
Def
(|>> ($d.method #$.Public $.staticM "text_clip" ($t.method (list $String $t.int $t.int) (#.Some $Variant) (list))
(try-methodI
(|>> (_.ALOAD 0)
(_.ILOAD 1)
(_.ILOAD 2)
(_.INVOKEVIRTUAL "java.lang.String" "substring" ($t.method (list $t.int $t.int) (#.Some $String) (list)) #0))))
($d.method #$.Public $.staticM "text_char" ($t.method (list $String $t.int) (#.Some $Variant) (list))
(try-methodI
(|>> (_.ALOAD 0)
(_.ILOAD 1)
(_.INVOKEVIRTUAL "java.lang.String" "codePointAt" ($t.method (list $t.int) (#.Some $t.int) (list)) #0)
_.I2L
(_.wrap #$.Long))))
))
(def: pm-methods
Def
(let [tuple-sizeI (|>> (_.ALOAD 0) _.ARRAYLENGTH)
tuple-elemI (|>> (_.ALOAD 0) (_.ILOAD 1) _.AALOAD)
expected-last-sizeI (|>> (_.ILOAD 1) (_.int +1) _.IADD)
tuple-tailI (|>> (_.ALOAD 0) tuple-sizeI (_.int +1) _.ISUB _.AALOAD (_.CHECKCAST ($t.descriptor $Tuple)))]
(|>> ($d.method #$.Public $.staticM "pm_fail" ($t.method (list) #.None (list))
(|>> (_.NEW "java.lang.IllegalStateException")
_.DUP
(_.string "Invalid expression for pattern-matching.")
(_.INVOKESPECIAL "java.lang.IllegalStateException" "<init>" ($t.method (list $String) #.None (list)) #0)
_.ATHROW))
($d.method #$.Public $.staticM "apply_fail" ($t.method (list) #.None (list))
(|>> (_.NEW "java.lang.IllegalStateException")
_.DUP
(_.string "Error while applying function.")
(_.INVOKESPECIAL "java.lang.IllegalStateException" "<init>" ($t.method (list $String) #.None (list)) #0)
_.ATHROW))
($d.method #$.Public $.staticM "pm_push" ($t.method (list $Stack $Object) (#.Some $Stack) (list))
(|>> (_.int +2)
(_.ANEWARRAY "java.lang.Object")
_.DUP
(_.int +0)
(_.ALOAD 0)
_.AASTORE
_.DUP
(_.int +1)
(_.ALOAD 1)
_.AASTORE
_.ARETURN))
($d.method #$.Public $.staticM "pm_pop" ($t.method (list $Stack) (#.Some $Stack) (list))
(|>> (_.ALOAD 0)
(_.int +0)
_.AALOAD
(_.CHECKCAST ($t.descriptor $Stack))
_.ARETURN))
($d.method #$.Public $.staticM "pm_peek" ($t.method (list $Stack) (#.Some $Object) (list))
(|>> (_.ALOAD 0)
(_.int +1)
_.AALOAD
_.ARETURN))
($d.method #$.Public $.staticM "pm_variant" ($t.method (list $Variant $Tag $Flag) (#.Some $Object) (list))
(<| _.with-label (function (_ @begin))
_.with-label (function (_ @just-return))
_.with-label (function (_ @then))
_.with-label (function (_ @further))
_.with-label (function (_ @shorten))
_.with-label (function (_ @wrong))
(let [variant-partI (: (-> Nat Inst)
(function (_ idx)
(|>> (_.int (.int idx)) _.AALOAD)))
tagI (: Inst
(|>> (variant-partI 0) (_.unwrap #$.Int)))
flagI (variant-partI 1)
datumI (variant-partI 2)
shortenI (|>> (_.ALOAD 0) tagI ## Get tag
(_.ILOAD 1) _.ISUB ## Shorten tag
(_.ALOAD 0) flagI ## Get flag
(_.ALOAD 0) datumI ## Get value
variantI ## Build sum
_.ARETURN)
update-tagI (|>> _.ISUB (_.ISTORE 1))
update-variantI (|>> (_.ALOAD 0) datumI (_.CHECKCAST ($t.descriptor $Variant)) (_.ASTORE 0))
failureI (|>> _.NULL _.ARETURN)
return-datumI (|>> (_.ALOAD 0) datumI _.ARETURN)])
(|>> (_.label @begin)
(_.ILOAD 1) ## tag
(_.ALOAD 0) tagI ## tag, sumT
_.DUP2 (_.IF_ICMPEQ @then)
_.DUP2 (_.IF_ICMPGT @further)
_.DUP2 (_.IF_ICMPLT @shorten)
## _.POP2
failureI
(_.label @then) ## tag, sumT
(_.ALOAD 2) ## tag, sumT, wants-last?
(_.ALOAD 0) flagI ## tag, sumT, wants-last?, is-last?
(_.IF_ACMPEQ @just-return) ## tag, sumT
(_.label @further) ## tag, sumT
(_.ALOAD 0) flagI ## tag, sumT, last?
(_.IFNULL @wrong) ## tag, sumT
update-tagI
update-variantI
(_.GOTO @begin)
(_.label @just-return) ## tag, sumT
## _.POP2
return-datumI
(_.label @shorten) ## tag, sumT
(_.ALOAD 2) (_.IFNULL @wrong)
## _.POP2
shortenI
(_.label @wrong) ## tag, sumT
## _.POP2
failureI)))
($d.method #$.Public $.staticM "pm_left" ($t.method (list $Tuple $t.int) (#.Some $Object) (list))
(<| _.with-label (function (_ @begin))
_.with-label (function (_ @not-recursive))
(let [updated-idxI (|>> _.SWAP _.ISUB)])
(|>> (_.label @begin)
tuple-sizeI
expected-last-sizeI
_.DUP2 (_.IF_ICMPGT @not-recursive)
## Recursive
updated-idxI (_.ISTORE 1)
tuple-tailI (_.ASTORE 0)
(_.GOTO @begin)
(_.label @not-recursive)
## _.POP2
tuple-elemI
_.ARETURN)))
($d.method #$.Public $.staticM "pm_right" ($t.method (list $Tuple $t.int) (#.Some $Object) (list))
(<| _.with-label (function (_ @begin))
_.with-label (function (_ @tail))
_.with-label (function (_ @slice))
(let [updated-idxI (|>> (_.ILOAD 1) (_.int +1) _.ISUB tuple-sizeI _.ISUB)
sliceI (|>> (_.ALOAD 0) (_.ILOAD 1) tuple-sizeI
(_.INVOKESTATIC "java.util.Arrays" "copyOfRange"
($t.method (list $Object-Array $t.int $t.int)
(#.Some $Object-Array)
(list))
#0))])
(|>> (_.label @begin)
tuple-sizeI
expected-last-sizeI
_.DUP2 (_.IF_ICMPEQ @tail)
(_.IF_ICMPGT @slice)
## Must recurse
tuple-tailI (_.ASTORE 0)
updated-idxI (_.ISTORE 1)
(_.GOTO @begin)
(_.label @slice)
sliceI
_.ARETURN
(_.label @tail)
## _.POP2
tuple-elemI
_.ARETURN)))
)))
(def: io-methods
Def
(let [string-writerI (|>> (_.NEW "java.io.StringWriter")
_.DUP
(_.INVOKESPECIAL "java.io.StringWriter" "<init>" ($t.method (list) #.None (list)) #0))
print-writerI (|>> (_.NEW "java.io.PrintWriter")
_.SWAP
_.DUP2
_.POP
_.SWAP
(_.boolean #1)
(_.INVOKESPECIAL "java.io.PrintWriter" "<init>" ($t.method (list ($t.class "java.io.Writer" (list)) $t.boolean) #.None (list)) #0)
)]
(|>> ($d.method #$.Public $.staticM "try" ($t.method (list $Function) (#.Some $Variant) (list))
(<| _.with-label (function (_ @from))
_.with-label (function (_ @to))
_.with-label (function (_ @handler))
(|>> (_.try @from @to @handler "java.lang.Throwable")
(_.label @from)
(_.ALOAD 0)
_.NULL
(_.INVOKEVIRTUAL //.function-class apply-method (apply-signature 1) #0)
rightI
_.ARETURN
(_.label @to)
(_.label @handler)
string-writerI ## TW
_.DUP2 ## TWTW
print-writerI ## TWTP
(_.INVOKEVIRTUAL "java.lang.Throwable" "printStackTrace" ($t.method (list ($t.class "java.io.PrintWriter" (list))) #.None (list)) #0) ## TW
(_.INVOKEVIRTUAL "java.io.StringWriter" "toString" ($t.method (list) (#.Some $String) (list)) #0) ## TS
_.SWAP _.POP leftI
_.ARETURN)))
)))
(def: translate-runtime
(Operation ByteCode)
(let [bytecode ($d.class #$.V1_6 #$.Public $.finalC //.runtime-class (list) ["java.lang.Object" (list)] (list)
(|>> adt-methods
frac-methods
text-methods
pm-methods
io-methods))]
(do phase.Monad<Operation>
[_ (translation.execute! //.runtime-class [//.runtime-class bytecode])]
(wrap bytecode))))
(def: translate-function
(Operation ByteCode)
(let [applyI (|> (list.n/range 2 num-apply-variants)
(list/map (function (_ arity)
($d.method #$.Public $.noneM apply-method (apply-signature arity)
(let [preI (|> (list.n/range 0 (dec arity))
(list/map _.ALOAD)
_.fuse)]
(|>> preI
(_.INVOKEVIRTUAL //.function-class apply-method (apply-signature (dec arity)) #0)
(_.CHECKCAST //.function-class)
(_.ALOAD arity)
(_.INVOKEVIRTUAL //.function-class apply-method (apply-signature 1) #0)
_.ARETURN)))))
(list& ($d.abstract-method #$.Public $.noneM apply-method (apply-signature 1)))
$d.fuse)
bytecode ($d.abstract #$.V1_6 #$.Public $.noneC //.function-class (list) ["java.lang.Object" (list)] (list)
(|>> ($d.field #$.Public $.finalF partials-field $t.int)
($d.method #$.Public $.noneM "<init>" ($t.method (list $t.int) #.None (list))
(|>> (_.ALOAD 0)
(_.INVOKESPECIAL "java.lang.Object" "<init>" ($t.method (list) #.None (list)) #0)
(_.ALOAD 0)
(_.ILOAD 1)
(_.PUTFIELD //.function-class partials-field $t.int)
_.RETURN))
applyI))]
(do phase.Monad<Operation>
[_ (translation.execute! //.function-class [//.function-class bytecode])]
(wrap bytecode))))
(def: #export translate
(Operation Any)
(do phase.Monad<Operation>
[runtime-bc translate-runtime
function-bc translate-function]
(wrap [])))
|