added exception struct
[swftools.git] / lib / as3 / abc.h
index 0fbd494..cfa48b0 100644 (file)
 #include "pool.h"
 
 DECLARE(abc_file);
+DECLARE(abc_method);
 DECLARE(abc_method_body);
 DECLARE(abc_interface);
-DECLARE(abc_code);
 DECLARE(abc_class);
+DECLARE(exception);
+DECLARE_LIST(exception);
+
+#include "code.h"
+#include "opcodes.h"
 
 DECLARE(trait);
 
-typedef struct _abc_method {
+struct _abc_method {
     multiname_t*return_type;
     multiname_list_t*parameters;
     const char*name;
@@ -43,7 +48,7 @@ typedef struct _abc_method {
     abc_method_body_t*body;
     
     int index; //filled in during writing
-} abc_method_t;
+};
 
 struct _abc_file {
     // abc_file
@@ -118,39 +123,40 @@ abc_method_body_t* abc_class_staticconstructor(abc_class_t*cls, char*returntype,
 abc_method_body_t* abc_class_constructor(abc_class_t*cls, char*returntype, int num_params, ...);
 abc_method_body_t* abc_class_method(abc_class_t*cls, char*returntype, char*name, int num_params, ...);
 
-struct _abc_code {
-    U8 opcode;
-    U8 len;
-    void*params[2];
-    abc_code_t*next;
-    abc_code_t*prev;
-    abc_code_t*parent;
+struct _exception {
+    code_t*from;
+    code_t*to;
+    code_t*target;
+    multiname_t*exc_type;
+    multiname_t*var_name;
 };
 
 struct _abc_method_body {
     abc_file_t*pool;
     //abc_class_t*cls;
     abc_method_t*method;
-    abc_code_t*code;
+    code_t*code;
+
     int max_stack;
     int local_count;
     int init_scope_depth;
     int max_scope_depth;
-    int exception_count;
+
+    exception_list_t* exceptions;
+
     trait_list_t*traits;
     
     int index; // filled in during writing
 };
 
-typedef struct _abc_label {
-} abc_label_t;
-
 typedef struct _abc_script {
     abc_method_t*method;
     abc_file_t*pool;
     trait_list_t*traits;
 } abc_script_t;
 
+abc_method_t* abc_nullmethod(abc_file_t*file);
+
 abc_script_t* abc_initscript(abc_file_t*pool, char*returntype, int num_params, ...);
 
 #define __