blob: 2c37cf101b0c127a4e2a24676e8dfe35c2d8ce69 (
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
|
(.module:
[library
[lux (#- local)
[abstract
[monad (#+ do)]]
[data
[text
["%" format (#+ format)]]]
[target
[jvm
["." type]]]
[tool
[compiler
[reference
["." variable (#+ Register Variable)]]
["." phase ("operation@." monad)]
[meta
[archive (#+ Archive)]]
[language
[lux
["." generation]]]]]]]
[luxc
[lang
[host
[jvm (#+ Inst Operation)
["_" inst]]]]]
["." //
["#." runtime]])
(template [<name> <prefix>]
[(def: .public <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 (\ @ each //.class_name
(generation.context archive))]
(in (|>> (_.ALOAD 0)
(_.GETFIELD (type.class class_name (list))
(|> variable .nat foreign_name)
//.$Value)))))
(def: local
(-> Register Inst)
(|>> _.ALOAD))
(def: .public (variable archive variable)
(-> Archive Variable (Operation Inst))
(case variable
(#variable.Local variable)
(operation@in (local variable))
(#variable.Foreign variable)
(foreign archive variable)))
(def: .public (constant archive name)
(-> Archive Name (Operation Inst))
(do {@ phase.monad}
[class_name (\ @ each //.class_name
(generation.remember archive name))]
(in (_.GETSTATIC (type.class class_name (list)) //.value_field //.$Value))))
|