X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=lib%2Fas3%2Fabc.h;h=9bf53924a1862637e2e387a18506b14caecf58c8;hb=d611fcd8cfa36238cfaff6e8fe04b31e3159f693;hp=50b02fbf34e08b45769ae33a8c941328d737822b;hpb=9bd08484bd337a7e89750ad3080db8491eff69e3;p=swftools.git diff --git a/lib/as3/abc.h b/lib/as3/abc.h index 50b02fb..9bf5392 100644 --- a/lib/as3/abc.h +++ b/lib/as3/abc.h @@ -32,8 +32,8 @@ DECLARE(abc_method); DECLARE(abc_method_body); DECLARE(abc_interface); DECLARE(abc_class); -DECLARE(exception); -DECLARE_LIST(exception); +DECLARE(abc_exception); +DECLARE_LIST(abc_exception); #include "code.h" #include "opcodes.h" @@ -55,14 +55,18 @@ struct _abc_method { const char*name; U8 flags; abc_method_body_t*body; + + trait_t*trait; 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; @@ -79,6 +83,10 @@ abc_file_t*abc_file_new(); #define TRAIT_CLASS 4 #define TRAIT_FUNCTION 5 #define TRAIT_CONST 6 + +#define TRAIT_ATTR_FINAL 0x10 +#define TRAIT_ATTR_OVERRIDE 0x20 +#define TRAIT_ATTR_METADATA 0x40 struct _trait { @@ -100,6 +108,11 @@ struct _trait { constant_t*value; }; +#define CLASS_SEALED 1 +#define CLASS_FINAL 2 +#define CLASS_INTERFACE 4 +#define CLASS_PROTECTED_NS 8 + struct _abc_class { abc_file_t*file; @@ -110,12 +123,14 @@ struct _abc_class { multiname_list_t*interfaces; abc_method_t*constructor; - U8 flags; + trait_list_t*traits; abc_method_t*static_constructor; + trait_list_t*static_traits; + + U8 flags; - 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 }; @@ -128,11 +143,17 @@ 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, 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, ...); +trait_t* abc_class_find_slotid(abc_class_t*c, int slotid); + +abc_method_t* abc_class_getconstructor(abc_class_t*cls, multiname_t*returntype); +abc_method_t* abc_class_getstaticconstructor(abc_class_t*cls, multiname_t*returntype); -struct _exception { +abc_method_t* abc_class_method(abc_class_t*cls, multiname_t*returntype, multiname_t*name); +abc_method_t* abc_class_staticmethod(abc_class_t*cls, multiname_t*returntype, multiname_t*name); +trait_t* abc_class_slot(abc_class_t*cls, multiname_t*name, multiname_t*type); +trait_t* abc_class_staticslot(abc_class_t*cls, multiname_t*name, multiname_t*type); + +struct _abc_exception { code_t*from; code_t*to; code_t*target; @@ -146,12 +167,17 @@ struct _abc_method_body { abc_method_t*method; code_t*code; - int max_stack; - int local_count; - int init_scope_depth; - int max_scope_depth; + 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 - exception_list_t* exceptions; + abc_exception_list_t* exceptions; trait_list_t*traits; @@ -166,7 +192,7 @@ typedef struct _abc_script { } abc_script_t; abc_method_t* abc_nullmethod(abc_file_t*file); -abc_script_t* abc_initscript(abc_file_t*file, multiname_t*returntype, int num_params, ...); +abc_script_t* abc_initscript(abc_file_t*file, multiname_t*returntype); #define __