aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/reference.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/reference.jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/reference.jvm.lux31
1 files changed, 31 insertions, 0 deletions
diff --git a/new-luxc/source/luxc/lang/translation/reference.jvm.lux b/new-luxc/source/luxc/lang/translation/reference.jvm.lux
new file mode 100644
index 000000000..7c42f9f08
--- /dev/null
+++ b/new-luxc/source/luxc/lang/translation/reference.jvm.lux
@@ -0,0 +1,31 @@
+(;module:
+ lux
+ (lux (control [monad #+ do])
+ (data text/format)
+ [meta "meta/" Monad<Meta>])
+ (luxc ["&" base]
+ (host ["$" jvm]
+ (jvm ["$t" type]
+ ["$i" inst]))
+ (lang ["ls" synthesis]
+ [";L" variable #+ Variable]
+ (translation [";T" common]
+ [";T" function]))))
+
+(def: #export (generate-captured variable)
+ (-> Variable (Meta $;Inst))
+ (do meta;Monad<Meta>
+ [function-class commonT;function]
+ (wrap (|>. ($i;ALOAD +0)
+ ($i;GETFIELD function-class
+ (|> variable i.inc (i.* -1) int-to-nat functionT;captured)
+ commonT;$Object)))))
+
+(def: #export (generate-variable variable)
+ (-> Variable (Meta $;Inst))
+ (meta/wrap ($i;ALOAD (int-to-nat variable))))
+
+(def: #export (generate-definition [def-module def-name])
+ (-> Ident (Meta $;Inst))
+ (let [bytecode-name (format def-module "/" (&;normalize-name def-name))]
+ (meta/wrap ($i;GETSTATIC bytecode-name commonT;value-field commonT;$Object))))