X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fcode.h;h=d120203a3232ab930701cf2f3c989d0161dffec4;hb=c63b2bf21dc1df9a736f0b4c08f6cba828cdab92;hp=9dc03a72ed0af97932ccd3ef8fbed8aa1a0c9977;hpb=8b94e3aae7e61b3e1e5459addac62aaa7ea5c5bd;p=swftools.git diff --git a/lib/as3/code.h b/lib/as3/code.h index 9dc03a7..d120203 100644 --- a/lib/as3/code.h +++ b/lib/as3/code.h @@ -77,22 +77,33 @@ struct _codelookup { int len; }; +code_t*code_dup(code_t*c); + code_t*add_opcode(code_t*atag, U8 op); code_t*code_parse(TAG*tag, int len, abc_file_t*file, pool_t*pool, codelookup_t**codelookup); -int code_dump(code_t*c, exception_list_t*exceptions, abc_file_t*file, char*prefix, FILE*fo); +int code_dump(code_t*c); +int code_dump2(code_t*c, abc_exception_list_t*exceptions, abc_file_t*file, char*prefix, FILE*fo); void code_write(TAG*tag, code_t*code, pool_t*pool, abc_file_t*file); void code_free(code_t*c); code_t* code_atposition(codelookup_t*l, int pos); void codelookup_free(codelookup_t*codelookup); -codestats_t* code_get_statistics(code_t*code, exception_list_t*exceptions); +code_t*code_cutlast(code_t*c); + +codestats_t* code_get_statistics(code_t*code, abc_exception_list_t*exceptions); void codestats_print(codestats_t*s); void codestats_free(codestats_t*s); +code_t* code_start(code_t*c); + code_t* code_append(code_t*code, code_t*toappend); +code_t* cut_last_push(code_t*_c); + +char is_getlocal(code_t*c); + #define code_new() (0) #endif