X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fcode.c;h=e1ccba8932ca00a041d1b1d773d473dc497fa913;hb=3fb75ef418267cb0f7370d365b3a37b8013fbee9;hp=9fce3a8f91e132d356905fe00b0cd3eeb6518889;hpb=35b692b1792f584c2b8d69cbbefa7794e3619f86;p=swftools.git diff --git a/lib/as3/code.c b/lib/as3/code.c index 9fce3a8..e1ccba8 100644 --- a/lib/as3/code.c +++ b/lib/as3/code.c @@ -200,7 +200,8 @@ opcode_t opcodes[]={ //0x53: seen in builtin.abc {0x53, "applytype", "n", -1, 1, 0, OP_STACK_ARGS}, -/* dummy instruction. Warning: this one is not actually supported by flash */ +/* dummy instructions. Warning: these are not actually supported by flash */ +{0xfd, "__fallthrough__", "s", 0, 0, 0, OP_INTERNAL}, {0xfe, "__continue__", "s", 0, 0, 0, OP_RETURN|OP_INTERNAL}, {0xff, "__break__", "s", 0, 0, 0, OP_RETURN|OP_INTERNAL}, }; @@ -465,7 +466,7 @@ static int opcode_write(TAG*tag, code_t*c, pool_t*pool, abc_file_t*file, int len c->opcode == OPCODE___CONTINUE__) { fprintf(stderr, "Unresolved %s\n", op->name); } else { - fprintf(stderr, "Error: writing undefined internal opcode %s", op->name); + fprintf(stderr, "Error: writing undefined internal opcode %s\n", op->name); } } @@ -1112,16 +1113,26 @@ code_t*code_dup(code_t*c) return last; } -code_t*code_cutlast(code_t*c) +code_t*code_cut(code_t*c) { if(!c) return c; - assert(!c->next); code_t*prev = c->prev; + code_t*next = c->next; c->prev = 0; - if(prev) - prev->next=0; + c->next = 0; + if(prev) prev->next=next; + if(next) next->prev=prev; code_free(c); - return prev; + + if(next) return code_end(next); + else return prev; +} + +code_t*code_cutlast(code_t*c) +{ + if(!c) return c; + assert(!c->next); + return code_cut(c); } code_t* cut_last_push(code_t*c) @@ -1158,8 +1169,14 @@ code_t* cut_last_push(code_t*c) // we can discard these if they're not eating up stack parameters if(!c->data[0]) return code_cutlast(c); - } - else + } else if(op->stack_minus ==0 && op->stack_plus == 0 && + !(op->flags&~(OP_REGISTER|OP_SET_DXNS)) && c->prev) { + // trim code *before* the kill, inclocal, declocal, dxns + code_t*p = c->prev; + p->next = 0; + c->prev = 0; + return code_append(cut_last_push(p), c); + } else break; } c = abc_pop(c);