X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fabc.h;h=57a5c9b3c52f197ce0f52d69afa6460629a97153;hb=12a41466dddcc765861bc5da407a3501897bddbb;hp=a29897316d4ef2fca3ebdce30ae3f1ada2cc346f;hpb=2839fd9b16fe61e2bc4b93b5a034ef26776cd4fc;p=swftools.git diff --git a/lib/as3/abc.h b/lib/as3/abc.h index a298973..57a5c9b 100644 --- a/lib/as3/abc.h +++ b/lib/as3/abc.h @@ -32,15 +32,26 @@ DECLARE(abc_method); DECLARE(abc_method_body); DECLARE(abc_interface); DECLARE(abc_class); +DECLARE(exception); +DECLARE_LIST(exception); #include "code.h" #include "opcodes.h" DECLARE(trait); + +#define METHOD_NEED_ARGUMENTS 1 +#define METHOD_NEED_ACTIVATION 2 +#define METHOD_NEED_REST 4 +#define METHOD_HAS_OPTIONAL 8 +#define METHOD_SET_DXNS 0x40 +#define METHOD_HAS_PARAM_NAMES 0x80 + struct _abc_method { multiname_t*return_type; multiname_list_t*parameters; + constant_list_t*optional_parameters; const char*name; U8 flags; abc_method_body_t*body; @@ -48,10 +59,12 @@ struct _abc_method { int index; //filled in during writing }; +#define ABCFILE_LAZY 1 struct _abc_file { // abc_file const char*name; + U32 flags; array_t*metadata; array_t*methods; array_t*classes; @@ -69,6 +82,7 @@ abc_file_t*abc_file_new(); #define TRAIT_FUNCTION 5 #define TRAIT_CONST 6 + struct _trait { unsigned char kind; unsigned char attributes; @@ -85,12 +99,11 @@ struct _trait { multiname_t*type_name; int data2; }; - int vindex; - int vkind; + constant_t*value; }; struct _abc_class { - abc_file_t*pool; + abc_file_t*file; multiname_t*classname; multiname_t*superclass; @@ -105,51 +118,64 @@ struct _abc_class { trait_list_t*static_constructor_traits; trait_list_t*traits; + + int init_scope_depth; // volatile, might be increased during code verification int index; //filled in during writing }; -abc_class_t* abc_class_new(abc_file_t*pool, multiname_t*classname, multiname_t*superclass); -abc_class_t* abc_class_new2(abc_file_t*pool, char*classname, char*superclass); +abc_class_t* abc_class_new(abc_file_t*file, multiname_t*classname, multiname_t*superclass); +abc_class_t* abc_class_new2(abc_file_t*file, char*classname, char*superclass); void abc_class_sealed(abc_class_t*c); void abc_class_final(abc_class_t*c); void abc_class_interface(abc_class_t*c); void abc_class_protectedNS(abc_class_t*c, char*namespace); void abc_class_add_interface(abc_class_t*c, multiname_t*interface); -abc_method_body_t* abc_class_staticconstructor(abc_class_t*cls, char*returntype, int num_params, ...); -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, ...); +abc_method_body_t* abc_class_staticconstructor(abc_class_t*cls, multiname_t*returntype, int num_params, ...); +abc_method_body_t* abc_class_constructor(abc_class_t*cls, multiname_t*returntype, int num_params, ...); +abc_method_body_t* abc_class_method(abc_class_t*cls, multiname_t*returntype, char*name, int num_params, ...); + +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_file_t*file; //abc_class_t*cls; abc_method_t*method; - abc_code_t*code; + code_t*code; + + struct { + //for dumping: filled in during parsing + int max_stack; + int local_count; + int max_scope_depth; + int init_scope_depth; + } old; + + int init_scope_depth; // volatile, might be increased during code verification - int max_stack; - int local_count; - int init_scope_depth; - int max_scope_depth; + exception_list_t* exceptions; - int exception_count; trait_list_t*traits; int index; // filled in during writing + codestats_t*stats; //filled in during writing }; -typedef struct _abc_label { -} abc_label_t; - typedef struct _abc_script { abc_method_t*method; - abc_file_t*pool; + abc_file_t*file; 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, ...); +abc_script_t* abc_initscript(abc_file_t*file, multiname_t*returntype, int num_params, ...); #define __