src/HOL/MicroJava/JVM/JVMInstructions.thy
changeset 12519 a955fe2879ba
parent 10897 697fab84709e
child 12911 704713ca07ea
--- a/src/HOL/MicroJava/JVM/JVMInstructions.thy	Sun Dec 16 00:18:44 2001 +0100
+++ b/src/HOL/MicroJava/JVM/JVMInstructions.thy	Sun Dec 16 00:19:08 2001 +0100
@@ -11,27 +11,31 @@
 
 
 datatype 
-  instr = Load nat                  (* load from local variable *)
-        | Store nat                 (* store into local variable *)
-        | LitPush val               (* push a literal (constant) *)
-        | New cname                 (* create object *)
-        | Getfield vname cname	  	(* Fetch field from object *)
-        | Putfield vname cname		  (* Set field in object     *)
-        | Checkcast cname	          (* Check whether object is of given type *)
-        | Invoke cname mname "(ty list)"  (* inv. instance meth of an object *)
-        | Return                    (* return from method *)
-        | Pop                       (* pop top element from opstack *)
-        | Dup                       (* duplicate top element of opstack *)
-        | Dup_x1                    (* duplicate next to top element *)
-        | Dup_x2                    (* duplicate 3rd element *)
-        | Swap                      (* swap top and next to top element *)
-        | IAdd                      (* integer addition *)
-        | Goto int                  (* goto relative address *)
-        | Ifcmpeq int               (* Branch if int/ref comparison succeeds *)
-
+  instr = Load nat                  -- "load from local variable"
+        | Store nat                 -- "store into local variable"
+        | LitPush val               -- "push a literal (constant)"
+        | New cname                 -- "create object"
+        | Getfield vname cname      -- "Fetch field from object"
+        | Putfield vname cname      -- "Set field in object    "
+        | Checkcast cname           -- "Check whether object is of given type"
+        | Invoke cname mname "(ty list)"  -- "inv. instance meth of an object"
+        | Return                    -- "return from method"
+        | Pop                       -- "pop top element from opstack"
+        | Dup                       -- "duplicate top element of opstack"
+        | Dup_x1                    -- "duplicate next to top element"
+        | Dup_x2                    -- "duplicate 3rd element"
+        | Swap                      -- "swap top and next to top element"
+        | IAdd                      -- "integer addition"
+        | Goto int                  -- "goto relative address"
+        | Ifcmpeq int               -- "branch if int/ref comparison succeeds"
+        | Throw                     -- "throw top of stack as exception"
 
 types
   bytecode = "instr list"
-  jvm_prog = "(nat \<times> nat \<times> bytecode) prog" 
+  exception_entry = "p_count \<times> p_count \<times> p_count \<times> cname" 
+                  -- "start-pc, end-pc, handler-pc, exception type"
+  exception_table = "exception_entry list"
+  jvm_method = "nat \<times> nat \<times> bytecode \<times> exception_table"
+  jvm_prog = "jvm_method prog" 
 
 end