aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/jvm.lux
blob: e5909d3ba4336d1ff8ae61218a9302b9ed0f20b2 (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
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
(.require
 [library
  [lux (.except Type Primitive Label)
   [data
    [collection
     [sequence (.only Sequence)]]]
   [target
    [jvm
     [type (.only Type)
      ["[0]" category (.only Primitive Class Value Method)]]]]]])

(type: .public Literal
  (Variant
   {#Boolean Bit}
   {#Int Int}
   {#Long Int}
   {#Double Frac}
   {#Char Nat}
   {#String Text}))

(type: .public Constant
  (Variant
   {#BIPUSH Int}
   
   {#SIPUSH Int}

   {#ICONST_M1}
   {#ICONST_0}
   {#ICONST_1}
   {#ICONST_2}
   {#ICONST_3}
   {#ICONST_4}
   {#ICONST_5}

   {#LCONST_0}
   {#LCONST_1}
   
   {#FCONST_0}
   {#FCONST_1}
   {#FCONST_2}
   
   {#DCONST_0}
   {#DCONST_1}
   
   {#ACONST_NULL}

   {#LDC Literal}))

(type: .public Int_Arithmetic
  (Variant
   {#IADD}
   {#ISUB}
   {#IMUL}
   {#IDIV}
   {#IREM}
   {#INEG}))

(type: .public Long_Arithmetic
  (Variant
   {#LADD}
   {#LSUB}
   {#LMUL}
   {#LDIV}
   {#LREM}
   {#LNEG}))

(type: .public Float_Arithmetic
  (Variant
   {#FADD}
   {#FSUB}
   {#FMUL}
   {#FDIV}
   {#FREM}
   {#FNEG}))

(type: .public Double_Arithmetic
  (Variant
   {#DADD}
   {#DSUB}
   {#DMUL}
   {#DDIV}
   {#DREM}
   {#DNEG}))

(type: .public Arithmetic
  (Variant
   {#Int_Arithmetic Int_Arithmetic}
   {#Long_Arithmetic Long_Arithmetic}
   {#Float_Arithmetic Float_Arithmetic}
   {#Double_Arithmetic Double_Arithmetic}))

(type: .public Int_Bitwise
  (Variant
   {#IOR}
   {#IXOR}
   {#IAND}
   {#ISHL}
   {#ISHR}
   {#IUSHR}))

(type: .public Long_Bitwise
  (Variant
   {#LOR}
   {#LXOR}
   {#LAND}
   {#LSHL}
   {#LSHR}
   {#LUSHR}))

(type: .public Bitwise
  (Variant
   {#Int_Bitwise Int_Bitwise}
   {#Long_Bitwise Long_Bitwise}))

(type: .public Conversion
  (Variant
   {#I2B}
   {#I2S}
   {#I2L}
   {#I2F}
   {#I2D}
   {#I2C}

   {#L2I}
   {#L2F}
   {#L2D}

   {#F2I}
   {#F2L}
   {#F2D}
   
   {#D2I}
   {#D2L}
   {#D2F}))

(type: .public Array
  (Variant
   {#ARRAYLENGTH}

   {#NEWARRAY (Type Primitive)}
   {#ANEWARRAY (Type category.Object)}

   {#BALOAD}
   {#BASTORE}

   {#SALOAD}
   {#SASTORE}

   {#IALOAD}
   {#IASTORE}

   {#LALOAD}
   {#LASTORE}

   {#FALOAD}
   {#FASTORE}

   {#DALOAD}
   {#DASTORE}
   
   {#CALOAD}
   {#CASTORE}

   {#AALOAD}
   {#AASTORE}))

(type: .public Object
  (Variant
   {#GETSTATIC (Type Class) Text (Type Value)}
   {#PUTSTATIC (Type Class) Text (Type Value)}

   {#NEW (Type Class)}
   
   {#INSTANCEOF (Type Class)}
   {#CHECKCAST (Type category.Object)}

   {#GETFIELD (Type Class) Text (Type Value)}
   {#PUTFIELD (Type Class) Text (Type Value)}
   
   {#INVOKEINTERFACE (Type Class) Text (Type Method)}
   {#INVOKESPECIAL (Type Class) Text (Type Method)}
   {#INVOKESTATIC (Type Class) Text (Type Method)}
   {#INVOKEVIRTUAL (Type Class) Text (Type Method)}))

(type: .public Register
  Nat)

(type: .public Local_Int
  (Variant
   {#ILOAD Register}
   {#ISTORE Register}))

(type: .public Local_Long
  (Variant
   {#LLOAD Register}
   {#LSTORE Register}))

(type: .public Local_Float
  (Variant
   {#FLOAD Register}
   {#FSTORE Register}))

(type: .public Local_Double
  (Variant
   {#DLOAD Register}
   {#DSTORE Register}))

(type: .public Local_Object
  (Variant
   {#ALOAD Register}
   {#ASTORE Register}))

(type: .public Local
  (Variant
   {#Local_Int Local_Int}
   {#IINC Register}
   {#Local_Long Local_Long}
   {#Local_Float Local_Float}
   {#Local_Double Local_Double}
   {#Local_Object Local_Object}))

(type: .public Stack
  (Variant
   {#DUP}
   {#DUP_X1}
   {#DUP_X2}
   {#DUP2}
   {#DUP2_X1}
   {#DUP2_X2}
   {#SWAP}
   {#POP}
   {#POP2}))

(type: .public Comparison
  (Variant
   {#LCMP}
   
   {#FCMPG}
   {#FCMPL}

   {#DCMPG}
   {#DCMPL}))

(type: .public Label
  Nat)

(type: .public (Branching label)
  (Variant
   {#IF_ICMPEQ label}
   {#IF_ICMPGE label}
   {#IF_ICMPGT label}
   {#IF_ICMPLE label}
   {#IF_ICMPLT label}
   {#IF_ICMPNE label}
   {#IFEQ label}
   {#IFNE label}
   {#IFGE label}
   {#IFGT label}
   {#IFLE label}
   {#IFLT label}

   {#TABLESWITCH Int Int label (List label)}
   {#LOOKUPSWITCH label (List [Int label])}

   {#IF_ACMPEQ label}
   {#IF_ACMPNE label}
   {#IFNONNULL label}
   {#IFNULL label}))

(type: .public (Exception label)
  (Variant
   {#Try label label label (Type Class)}
   {#ATHROW}))

(type: .public Concurrency
  (Variant
   {#MONITORENTER}
   {#MONITOREXIT}))

(type: .public Return
  (Variant
   {#RETURN}
   {#IRETURN}
   {#LRETURN}
   {#FRETURN}
   {#DRETURN}
   {#ARETURN}))

(type: .public (Control label)
  (Variant
   {#GOTO label}
   {#Branching (Branching label)}
   {#Exception (Exception label)}
   {#Concurrency Concurrency}
   {#Return Return}))

(type: .public (Instruction embedded label)
  (Variant
   {#NOP}
   {#Constant Constant}
   {#Arithmetic Arithmetic}
   {#Bitwise Bitwise}
   {#Conversion Conversion}
   {#Array Array}
   {#Object Object}
   {#Local Local}
   {#Stack Stack}
   {#Comparison Comparison}
   {#Control (Control label)}
   {#Embedded embedded}))

(type: .public (Bytecode embedded label)
  (Sequence (Instruction embedded label)))