aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Julian2016-12-04 23:41:23 -0400
committerEduardo Julian2016-12-04 23:41:23 -0400
commitf44c594e29c33639a0fcd6e2c46c15f0012d2e91 (patch)
tree486576c407cdcd0fef36bb76cba6e1eda511e905
parent7abe83784b9b63e8ac427ec3f21ff0b0850c72e2 (diff)
- Removed "monitorenter" and "monitorexit" procedures.
-rw-r--r--luxc/src/lux/analyser/host.clj17
-rw-r--r--luxc/src/lux/compiler/host.clj18
2 files changed, 0 insertions, 35 deletions
diff --git a/luxc/src/lux/analyser/host.clj b/luxc/src/lux/analyser/host.clj
index 209e36d0e..6aea46cab 100644
--- a/luxc/src/lux/analyser/host.clj
+++ b/luxc/src/lux/analyser/host.clj
@@ -686,21 +686,6 @@
(return (&/|list (&&/|meta exo-type _cursor
(&&/$proc (&/T ["jvm" "synchronized"]) (&/|list =monitor =expr) (&/|list)))))))
-(do-template [<name> <tag>]
- (defn <name> [analyse exo-type ?values]
- (|do [:let [(&/$Cons ?monitor (&/$Nil)) ?values]
- =monitor (&&/analyse-1+ analyse ?monitor)
- _ (ensure-object (&&/expr-type* =monitor))
- :let [output-type &/$UnitT]
- _ (&type/check exo-type output-type)
- _cursor &/cursor]
- (return (&/|list (&&/|meta exo-type _cursor
- (&&/$proc (&/T ["jvm" <tag>]) (&/|list =monitor) (&/|list)))))))
-
- ^:private analyse-jvm-monitorenter "monitorenter"
- ^:private analyse-jvm-monitorexit "monitorexit"
- )
-
(defn ^:private analyse-jvm-throw [analyse exo-type ?values]
(|do [:let [(&/$Cons ?ex (&/$Nil)) ?values]
=ex (&&/analyse-1+ analyse ?ex)
@@ -1242,8 +1227,6 @@
"load-class" (analyse-jvm-load-class analyse exo-type ?values)
"try" (analyse-jvm-try analyse exo-type ?values)
"throw" (analyse-jvm-throw analyse exo-type ?values)
- "monitorenter" (analyse-jvm-monitorenter analyse exo-type ?values)
- "monitorexit" (analyse-jvm-monitorexit analyse exo-type ?values)
"null?" (analyse-jvm-null? analyse exo-type ?values)
"null" (analyse-jvm-null analyse exo-type ?values)
"anewarray" (analyse-jvm-anewarray analyse exo-type ?values)
diff --git a/luxc/src/lux/compiler/host.clj b/luxc/src/lux/compiler/host.clj
index 9f6d077be..eccfef089 100644
--- a/luxc/src/lux/compiler/host.clj
+++ b/luxc/src/lux/compiler/host.clj
@@ -1840,22 +1840,6 @@
(.visitInsn Opcodes/MONITOREXIT))]]
(return nil)))
-(do-template [<name> <op>]
- (defn <name> [compile ?values special-args]
- (|do [:let [(&/$Cons ?monitor (&/$Nil)) ?values
- ;; (&/$Nil) special-args
- ]
- ^MethodVisitor *writer* &/get-writer
- _ (compile ?monitor)
- :let [_ (doto *writer*
- (.visitInsn <op>)
- (.visitInsn Opcodes/ACONST_NULL))]]
- (return nil)))
-
- ^:private compile-jvm-monitorenter Opcodes/MONITORENTER
- ^:private compile-jvm-monitorexit Opcodes/MONITOREXIT
- )
-
(defn ^:private compile-jvm-throw [compile ?values special-args]
(|do [:let [(&/$Cons ?ex (&/$Nil)) ?values
;; (&/$Nil) special-args
@@ -2421,8 +2405,6 @@
"putstatic" (compile-jvm-putstatic compile ?values special-args)
"putfield" (compile-jvm-putfield compile ?values special-args)
"throw" (compile-jvm-throw compile ?values special-args)
- "monitorenter" (compile-jvm-monitorenter compile ?values special-args)
- "monitorexit" (compile-jvm-monitorexit compile ?values special-args)
"null?" (compile-jvm-null? compile ?values special-args)
"null" (compile-jvm-null compile ?values special-args)
"anewarray" (compile-jvm-anewarray compile ?values special-args)