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