3 Routines for handling Flash2 AVM2 ABC Actionscript
5 Extension module for the rfxswf library.
6 Part of the swftools package.
8 Copyright (c) 2008 Matthias Kramm <kramm@quiss.org>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
24 #ifndef __abc_code_h__
25 #define __abc_code_h__
33 DECLARE(lookupswitch);
38 typedef struct _opcode
56 int pos; //used during code path evaluation
61 struct _lookupswitch {
66 #define FLAGS_ACTIVATION 0x02
67 #define FLAGS_SET_DXNS 0x40
80 code_t*code_dup(code_t*c);
82 code_t*add_opcode(code_t*atag, U8 op);
84 code_t*code_parse(TAG*tag, int len, abc_file_t*file, pool_t*pool, codelookup_t**codelookup);
85 int code_dump(code_t*c, abc_exception_list_t*exceptions, abc_file_t*file, char*prefix, FILE*fo);
86 void code_write(TAG*tag, code_t*code, pool_t*pool, abc_file_t*file);
87 void code_free(code_t*c);
88 code_t* code_atposition(codelookup_t*l, int pos);
89 void codelookup_free(codelookup_t*codelookup);
91 code_t*code_cutlast(code_t*c);
93 codestats_t* code_get_statistics(code_t*code, abc_exception_list_t*exceptions);
95 void codestats_print(codestats_t*s);
96 void codestats_free(codestats_t*s);
98 code_t* code_start(code_t*c);
100 code_t* code_append(code_t*code, code_t*toappend);
102 code_t* cut_last_push(code_t*_c);
104 #define code_new() (0)