blob: 3686b9210d6713a6be383dce313a4b4f00cb96f5 (
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
|
(.module:
[lux #*
[control
[monad (#+ do)]]
[data
[text ("text/" Hash<Text>)
format]]
[language
["." name]
["." reference (#+ Register Variable)]
["." compiler ("operation/" Monad<Operation>)
["." translation]]]]
[luxc
[lang
[host
[jvm (#+ Inst Operation)
["$t" type]
["$i" inst]]]]]
["." //])
(do-template [<name> <prefix>]
[(def: #export (<name> idx)
(-> Nat Text)
(|> idx .int %i (format <prefix>)))]
[foreign-name "f"]
[partial-name "p"]
)
(def: (foreign variable)
(-> Register (Operation Inst))
(do compiler.Monad<Operation>
[function-class translation.context]
(wrap (|>> ($i.ALOAD +0)
($i.GETFIELD function-class
(|> variable .nat foreign-name)
//.$Object)))))
(def: local
(-> Register (Operation Inst))
(|>> $i.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 [def-module def-name])
(-> Ident (Operation Inst))
(let [bytecode-name (format def-module "/" (name.normalize def-name) (%n (text/hash def-name)))]
(operation/wrap ($i.GETSTATIC bytecode-name //.value-field //.$Object))))
|