blob: 63fd0685a2669c202c6d0528945a431870c57607 (
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
|
(.module:
[lux #*
[abstract
[monad (#+ do)]]
[data
[text
format]]
[tool
[compiler
["." name]
["." reference (#+ Register Variable)]
["." phase ("operation@." monad)
["." generation]]]]]
[luxc
[lang
[host
[jvm (#+ Inst Operation)
["_" inst]]]]]
["." //])
(template [<name> <prefix>]
[(def: #export (<name> idx)
(-> Nat Text)
(|> idx %n (format <prefix>)))]
[foreign-name "f"]
[partial-name "p"]
)
(def: (foreign variable)
(-> Register (Operation Inst))
(do phase.monad
[function-class generation.context]
(wrap (|>> (_.ALOAD 0)
(_.GETFIELD function-class
(|> variable .nat foreign-name)
//.$Object)))))
(def: local
(-> Register (Operation Inst))
(|>> _.ALOAD operation@wrap))
(def: #export (variable variable)
(-> Variable (Operation Inst))
(case variable
(#reference.Local variable)
(local variable)
(#reference.Foreign variable)
(foreign variable)))
(def: #export (constant name)
(-> Name (Operation Inst))
(do phase.monad
[bytecode-name (generation.remember name)]
(operation@wrap (_.GETSTATIC bytecode-name //.value-field //.$Object))))
|