aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Julian2017-06-30 18:43:07 -0400
committerEduardo Julian2017-06-30 18:43:07 -0400
commita79927892174c3564c83a0e741e5cc0aaaeeb37c (patch)
tree780936163414dd6105cf00bb5debb8ee9a7a518a
parent36cf0c61991bda395e224fa2d435fa6b6f5090e5 (diff)
- WIP: Added generation for common procedures.
-rw-r--r--new-luxc/source/luxc/analyser/procedure/common.lux5
-rw-r--r--new-luxc/source/luxc/generator/common.jvm.lux3
-rw-r--r--new-luxc/source/luxc/generator/expr.jvm.lux6
-rw-r--r--new-luxc/source/luxc/generator/host/jvm.lux85
-rw-r--r--new-luxc/source/luxc/generator/host/jvm/def.lux146
-rw-r--r--new-luxc/source/luxc/generator/host/jvm/inst.lux151
-rw-r--r--new-luxc/source/luxc/generator/primitive.jvm.lux13
-rw-r--r--new-luxc/source/luxc/generator/procedure.jvm.lux19
-rw-r--r--new-luxc/source/luxc/generator/procedure/common.jvm.lux721
-rw-r--r--new-luxc/source/luxc/generator/runtime.jvm.lux8
-rw-r--r--new-luxc/source/luxc/generator/structure.jvm.lux5
-rw-r--r--new-luxc/test/test/luxc/generator/primitive.lux3
-rw-r--r--new-luxc/test/test/luxc/generator/structure.lux2
13 files changed, 1120 insertions, 47 deletions
diff --git a/new-luxc/source/luxc/analyser/procedure/common.lux b/new-luxc/source/luxc/analyser/procedure/common.lux
index 303cdc61c..e96874960 100644
--- a/new-luxc/source/luxc/analyser/procedure/common.lux
+++ b/new-luxc/source/luxc/analyser/procedure/common.lux
@@ -169,7 +169,7 @@
(install "deg =" (binary-operation Deg Deg Bool))
(install "deg <" (binary-operation Deg Deg Bool))
(install "deg scale" (binary-operation Deg Nat Deg))
- (install "deg reciprocal" (unary-operation Nat Deg))
+ (install "deg reciprocal" (binary-operation Deg Nat Deg))
(install "deg min" (special-value Deg))
(install "deg max" (special-value Deg))
(install "deg to-real" (converter Deg Real))))
@@ -204,8 +204,7 @@
(install "text index" (trinary-operation Text Text Nat (type (Maybe Nat))))
(install "text size" (unary-operation Text Nat))
(install "text hash" (unary-operation Text Nat))
- (install "text replace-once" (trinary-operation Text Text Text Text))
- (install "text replace-all" (trinary-operation Text Text Text Text))
+ (install "text replace" (trinary-operation Text Text Text Text))
(install "text char" (binary-operation Text Nat Nat))
(install "text clip" (trinary-operation Text Nat Nat Text))
))
diff --git a/new-luxc/source/luxc/generator/common.jvm.lux b/new-luxc/source/luxc/generator/common.jvm.lux
index 2c943c5e5..0dd19d032 100644
--- a/new-luxc/source/luxc/generator/common.jvm.lux
+++ b/new-luxc/source/luxc/generator/common.jvm.lux
@@ -27,8 +27,6 @@
{#loader ClassLoader
#store Class-Store})
-(def: #export unit Text "\u0000")
-
(def: #export (store-class name byte-code)
(-> Text Bytecode (Lux Unit))
(function [compiler]
@@ -50,4 +48,3 @@
(#R;Error (format "Unknown class: " name))))))
(def: #export bytecode-version Int Opcodes.V1_6)
-(def: #export runtime-class-name Text "LuxRT")
diff --git a/new-luxc/source/luxc/generator/expr.jvm.lux b/new-luxc/source/luxc/generator/expr.jvm.lux
index 7a99ecc18..32291317f 100644
--- a/new-luxc/source/luxc/generator/expr.jvm.lux
+++ b/new-luxc/source/luxc/generator/expr.jvm.lux
@@ -10,6 +10,7 @@
["&;" primitive]
["&;" structure]
["&;" eval]
+ ["&;" procedure]
(host ["$" jvm]))))
(def: #export (generate synthesis)
@@ -34,7 +35,10 @@
(#ls;Tuple members)
(&structure;generate-tuple generate members)
-
+
+ (#ls;Procedure name args)
+ (&procedure;generate-procedure generate name args)
+
_
(macro;fail "Unrecognized synthesis.")))
diff --git a/new-luxc/source/luxc/generator/host/jvm.lux b/new-luxc/source/luxc/generator/host/jvm.lux
index f1eb61166..d67b6ef91 100644
--- a/new-luxc/source/luxc/generator/host/jvm.lux
+++ b/new-luxc/source/luxc/generator/host/jvm.lux
@@ -1,12 +1,21 @@
(;module:
[lux #- Type Def]
- (lux [host #+ jvm-import]))
+ (lux (control monad
+ ["p" parser])
+ (data (coll [list "L/" Functor<List>]))
+ [macro]
+ (macro [code]
+ ["s" syntax #+ syntax:])
+ [host #+ jvm-import]))
## [Host]
(jvm-import org.objectweb.asm.MethodVisitor)
(jvm-import org.objectweb.asm.ClassWriter)
+(jvm-import #long org.objectweb.asm.Label
+ (new []))
+
## [Type]
(type: #export Bound
#Upper
@@ -27,6 +36,12 @@
(#Wildcard (Maybe [Bound Generic]))
(#Class Text (List Generic)))
+(type: #export Class
+ [Text (List Generic)])
+
+(type: #export Parameter
+ [Text Class (List Class)])
+
(type: #export #rec Type
(#Primitive Primitive)
(#Generic Generic)
@@ -43,19 +58,69 @@
(type: #export Inst
(-> MethodVisitor MethodVisitor))
+(type: #export Label
+ org.objectweb.asm.Label)
+
+(type: #export Register Nat)
+
(type: #export Visibility
#Public
#Protected
#Private
#Default)
-(type: #export Method-Config
- {#staticM Bool
- #finalM Bool
- #synchronizedM Bool})
+(type: #export Version
+ #V1.1
+ #V1.2
+ #V1.3
+ #V1.4
+ #V1.5
+ #V1.6
+ #V1.7
+ #V1.8)
+
+## [Values]
+(syntax: (config: [type s;local-symbol]
+ [none s;local-symbol]
+ [++ s;local-symbol]
+ [options (s;tuple (p;many s;local-symbol))])
+ (let [g!type (code;local-symbol type)
+ g!none (code;local-symbol none)
+ g!tags+ (L/map code;local-tag options)
+ g!_left (code;local-symbol "_left")
+ g!_right (code;local-symbol "_right")
+ g!options+ (L/map (function [option]
+ (` (def: (~' #export) (~ (code;local-symbol option))
+ (~ g!type)
+ (|> (~ g!none)
+ (set@ (~ (code;local-tag option)) true)))))
+ options)]
+ (wrap (list& (` (type: (~' #export) (~ g!type)
+ (~ (code;record (L/map (function [tag]
+ [tag (` ;Bool)])
+ g!tags+)))))
+
+ (` (def: (~' #export) (~ g!none)
+ (~ g!type)
+ (~ (code;record (L/map (function [tag]
+ [tag (` false)])
+ g!tags+)))))
+
+ (` (def: (~' #export) ((~ (code;local-symbol ++)) (~ g!_left) (~ g!_right))
+ (-> (~ g!type) (~ g!type) (~ g!type))
+ (~ (code;record (L/map (function [tag]
+ [tag (` (and (get@ (~ tag) (~ g!_left))
+ (get@ (~ tag) (~ g!_right))))])
+ g!tags+)))))
+
+ g!options+))))
+
+## Configs
+(config: Class-Config noneC ++C [finalC])
+(config: Method-Config noneM ++M [staticM finalM synchronizedM])
+(config: Field-Config noneF ++F [staticF finalF transientF volatileF])
-(type: #export Field-Config
- {#staticF Bool
- #finalF Bool
- #transientF Bool
- #volatileF Bool})
+## Labels
+(def: #export new-label
+ (-> Unit Label)
+ org.objectweb.asm.Label.new)
diff --git a/new-luxc/source/luxc/generator/host/jvm/def.lux b/new-luxc/source/luxc/generator/host/jvm/def.lux
index 1fd87caea..39fab2f2a 100644
--- a/new-luxc/source/luxc/generator/host/jvm/def.lux
+++ b/new-luxc/source/luxc/generator/host/jvm/def.lux
@@ -1,6 +1,8 @@
(;module:
lux
- (lux (data (coll ["a" array]
+ (lux (data [text]
+ text/format
+ (coll ["a" array]
[list "L/" Functor<List>]))
[host #+ jvm-import do-to])
["$" ..]
@@ -15,13 +17,26 @@
(#static ACC_PROTECTED int)
(#static ACC_PRIVATE int)
+ (#static ACC_TRANSIENT int)
+ (#static ACC_VOLATILE int)
+
(#static ACC_ABSTRACT int)
(#static ACC_FINAL int)
(#static ACC_STATIC int)
(#static ACC_SYNCHRONIZED int)
- (#static ACC_TRANSIENT int)
- (#static ACC_VOLATILE int))
+ (#static ACC_SUPER int)
+ (#static ACC_INTERFACE int)
+
+ (#static V1_1 int)
+ (#static V1_2 int)
+ (#static V1_3 int)
+ (#static V1_4 int)
+ (#static V1_5 int)
+ (#static V1_6 int)
+ (#static V1_7 int)
+ (#static V1_8 int)
+ )
(jvm-import org.objectweb.asm.FieldVisitor
(visitEnd [] void))
@@ -41,15 +56,32 @@
(toByteArray [] Byte-Array))
## [Defs]
-(def: (exceptions-array type)
- (-> $;Method (a;Array Text))
- (let [exs (|> type (get@ #$;exceptions) (L/map (|>. #$;Generic $t;descriptor)))
- output (host;array String (list;size exs))]
+(def: (string-array values)
+ (-> (List Text) (a;Array Text))
+ (let [output (host;array String (list;size values))]
(exec (L/map (function [[idx value]]
(host;array-store idx value output))
- (list;enumerate exs))
+ (list;enumerate values))
output)))
+(def: exceptions-array
+ (-> $;Method (a;Array Text))
+ (|>. (get@ #$;exceptions)
+ (L/map (|>. #$;Generic $t;descriptor))
+ string-array))
+
+(def: (version-flag version)
+ (-> $;Version Int)
+ (case version
+ #$;V1.1 Opcodes.V1_1
+ #$;V1.2 Opcodes.V1_2
+ #$;V1.3 Opcodes.V1_3
+ #$;V1.4 Opcodes.V1_4
+ #$;V1.5 Opcodes.V1_5
+ #$;V1.6 Opcodes.V1_6
+ #$;V1.7 Opcodes.V1_7
+ #$;V1.8 Opcodes.V1_8))
+
(def: (visibility-flag visibility)
(-> $;Visibility Int)
(case visibility
@@ -58,6 +90,11 @@
#$;Private Opcodes.ACC_PRIVATE
#$;Default 0))
+(def: (class-flag config)
+ (-> $;Class-Config Int)
+ ($_ i.+
+ (if (get@ #$;finalC config) Opcodes.ACC_FINAL 0)))
+
(def: (method-flag config)
(-> $;Method-Config Int)
($_ i.+
@@ -73,6 +110,87 @@
(if (get@ #$;transientF config) Opcodes.ACC_TRANSIENT 0)
(if (get@ #$;volatileF config) Opcodes.ACC_VOLATILE 0)))
+(def: class-to-type
+ (-> $;Class $;Type)
+ (|>. #$;Class #$;Generic))
+
+(def: param-signature
+ (-> $;Class Text)
+ (|>. class-to-type $t;signature (format ":")))
+
+(def: (formal-param [name super interfaces])
+ (-> $;Parameter Text)
+ (format name
+ (param-signature super)
+ (|> interfaces
+ (L/map param-signature)
+ (text;join-with ""))))
+
+(def: (parameters-signature parameters super interfaces)
+ (-> (List $;Parameter) $;Class (List $;Class)
+ Text)
+ (let [formal-params (if (list;empty? parameters)
+ ""
+ (format "<"
+ (|> parameters
+ (L/map formal-param)
+ (text;join-with ""))
+ ">"))]
+ (format formal-params
+ (|> super class-to-type $t;signature)
+ (|> interfaces
+ (L/map (|>. class-to-type $t;signature))
+ (text;join-with "")))))
+
+(do-template [<name> <flag>]
+ [(def: #export (<name> version visibility config name parameters super interfaces
+ definitions)
+ (-> $;Version $;Visibility $;Class-Config Text (List $;Parameter) $;Class (List $;Class) $;Def
+ host;Byte-Array)
+ (let [writer (|> (do-to (ClassWriter.new ClassWriter.COMPUTE_MAXS)
+ (ClassWriter.visit [(version-flag version)
+ ($_ i.+
+ Opcodes.ACC_SUPER
+ <flag>
+ (visibility-flag visibility)
+ (class-flag config))
+ name
+ (parameters-signature parameters super interfaces)
+ (|> super class-to-type $t;descriptor)
+ (|> interfaces
+ (L/map (|>. class-to-type $t;descriptor))
+ string-array)]))
+ definitions)
+ _ (ClassWriter.visitEnd [] writer)]
+ (ClassWriter.toByteArray [] writer)))]
+
+ [class 0]
+ [abstract Opcodes.ACC_ABSTRACT]
+ )
+
+(def: $Object $;Class ["java.lang.Object" (list)])
+
+(def: #export (interface version visibility config name parameters interfaces
+ definitions)
+ (-> $;Version $;Visibility $;Class-Config Text (List $;Parameter) (List $;Class) $;Def
+ host;Byte-Array)
+ (let [writer (|> (do-to (ClassWriter.new ClassWriter.COMPUTE_MAXS)
+ (ClassWriter.visit [(version-flag version)
+ ($_ i.+
+ Opcodes.ACC_SUPER
+ Opcodes.ACC_INTERFACE
+ (visibility-flag visibility)
+ (class-flag config))
+ name
+ (parameters-signature parameters $Object interfaces)
+ (|> $Object class-to-type $t;descriptor)
+ (|> interfaces
+ (L/map (|>. class-to-type $t;descriptor))
+ string-array)]))
+ definitions)
+ _ (ClassWriter.visitEnd [] writer)]
+ (ClassWriter.toByteArray [] writer)))
+
(def: #export (method visibility config name type then)
(-> $;Visibility $;Method-Config Text $;Method $;Inst
$;Def)
@@ -140,3 +258,15 @@
[char-field Char $t;char id]
[string-field Text ($t;class "java.lang.String" (list)) id]
)
+
+(def: #export (fuse defs)
+ (-> (List $;Def) $;Def)
+ (case defs
+ #;Nil
+ id
+
+ (#;Cons singleton #;Nil)
+ singleton
+
+ (#;Cons head tail)
+ (. head (fuse tail))))
diff --git a/new-luxc/source/luxc/generator/host/jvm/inst.lux b/new-luxc/source/luxc/generator/host/jvm/inst.lux
index f340be055..82b360883 100644
--- a/new-luxc/source/luxc/generator/host/jvm/inst.lux
+++ b/new-luxc/source/luxc/generator/host/jvm/inst.lux
@@ -18,25 +18,80 @@
(#static T_INT int)
(#static T_LONG int)
+ (#static CHECKCAST int)
+ (#static NEW int)
+ (#static NEWARRAY int)
+ (#static ANEWARRAY int)
+
(#static DUP int)
- (#static RETURN int)
- (#static ARETURN int)
+ (#static DUP2_X1 int)
+ (#static POP int)
+ (#static POP2 int)
+
+ (#static IF_ICMPEQ int)
+ (#static IF_ACMPEQ int)
+ (#static IFNULL int)
+ (#static GOTO int)
+
(#static ACONST_NULL int)
+
(#static ILOAD int)
(#static ALOAD int)
- (#static NEWARRAY int)
- (#static ANEWARRAY int)
+
+ (#static IADD int)
+
+ (#static LAND int)
+ (#static LOR int)
+ (#static LXOR int)
+ (#static LSHL int)
+ (#static LSHR int)
+ (#static LUSHR int)
+
+ (#static LADD int)
+ (#static LSUB int)
+ (#static LMUL int)
+ (#static LDIV int)
+ (#static LREM int)
+ (#static LCMP int)
+
+ (#static DADD int)
+ (#static DSUB int)
+ (#static DMUL int)
+ (#static DDIV int)
+ (#static DREM int)
+ (#static DCMPG int)
+
+ (#static I2L int)
+ (#static L2I int)
+ (#static L2D int)
+ (#static D2L int)
+ (#static I2C int)
+
+ (#static AALOAD int)
(#static AASTORE int)
+ (#static ARRAYLENGTH int)
+
+ (#static GETSTATIC int)
(#static PUTSTATIC int)
(#static GETFIELD int)
+ (#static PUTFIELD int)
+
(#static INVOKESTATIC int)
- (#static INVOKEVIRTUAL int)
(#static INVOKESPECIAL int)
- (#static CHECKCAST int))
+ (#static INVOKEVIRTUAL int)
+
+ (#static ATHROW int)
+
+ (#static RETURN int)
+ (#static ARETURN int)
+ )
(jvm-import org.objectweb.asm.FieldVisitor
(visitEnd [] void))
+(jvm-import org.objectweb.asm.Label
+ (new []))
+
(jvm-import org.objectweb.asm.MethodVisitor
(visitCode [] void)
(visitMaxs [int int] void)
@@ -47,9 +102,15 @@
(visitTypeInsn [int String] void)
(visitVarInsn [int int] void)
(visitIntInsn [int int] void)
- (visitMethodInsn [int String String String boolean] void))
+ (visitMethodInsn [int String String String boolean] void)
+ (visitLabel [Label] void)
+ (visitJumpInsn [int Label] void))
## [Insts]
+(def: #export (with-label action)
+ (-> (-> Label $;Inst) $;Inst)
+ (action (Label.new [])))
+
(do-template [<name> <type> <prepare>]
[(def: #export (<name> value)
(-> <type> $;Inst)
@@ -72,11 +133,50 @@
(do-to visitor
(MethodVisitor.visitInsn [<inst>]))))]
- [RETURN Opcodes.RETURN]
- [ARETURN Opcodes.ARETURN]
- [NULL Opcodes.ACONST_NULL]
- [DUP Opcodes.DUP]
- [AASTORE Opcodes.AASTORE]
+ [DUP Opcodes.DUP]
+ [DUP2_X1 Opcodes.DUP2_X1]
+ [POP Opcodes.POP]
+ [POP2 Opcodes.POP2]
+
+ [NULL Opcodes.ACONST_NULL]
+
+ [IADD Opcodes.IADD]
+
+ [LAND Opcodes.LAND]
+ [LOR Opcodes.LOR]
+ [LXOR Opcodes.LXOR]
+ [LSHL Opcodes.LSHL]
+ [LSHR Opcodes.LSHR]
+ [LUSHR Opcodes.LUSHR]
+
+ [LADD Opcodes.LADD]
+ [LSUB Opcodes.LSUB]
+ [LMUL Opcodes.LMUL]
+ [LDIV Opcodes.LDIV]
+ [LREM Opcodes.LREM]
+ [LCMP Opcodes.LCMP]
+
+ [DADD Opcodes.DADD]
+ [DSUB Opcodes.DSUB]
+ [DMUL Opcodes.DMUL]
+ [DDIV Opcodes.DDIV]
+ [DREM Opcodes.DREM]
+ [DCMPG Opcodes.DCMPG]
+
+ [I2L Opcodes.I2L]
+ [L2I Opcodes.L2I]
+ [L2D Opcodes.L2D]
+ [D2L Opcodes.D2L]
+ [I2C Opcodes.I2C]
+
+ [AALOAD Opcodes.AALOAD]
+ [AASTORE Opcodes.AASTORE]
+ [ARRAYLENGTH Opcodes.ARRAYLENGTH]
+
+ [ATHROW Opcodes.ATHROW]
+
+ [RETURN Opcodes.RETURN]
+ [ARETURN Opcodes.ARETURN]
)
(do-template [<name> <inst>]
@@ -97,7 +197,11 @@
(do-to visitor
(MethodVisitor.visitFieldInsn [<inst> ($t;binary-name class) field ($t;descriptor type)]))))]
+ [GETSTATIC Opcodes.GETSTATIC]
[PUTSTATIC Opcodes.PUTSTATIC]
+
+ [PUTFIELD Opcodes.PUTFIELD]
+ [GETFIELD Opcodes.GETFIELD]
)
(do-template [<name> <inst>]
@@ -107,8 +211,9 @@
(do-to visitor
(MethodVisitor.visitTypeInsn [<inst> ($t;binary-name class)]))))]
- [ANEWARRAY Opcodes.ANEWARRAY]
[CHECKCAST Opcodes.CHECKCAST]
+ [NEW Opcodes.NEW]
+ [ANEWARRAY Opcodes.ANEWARRAY]
)
(def: #export (NEWARRAY type)
@@ -134,8 +239,28 @@
[INVOKESTATIC Opcodes.INVOKESTATIC]
[INVOKEVIRTUAL Opcodes.INVOKEVIRTUAL]
+ [INVOKESPECIAL Opcodes.INVOKESPECIAL]
)
+(do-template [<name> <inst>]
+ [(def: #export (<name> @where)
+ (-> $;Label $;Inst)
+ (function [visitor]
+ (do-to visitor
+ (MethodVisitor.visitJumpInsn [<inst> @where]))))]
+
+ [IF_ICMPEQ Opcodes.IF_ICMPEQ]
+ [IF_ACMPEQ Opcodes.IF_ACMPEQ]
+ [IFNULL Opcodes.IFNULL]
+ [GOTO Opcodes.GOTO]
+ )
+
+(def: #export (label @label)
+ (-> $;Label $;Inst)
+ (function [visitor]
+ (do-to visitor
+ (MethodVisitor.visitLabel [@label]))))
+
(def: #export (array type size)
(-> $;Type Nat $;Inst)
(case type
diff --git a/new-luxc/source/luxc/generator/primitive.jvm.lux b/new-luxc/source/luxc/generator/primitive.jvm.lux
index 18ce2e24a..c444f791d 100644
--- a/new-luxc/source/luxc/generator/primitive.jvm.lux
+++ b/new-luxc/source/luxc/generator/primitive.jvm.lux
@@ -10,18 +10,25 @@
["&;" synthesizer]
(generator ["&;" common]
(host ["$" jvm]
- (jvm ["$i" inst])))))
+ (jvm ["$i" inst]
+ ["$t" type]))))
+ [../runtime])
(def: #export generate-unit
(Lux $;Inst)
- (Lux/wrap ($i;string &common;unit)))
+ (Lux/wrap ($i;string ../runtime;unit)))
+
+(def: #export (generate-bool value)
+ (-> Bool (Lux $;Inst))
+ (Lux/wrap ($i;GETSTATIC "java.lang.Boolean"
+ (if value "TRUE" "FALSE")
+ ($t;class "java.lang.Boolean" (list)))))
(do-template [<name> <type> <load> <wrap>]
[(def: #export (<name> value)
(-> <type> (Lux $;Inst))
(Lux/wrap (|>. (<load> value) <wrap>)))]
- [generate-bool Bool $i;boolean $i;wrap-boolean]
[generate-nat Nat (|>. (:! Int) $i;long) $i;wrap-long]
[generate-int Int $i;long $i;wrap-long]
[generate-deg Deg (|>. (:! Int) $i;long) $i;wrap-long]
diff --git a/new-luxc/source/luxc/generator/procedure.jvm.lux b/new-luxc/source/luxc/generator/procedure.jvm.lux
new file mode 100644
index 000000000..258d90689
--- /dev/null
+++ b/new-luxc/source/luxc/generator/procedure.jvm.lux
@@ -0,0 +1,19 @@
+
+(;module:
+ lux
+ (lux (control monad)
+ (data text/format
+ maybe
+ (coll ["d" dict])))
+ (luxc ["&" base]
+ (lang ["ls" synthesis])
+ (generator (procedure ["&&;" common])
+ (host ["$" jvm]))))
+
+(def: #export (generate-procedure generate name args)
+ (-> (-> ls;Synthesis (Lux $;Inst)) Text (List ls;Synthesis)
+ (Lux $;Inst))
+ (default (&;fail (format "Unknown procedure: " (%t name)))
+ (do Monad<Maybe>
+ [proc (d;get name &&common;procedures)]
+ (wrap (proc generate args)))))
diff --git a/new-luxc/source/luxc/generator/procedure/common.jvm.lux b/new-luxc/source/luxc/generator/procedure/common.jvm.lux
new file mode 100644
index 000000000..957a2efa4
--- /dev/null
+++ b/new-luxc/source/luxc/generator/procedure/common.jvm.lux
@@ -0,0 +1,721 @@
+(;module:
+ lux
+ (lux (control monad)
+ (data [text]
+ text/format
+ (coll [list "L/" Functor<List> Monoid<List>]
+ ["D" dict]))
+ [macro #+ Monad<Lux> with-gensyms]
+ (macro [code]
+ ["s" syntax #+ syntax:])
+ [host #+ jvm-import])
+ (luxc ["&" base]
+ (lang ["la" analysis]
+ ["ls" synthesis])
+ ["&;" analyser]
+ ["&;" synthesizer]
+ (synthesizer [function])
+ (generator ["&;" common]
+ ["&;" runtime]
+ (host ["$" jvm]
+ (jvm ["$t" type]
+ ["$d" def]
+ ["$i" inst])))))
+
+(jvm-import java.lang.Long
+ (#static MIN_VALUE Long)
+ (#static MAX_VALUE Long))
+
+(jvm-import java.lang.Double
+ (#static MIN_VALUE Double)
+ (#static MAX_VALUE Double)
+ (#static NaN Double)
+ (#static POSITIVE_INFINITY Double)
+ (#static NEGATIVE_INFINITY Double))
+
+## [Types]
+(type: Generator
+ (-> ls;Synthesis (Lux $;Inst)))
+
+(type: Proc
+ (-> Generator (List ls;Synthesis) (Lux $;Inst)))
+
+(type: Bundle
+ (D;Dict Text Proc))
+
+(syntax: (Vector [size s;nat] elemT)
+ (wrap (list (` [(~@ (list;repeat size elemT))]))))
+
+(type: Nullary (-> (Vector +0 $;Inst) $;Inst))
+(type: Unary (-> (Vector +1 $;Inst) $;Inst))
+(type: Binary (-> (Vector +2 $;Inst) $;Inst))
+(type: Trinary (-> (Vector +3 $;Inst) $;Inst))
+
+## [Utils]
+(def: $Object $;Type ($t;class "java.lang.Object" (list)))
+(def: $Object-Array $;Type ($t;array +1 $Object))
+(def: $String $;Type ($t;class "java.lang.String" (list)))
+(def: $CharSequence $;Type ($t;class "java.lang.CharSequence" (list)))
+(def: $Function $;Type ($t;class &runtime;function-name (list)))
+
+(def: (install name unnamed)
+ (-> Text (-> Text Proc)
+ (-> Bundle Bundle))
+ (D;put name (unnamed name)))
+
+(def: (wrong-amount-error proc expected actual)
+ (-> Text Nat Nat Text)
+ (format "Wrong number of arguments for " (%t proc) "\n"
+ "Expected: " (|> expected nat-to-int %i) "\n"
+ " Actual: " (|> actual nat-to-int %i)))
+
+(syntax: (arity: [name s;local-symbol] [arity s;nat])
+ (with-gensyms [g!proc g!name g!generate g!inputs]
+ (do @
+ [g!input+ (seqM @ (list;repeat arity (macro;gensym "input")))]
+ (wrap (list (` (def: ((~ (code;local-symbol name)) (~ g!proc))
+ (-> (-> (Vector (~ (code;nat arity)) $;Inst) $;Inst)
+ (-> Text Proc))
+ (function [(~ g!name)]
+ (function [(~ g!generate) (~ g!inputs)]
+ (case (~ g!inputs)
+ (^ (list (~@ g!input+)))
+ (do macro;Monad<Lux>
+ [(~@ (|> g!input+
+ (L/map (function [g!input]
+ (list g!input (` ((~ g!generate) (~ g!input))))))
+ list;concat))]
+ ((~' wrap) ((~ g!proc) [(~@ g!input+)])))
+
+ (~' _)
+ (macro;fail (wrong-amount-error (~ g!name) +1 (list;size (~ g!inputs))))))))))))))
+
+(arity: nullary +0)
+(arity: unary +1)
+(arity: binary +2)
+(arity: trinary +3)
+
+## [Instructions]
+(def: some-method
+ $;Method
+ ($t;method (list $t;int $Object $Object) (#;Some $Object-Array) (list)))
+
+(def: make-someI
+ $;Inst
+ (|>. ($i;int 1)
+ ($i;string "")
+ $i;DUP2_X1
+ $i;POP2
+ ($i;INVOKESTATIC &runtime;runtime-name "sum_make" some-method false)))
+
+(def: make-noneI
+ $;Inst
+ (|>. ($i;int 9)
+ $i;NULL
+ ($i;string &runtime;unit)
+ ($i;INVOKESTATIC &runtime;runtime-name "sum_make" some-method false)))
+
+(def: lux-intI $;Inst (|>. $i;I2L $i;wrap-long))
+(def: jvm-intI $;Inst (|>. $i;unwrap-long $i;L2I))
+
+(def: (array-writeI arrayI idxI elemI)
+ (-> $;Inst $;Inst $;Inst
+ $;Inst)
+ (|>. arrayI ($i;CHECKCAST ($t;descriptor $Object-Array))
+ $i;DUP
+ idxI jvm-intI
+ elemI
+ $i;AASTORE))
+
+(def: (predicateI tester)
+ (-> (-> $;Label $;Inst)
+ $;Inst)
+ (<| $i;with-label (function [@then])
+ $i;with-label (function [@end])
+ (|>. (tester @then)
+ ($i;GETSTATIC "java.lang.Boolean" "FALSE" ($t;class "java.lang.Boolean" (list)))
+ ($i;GOTO @end)
+ ($i;label @then)
+ ($i;GETSTATIC "java.lang.Boolean" "TRUE" ($t;class "java.lang.Boolean" (list)))
+ ($i;label @end)
+ )))
+
+## [Procedures]
+## [[Lux]]
+(def: (lux//is [leftI rightI])
+ Binary
+ (|>. leftI
+ rightI
+ (predicateI $i;IF_ACMPEQ)))
+
+(def: try-method
+ $;Method
+ ($t;method (list $Function) (#;Some $Object-Array) (list)))
+(def: (lux//try riskyI)
+ Unary
+ (|>. riskyI
+ ($i;CHECKCAST &runtime;function-name)
+ ($i;INVOKESTATIC &runtime;runtime-name "try" try-method false)))
+
+## [[Bits]]
+(do-template [<name> <op>]
+ [(def: (<name> [inputI maskI])
+ Binary
+ (|>. inputI $i;unwrap-long
+ maskI $i;unwrap-long
+ <op> $i;wrap-long))]
+
+ [bit//and $i;LAND]
+ [bit//or $i;LOR]
+ [bit//xor $i;LXOR]
+ )
+
+(def: (bit//count inputI)
+ Unary
+ (|>. inputI
+ ($i;INVOKESTATIC "java.lang.Long" "bitCount" ($t;method (list $t;long) (#;Some $t;int) (list)) false)
+ lux-intI))
+
+(do-template [<name> <op>]
+ [(def: (<name> [inputI shiftI])
+ Binary
+ (|>. inputI $i;unwrap-long
+ shiftI jvm-intI
+ <op>
+ $i;wrap-long))]
+
+ [bit//shift-left $i;LSHL]
+ [bit//shift-right $i;LSHR]
+ [bit//unsigned-shift-right $i;LUSHR]
+ )
+
+## [[Arrays]]
+(def: (array//new lengthI)
+ Unary
+ (|>. lengthI jvm-intI ($i;ANEWARRAY ($t;descriptor $Object))))
+
+(def: (array//get [arrayI idxI])
+ Binary
+ (<| $i;with-label (function [@is-null])
+ $i;with-label (function [@end])
+ (|>. arrayI ($i;CHECKCAST ($t;descriptor $Object-Array))
+ idxI jvm-intI
+ $i;AALOAD
+ $i;DUP
+ ($i;IFNULL @is-null)
+ make-someI
+ ($i;GOTO @end)
+ ($i;label @is-null)
+ $i;POP
+ make-noneI
+ ($i;label @end))))
+
+(def: (array//put [arrayI idxI elemI])
+ Trinary
+ (array-writeI arrayI idxI elemI))
+
+(def: (array//remove [arrayI idxI])
+ Binary
+ (array-writeI arrayI idxI $i;NULL))
+
+(def: (array//size arrayI)
+ Unary
+ (|>. arrayI ($i;CHECKCAST ($t;descriptor $Object-Array))
+ $i;ARRAYLENGTH
+ lux-intI))
+
+## [[Numbers]]
+(def: nat-method
+ $;Method
+ ($t;method (list $t;long $t;long) (#;Some $t;long) (list)))
+
+(def: deg-method $;Method nat-method)
+
+(def: compare-unsigned-method
+ $;Method
+ ($t;method (list $t;long $t;long) (#;Some $t;int) (list)))
+
+(do-template [<name> <const> <wrapper>]
+ [(def: (<name> _)
+ Nullary
+ (|>. <const> <wrapper>))]
+
+ [nat//min ($i;long 0) $i;wrap-long]
+ [nat//max ($i;long -1) $i;wrap-long]
+
+ [int//min ($i;long Long.MIN_VALUE) $i;wrap-long]
+ [int//max ($i;long Long.MAX_VALUE) $i;wrap-long]
+
+ [real//smallest ($i;double Double.MIN_VALUE) $i;wrap-double]
+ [real//min ($i;double (r.* -1.0 Double.MAX_VALUE)) $i;wrap-double]
+ [real//max ($i;double Double.MAX_VALUE) $i;wrap-double]
+ [real//not-a-number ($i;double Double.NaN) $i;wrap-double]
+ [real//positive-infinity ($i;double Double.POSITIVE_INFINITY) $i;wrap-double]
+ [real//negative-infinity ($i;double Double.NEGATIVE_INFINITY) $i;wrap-double]
+
+ [deg//min ($i;long 0) $i;wrap-long]
+ [deg//max ($i;long -1) $i;wrap-long]
+ )
+
+(do-template [<name> <unwrap> <wrap> <op>]
+ [(def: (<name> [subjectI paramI])
+ Binary
+ (|>. subjectI <unwrap>
+ paramI <unwrap>
+ <op>
+ <wrap>))]
+
+ [int//add $i;unwrap-long $i;wrap-long $i;LADD]
+ [int//sub $i;unwrap-long $i;wrap-long $i;LSUB]
+ [int//mul $i;unwrap-long $i;wrap-long $i;LMUL]
+ [int//div $i;unwrap-long $i;wrap-long $i;LDIV]
+ [int//rem $i;unwrap-long $i;wrap-long $i;LREM]
+
+ [nat//add $i;unwrap-long $i;wrap-long $i;LADD]
+ [nat//sub $i;unwrap-long $i;wrap-long $i;LSUB]
+ [nat//mul $i;unwrap-long $i;wrap-long $i;LMUL]
+ [nat//div $i;unwrap-long $i;wrap-long
+ ($i;INVOKESTATIC &runtime;runtime-name "div_nat" nat-method false)]
+ [nat//rem $i;unwrap-long $i;wrap-long
+ ($i;INVOKESTATIC &runtime;runtime-name "rem_nat" nat-method false)]
+
+ [real//add $i;unwrap-double $i;wrap-double $i;DADD]
+ [real//sub $i;unwrap-double $i;wrap-double $i;DSUB]
+ [real//mul $i;unwrap-double $i;wrap-double $i;DMUL]
+ [real//div $i;unwrap-double $i;wrap-double $i;DDIV]
+ [real//rem $i;unwrap-double $i;wrap-double $i;DREM]
+
+ [deg//add $i;unwrap-long $i;wrap-long $i;LADD]
+ [deg//sub $i;unwrap-long $i;wrap-long $i;LSUB]
+ [deg//mul $i;unwrap-long $i;wrap-long
+ ($i;INVOKESTATIC &runtime;runtime-name "mul_deg" deg-method false)]
+ [deg//div $i;unwrap-long $i;wrap-long
+ ($i;INVOKESTATIC &runtime;runtime-name "div_deg" deg-method false)]
+ [deg//rem $i;unwrap-long $i;wrap-long $i;LSUB]
+ [deg//scale $i;unwrap-long $i;wrap-long $i;LMUL]
+ [deg//reciprocal $i;unwrap-long $i;wrap-long $i;LDIV]
+ )
+
+(do-template [<name> <reference> <unwrap> <cmp>]
+ [(def: (<name> [subjectI paramI])
+ Binary
+ (|>. subjectI <unwrap>
+ paramI <unwrap>
+ <cmp>
+ ($i;int <reference>)
+ (predicateI $i;IF_ICMPEQ)))]
+
+ [nat//eq 0 $i;unwrap-long ($i;INVOKESTATIC &runtime;runtime-name "compareUnsigned" compare-unsigned-method false)]
+ [nat//lt -1 $i;unwrap-long ($i;INVOKESTATIC &runtime;runtime-name "compareUnsigned" compare-unsigned-method false)]
+
+ [int//eq 0 $i;unwrap-long $i;LCMP]
+ [int//lt -1 $i;unwrap-long $i;LCMP]
+
+ [real//eq 0 $i;unwrap-double $i;DCMPG]
+ [real//lt -1 $i;unwrap-double $i;DCMPG]
+
+ [deg//eq 0 $i;unwrap-long ($i;INVOKESTATIC &runtime;runtime-name "compareUnsigned" compare-unsigned-method false)]
+ [deg//lt -1 $i;unwrap-long ($i;INVOKESTATIC &runtime;runtime-name "compareUnsigned" compare-unsigned-method false)]
+ )
+
+(do-template [<name> <prepare> <transform>]
+ [(def: (<name> inputI)
+ Unary
+ (|>. inputI <prepare> <transform>))]
+
+ [nat//to-int id id]
+ [nat//to-char $i;unwrap-long
+ (<| ($i;INVOKESTATIC "java.lang.Character" "toString" ($t;method (list $t;char) (#;Some $String) (list)) false)
+ $i;I2C $i;L2I)]
+
+ [int//to-nat id id]
+ [int//to-real $i;unwrap-long (<| $i;wrap-double $i;L2D)]
+
+ [real//to-int $i;unwrap-double (<| $i;wrap-long $i;D2L)]
+ [real//to-deg $i;unwrap-double
+ (<| $i;wrap-long ($i;INVOKESTATIC &runtime;runtime-name "real-to-deg"
+ ($t;method (list $t;double) (#;Some $t;long) (list)) false))]
+ [real//encode $i;unwrap-double
+ ($i;INVOKESTATIC "java.lang.Double" "toString" ($t;method (list $t;double) (#;Some $String) (list)) false)]
+ [real//decode ($i;CHECKCAST "java.lang.String")
+ ($i;INVOKESTATIC &runtime;runtime-name "decode_real" ($t;method (list $String) (#;Some $Object-Array) (list)) false)]
+
+ [deg//to-real $i;unwrap-long
+ (<| $i;wrap-double ($i;INVOKESTATIC &runtime;runtime-name "deg-to-real"
+ ($t;method (list $t;long) (#;Some $t;double) (list)) false))]
+ )
+
+## [[Text]]
+(do-template [<name> <class> <method> <post> <outputT>]
+ [(def: (<name> inputI)
+ Unary
+ (|>. inputI
+ ($i;CHECKCAST "java.lang.String")
+ ($i;INVOKEVIRTUAL <class> <method> ($t;method (list) (#;Some <outputT>) (list)) false)
+ <post>))]
+
+ [text//size "java.lang.String" "length" lux-intI $t;int]
+ [text//hash "java.lang.Object" "hashCode" lux-intI $t;int]
+ [text//trim "java.lang.String" "trim" id $String]
+ [text//upper-case "java.lang.String" "toUpperCase" id $String]
+ [text//lower-case "java.lang.String" "toLowerCase" id $String]
+ )
+
+(do-template [<name> <pre-subject> <pre-param> <op> <post>]
+ [(def: (<name> [subjectI paramI])
+ Binary
+ (|>. subjectI <pre-subject>
+ paramI <pre-param>
+ <op> <post>))]
+
+ [text//eq id id
+ ($i;INVOKEVIRTUAL "java.lang.Object" "equals" ($t;method (list $Object) (#;Some $t;boolean) (list)) false)
+ $i;wrap-boolean]
+ [text//lt ($i;CHECKCAST "java.lang.String") ($i;CHECKCAST "java.lang.String")
+ ($i;INVOKEVIRTUAL "java.lang.String" "compareTo" ($t;method (list $String) (#;Some $t;int) (list)) false)
+ (predicateI $i;IF_ICMPEQ)]
+ [text//append ($i;CHECKCAST "java.lang.String") ($i;CHECKCAST "java.lang.String")
+ ($i;INVOKEVIRTUAL "java.lang.String" "concat" ($t;method (list $String) (#;Some $String) (list)) false)
+ id]
+ [text//contains? ($i;CHECKCAST "java.lang.String") ($i;CHECKCAST "java.lang.String")
+ ($i;INVOKEVIRTUAL "java.lang.String" "contains" ($t;method (list $CharSequence) (#;Some $t;boolean) (list)) false)
+ $i;wrap-boolean]
+ [text//char ($i;CHECKCAST "java.lang.String") jvm-intI
+ ($i;INVOKESTATIC &runtime;runtime-name "text_char" ($t;method (list $String $t;int) (#;Some $t;int) (list)) false)
+ lux-intI]
+ )
+
+(do-template [<name> <pre-subject> <pre-param> <pre-extra> <op>]
+ [(def: (<name> [subjectI paramI extraI])
+ Trinary
+ (|>. subjectI <pre-subject>
+ paramI <pre-param>
+ extraI <pre-extra>
+ <op>))]
+
+ [text//clip ($i;CHECKCAST "java.lang.String") jvm-intI jvm-intI
+ ($i;INVOKESTATIC &runtime;runtime-name "text_clip"
+ ($t;method (list $String $t;int $t;int) (#;Some $Object-Array) (list)) false)]
+ [text//replace ($i;CHECKCAST "java.lang.String") ($i;CHECKCAST "java.lang.String") ($i;CHECKCAST "java.lang.String")
+ ($i;INVOKEVIRTUAL "java.lang.String" "replace" ($t;method (list $CharSequence $CharSequence) (#;Some $String) (list)) false)]
+ )
+
+(def: index-method $;Method ($t;method (list $String $t;int) (#;Some $t;int) (list)))
+(do-template [<name> <method>]
+ [(def: (<name> [textI partI startI])
+ Trinary
+ (<| $i;with-label (function [@not-found])
+ $i;with-label (function [@end])
+ (|>. textI ($i;CHECKCAST "java.lang.String")
+ partI ($i;CHECKCAST "java.lang.String")
+ startI jvm-intI
+ ($i;INVOKEVIRTUAL "java.lang.String" <method> index-method false)
+ $i;DUP
+ ($i;int -1)
+ ($i;IF_ICMPEQ @not-found)
+ lux-intI
+ make-someI
+ ($i;GOTO @end)
+ ($i;label @not-found)
+ $i;POP
+ make-noneI
+ ($i;label @end))))]
+
+ [text//index "indexOf"]
+ [text//last-index "lastIndexOf"]
+ )
+
+## [[Math]]
+(def: math-unary-method ($t;method (list $t;double) (#;Some $t;double) (list)))
+(def: math-binary-method ($t;method (list $t;double $t;double) (#;Some $t;double) (list)))
+
+(do-template [<name> <method>]
+ [(def: (<name> inputI)
+ Unary
+ (|>. inputI
+ $i;unwrap-double
+ ($i;INVOKESTATIC "java.lang.Math" <method> math-unary-method false)
+ $i;wrap-double))]
+
+ [math//cos "cos"]
+ [math//sin "sin"]
+ [math//tan "tan"]
+ [math//acos "acos"]
+ [math//asin "asin"]
+ [math//atan "atan"]
+ [math//cosh "cosh"]
+ [math//sinh "sinh"]
+ [math//tanh "tanh"]
+ [math//exp "exp"]
+ [math//log "log"]
+ [math//root2 "sqrt"]
+ [math//root3 "cbrt"]
+ [math//ceil "ceil"]
+ [math//floor "floor"]
+ )
+
+(do-template [<name> <method>]
+ [(def: (<name> [inputI paramI])
+ Binary
+ (|>. inputI $i;unwrap-double
+ paramI $i;unwrap-double
+ ($i;INVOKESTATIC "java.lang.Math" <method> math-binary-method false)
+ $i;wrap-double))]
+
+ [math//atan2 "atan2"]
+ [math//pow "pow"]
+ )
+
+(def: (math//round inputI)
+ Unary
+ (|>. inputI
+ $i;unwrap-double
+ ($i;INVOKESTATIC "java.lang.Math" "round" ($t;method (list $t;double) (#;Some $t;long) (list)) false)
+ $i;L2D
+ $i;wrap-double))
+
+## [[IO]]
+(def: string-method $;Method ($t;method (list $String) #;None (list)))
+(def: (io//log messageI)
+ Unary
+ (|>. ($i;GETSTATIC "java.lang.System" "out" ($t;class "java.io.PrintStream" (list)))
+ messageI
+ ($i;CHECKCAST "java.lang.String")
+ ($i;INVOKEVIRTUAL "java.io.PrintStream" "println" string-method false)
+ ($i;string &runtime;unit)))
+
+(def: (io//error messageI)
+ Unary
+ (|>. ($i;NEW "java.lang.Error")
+ $i;DUP
+ messageI
+ ($i;CHECKCAST "java.lang.String")
+ ($i;INVOKESPECIAL "java.lang.Error" "<init>" string-method false)
+ $i;ATHROW))
+
+(def: (io//exit codeI)
+ Unary
+ (|>. codeI jvm-intI
+ ($i;INVOKESTATIC "java.lang.System" "exit" ($t;method (list $t;int) #;None (list)) false)
+ $i;NULL))
+
+(def: (io//current-time [])
+ Nullary
+ (|>. ($i;INVOKESTATIC "java.lang.System" "currentTimeMillis" ($t;method (list) (#;Some $t;long) (list)) false)
+ $i;wrap-long))
+
+## [[Atoms]]
+(def: atom-class Text "java.util.concurrent.atomic.AtomicReference")
+(def: (atom//new initI)
+ Unary
+ (|>. ($i;NEW atom-class)
+ $i;DUP
+ initI
+ ($i;INVOKESPECIAL atom-class "<init>" ($t;method (list $Object) #;None (list)) false)))
+
+(def: (atom//read atomI)
+ Unary
+ (|>. atomI
+ ($i;CHECKCAST atom-class)
+ ($i;INVOKEVIRTUAL atom-class "get" ($t;method (list) (#;Some $Object) (list)) false)))
+
+(def: (atom//compare-and-swap [atomI oldI newI])
+ Trinary
+ (|>. atomI
+ ($i;CHECKCAST atom-class)
+ oldI
+ newI
+ ($i;INVOKEVIRTUAL atom-class "compareAndSet" ($t;method (list $Object $Object) (#;Some $t;boolean) (list)) false)
+ $i;wrap-boolean))
+
+## [[Processes]]
+(def: (process//concurrency-level [])
+ Nullary
+ (|>. ($i;GETSTATIC &runtime;runtime-name "concurrency_level" $t;int)
+ lux-intI))
+
+(def: (process//future procedureI)
+ Unary
+ (|>. procedureI ($i;CHECKCAST &runtime;function-name)
+ ($i;INVOKESTATIC &runtime;runtime-name "future"
+ ($t;method (list $Function) (#;Some $Object) (list)) false)))
+
+(def: (process//schedule [millisecondsI procedureI])
+ Binary
+ (|>. millisecondsI $i;unwrap-long
+ procedureI ($i;CHECKCAST &runtime;function-name)
+ ($i;INVOKESTATIC &runtime;runtime-name "schedule"
+ ($t;method (list $t;long $Function) (#;Some $Object) (list)) false)))
+
+## [Bundles]
+(def: lux-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "lux is" (binary lux//is))
+ (install "lux try" (unary lux//try))))
+
+(def: bit-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "bit count" (unary bit//count))
+ (install "bit and" (binary bit//and))
+ (install "bit or" (binary bit//or))
+ (install "bit xor" (binary bit//xor))
+ (install "bit shift-left" (binary bit//shift-left))
+ (install "bit unsigned-shift-right" (binary bit//unsigned-shift-right))
+ (install "bit shift-right" (binary bit//shift-right))
+ ))
+
+(def: nat-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "nat +" (binary nat//add))
+ (install "nat -" (binary nat//sub))
+ (install "nat *" (binary nat//mul))
+ (install "nat /" (binary nat//div))
+ (install "nat %" (binary nat//rem))
+ (install "nat =" (binary nat//eq))
+ (install "nat <" (binary nat//lt))
+ (install "nat min" (nullary nat//min))
+ (install "nat max" (nullary nat//max))
+ (install "nat to-int" (unary nat//to-int))
+ (install "nat to-char" (unary nat//to-char))))
+
+(def: int-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "int +" (binary int//add))
+ (install "int -" (binary int//sub))
+ (install "int *" (binary int//mul))
+ (install "int /" (binary int//div))
+ (install "int %" (binary int//rem))
+ (install "int =" (binary int//eq))
+ (install "int <" (binary int//lt))
+ (install "int min" (nullary int//min))
+ (install "int max" (nullary int//max))
+ (install "int to-nat" (unary int//to-nat))
+ (install "int to-real" (unary int//to-real))))
+
+(def: real-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "real +" (binary real//add))
+ (install "real -" (binary real//sub))
+ (install "real *" (binary real//mul))
+ (install "real /" (binary real//div))
+ (install "real %" (binary real//rem))
+ (install "real =" (binary real//eq))
+ (install "real <" (binary real//lt))
+ (install "real smallest" (nullary real//smallest))
+ (install "real min" (nullary real//min))
+ (install "real max" (nullary real//max))
+ (install "real not-a-number" (nullary real//not-a-number))
+ (install "real positive-infinity" (nullary real//positive-infinity))
+ (install "real negative-infinity" (nullary real//negative-infinity))
+ (install "real to-deg" (unary real//to-deg))
+ (install "real to-int" (unary real//to-int))
+ (install "real encode" (unary real//encode))
+ (install "real decode" (unary real//decode))))
+
+(def: deg-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "deg +" (binary deg//add))
+ (install "deg -" (binary deg//sub))
+ (install "deg *" (binary deg//mul))
+ (install "deg /" (binary deg//div))
+ (install "deg %" (binary deg//rem))
+ (install "deg =" (binary deg//eq))
+ (install "deg <" (binary deg//lt))
+ (install "deg scale" (binary deg//scale))
+ (install "deg reciprocal" (binary deg//reciprocal))
+ (install "deg min" (nullary deg//min))
+ (install "deg max" (nullary deg//max))
+ (install "deg to-real" (unary deg//to-real))))
+
+(def: array-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "array new" (unary array//new))
+ (install "array get" (binary array//get))
+ (install "array put" (trinary array//put))
+ (install "array remove" (binary array//remove))
+ (install "array size" (unary array//size))
+ ))
+
+(def: text-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "text =" (binary text//eq))
+ (install "text <" (binary text//lt))
+ (install "text append" (binary text//append))
+ (install "text index" (trinary text//index))
+ (install "text size" (unary text//size))
+ (install "text hash" (unary text//hash))
+ (install "text replace" (trinary text//replace))
+ (install "text char" (binary text//char))
+ (install "text clip" (trinary text//clip))
+ ))
+
+(def: math-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "math cos" (unary math//cos))
+ (install "math sin" (unary math//sin))
+ (install "math tan" (unary math//tan))
+ (install "math acos" (unary math//acos))
+ (install "math asin" (unary math//asin))
+ (install "math atan" (unary math//atan))
+ (install "math cosh" (unary math//cosh))
+ (install "math sinh" (unary math//sinh))
+ (install "math tanh" (unary math//tanh))
+ (install "math exp" (unary math//exp))
+ (install "math log" (unary math//log))
+ (install "math root2" (unary math//root2))
+ (install "math root3" (unary math//root3))
+ (install "math ceil" (unary math//ceil))
+ (install "math floor" (unary math//floor))
+ (install "math round" (unary math//round))
+ (install "math atan2" (binary math//atan2))
+ (install "math pow" (binary math//pow))
+ ))
+
+(def: io-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "io log" (unary io//log))
+ (install "io error" (unary io//error))
+ (install "io exit" (unary io//exit))
+ (install "io current-time" (nullary io//current-time))))
+
+(def: atom-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "atom new" (unary atom//new))
+ (install "atom read" (unary atom//read))
+ (install "atom compare-and-swap" (trinary atom//compare-and-swap))))
+
+(def: process-procs
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (install "process concurrency-level" (nullary process//concurrency-level))
+ (install "process future" (unary process//future))
+ (install "process schedule" (binary process//schedule))
+ ))
+
+(def: #export procedures
+ Bundle
+ (|> (D;new text;Hash<Text>)
+ (D;merge lux-procs)
+ (D;merge bit-procs)
+ (D;merge nat-procs)
+ (D;merge int-procs)
+ (D;merge deg-procs)
+ (D;merge real-procs)
+ (D;merge text-procs)
+ (D;merge array-procs)
+ (D;merge math-procs)
+ (D;merge io-procs)
+ (D;merge atom-procs)
+ (D;merge process-procs)
+ ))
diff --git a/new-luxc/source/luxc/generator/runtime.jvm.lux b/new-luxc/source/luxc/generator/runtime.jvm.lux
index 5c6ce29a6..8c0b294c1 100644
--- a/new-luxc/source/luxc/generator/runtime.jvm.lux
+++ b/new-luxc/source/luxc/generator/runtime.jvm.lux
@@ -39,6 +39,10 @@
(visitEnd [] void)
(toByteArray [] Byte-Array))
+(def: #export runtime-name Text "LuxRT")
+(def: #export function-name Text "LuxFunction")
+(def: #export unit Text "\u0000")
+
(def: $Object $;Type ($t;class "java.lang.Object" (list)))
(def: add-adt-methods
@@ -65,9 +69,9 @@
#let [writer (|> (do-to (ClassWriter.new ClassWriter.COMPUTE_MAXS)
(ClassWriter.visit [&common;bytecode-version
($_ i.+ Opcodes.ACC_PUBLIC Opcodes.ACC_FINAL Opcodes.ACC_SUPER)
- &common;runtime-class-name (host;null)
+ runtime-name (host;null)
"java/lang/Object" (host;null)]))
add-adt-methods)
bytecode (ClassWriter.toByteArray [] (do-to writer (ClassWriter.visitEnd [])))]
- _ (&common;store-class &common;runtime-class-name bytecode)]
+ _ (&common;store-class runtime-name bytecode)]
(wrap bytecode)))
diff --git a/new-luxc/source/luxc/generator/structure.jvm.lux b/new-luxc/source/luxc/generator/structure.jvm.lux
index 74e44d1ca..e3a4bed75 100644
--- a/new-luxc/source/luxc/generator/structure.jvm.lux
+++ b/new-luxc/source/luxc/generator/structure.jvm.lux
@@ -15,7 +15,8 @@
(host ["$" jvm]
(jvm ["$t" type]
["$d" def]
- ["$i" inst])))))
+ ["$i" inst]))))
+ [../runtime])
(def: $Object $;Type ($t;class "java.lang.Object" (list)))
@@ -50,7 +51,7 @@
(wrap (|>. ($i;int (nat-to-int tag))
(flagI tail?)
memberI
- ($i;INVOKESTATIC &common;runtime-class-name
+ ($i;INVOKESTATIC ../runtime;runtime-name
"sum_make"
($t;method (list $t;int $Object $Object)
(#;Some ($t;array +1 $Object))
diff --git a/new-luxc/test/test/luxc/generator/primitive.lux b/new-luxc/test/test/luxc/generator/primitive.lux
index 53b455812..b1ea17f95 100644
--- a/new-luxc/test/test/luxc/generator/primitive.lux
+++ b/new-luxc/test/test/luxc/generator/primitive.lux
@@ -15,6 +15,7 @@
[analyser]
[synthesizer]
(generator ["@" expr]
+ ["@;" runtime]
["@;" eval]
["@;" common]))
(test/luxc common))
@@ -50,7 +51,7 @@
(|> (@eval;eval (@;generate #ls;Unit))
(macro;run (init-compiler []))
(case> (#R;Success valueG)
- (is @common;unit (:! Text valueG))
+ (is @runtime;unit (:! Text valueG))
_
false)))
diff --git a/new-luxc/test/test/luxc/generator/structure.lux b/new-luxc/test/test/luxc/generator/structure.lux
index 817052eff..1fcba59d4 100644
--- a/new-luxc/test/test/luxc/generator/structure.lux
+++ b/new-luxc/test/test/luxc/generator/structure.lux
@@ -40,7 +40,7 @@
(-> [ls;Synthesis Top] Bool)
(case prediction
#ls;Unit
- (is @common;unit (:! Text sample))
+ (is @runtime;unit (:! Text sample))
(^template [<tag> <type> <test>]
(<tag> prediction')