Quick compiler exception support

Handle MOVE_RESULT, THROW and THROW_VERIFICATION_ERROR.  Enable
runtests 007 and 014 to pass.  Minor munging of the tests to make
them easier to selectively compile with the Quick compiler.

Change-Id: I756def54d81771b144e8ebc213cd90077e23758b
diff --git a/test/005-args/src/Main.java b/test/005-args/src/Main.java
index 1240ec5..8abb63c 100644
--- a/test/005-args/src/Main.java
+++ b/test/005-args/src/Main.java
@@ -18,8 +18,11 @@
  * Test passing arguments of various sizes
  */
 public class Main {
-    public static void main (String args[]) {
+    public static void args_005() {
         new ArgsTest()
                 .argTest(123, 'q', 3.343434, 0x1122334455667788L, 0.12345f);
     }
+    public static void main (String args[]) {
+        args_005();
+    }
 }