Remove broken OPTIMIZE=0 build mode (#47)

This commit is contained in:
Ben Noordhuis 2023-11-12 13:34:08 +01:00 committed by GitHub
parent 162a8b7409
commit a92e74acac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,6 @@
#include "libregexp.h"
#include "libbf.h"
#define OPTIMIZE 1
#define SHORT_OPCODES 1
#if defined(EMSCRIPTEN)
#define DIRECT_DISPATCH 0
@ -23891,7 +23890,7 @@ static __exception int js_parse_for_in_of(JSParseState *s, int label_name,
if (js_parse_expect(s, ')'))
return -1;
if (OPTIMIZE) {
{
/* move the `next` code here */
DynBuf *bc = &s->cur_func->byte_code;
int chunk_size = pos_expr - pos_next;
@ -24283,7 +24282,7 @@ static __exception int js_parse_statement_or_decl(JSParseState *s,
/* XXX: check continue case */
close_scopes(s, s->cur_func->scope_level, block_scope_level);
if (OPTIMIZE && label_test != label_body && label_cont != label_test) {
if (label_test != label_body && label_cont != label_test) {
/* move the increment code here */
DynBuf *bc = &s->cur_func->byte_code;
int chunk_size = pos_body - pos_cont;
@ -28653,7 +28652,7 @@ static __exception int resolve_variables(JSContext *ctx, JSFunctionDef *s)
break;
case OP_gosub:
s->jump_size++;
if (OPTIMIZE) {
{
/* remove calls to empty finalizers */
int label;
LabelSlot *ls;
@ -28691,7 +28690,6 @@ static __exception int resolve_variables(JSContext *ctx, JSFunctionDef *s)
}
goto no_change;
case OP_insert3:
if (OPTIMIZE) {
/* Transformation: insert3 put_array_el|put_ref_value drop -> put_array_el|put_ref_value */
if (code_match(&cc, pos_next, M2(OP_put_array_el, OP_put_ref_value), OP_drop, -1)) {
dbuf_putc(&bc_out, cc.op);
@ -28704,7 +28702,6 @@ static __exception int resolve_variables(JSContext *ctx, JSFunctionDef *s)
}
break;
}
}
goto no_change;
case OP_goto:
@ -28717,7 +28714,7 @@ static __exception int resolve_variables(JSContext *ctx, JSFunctionDef *s)
case OP_throw:
case OP_throw_error:
case OP_ret:
if (OPTIMIZE) {
{
/* remove dead code */
int line = -1;
dbuf_put(&bc_out, bc_buf + pos, len);
@ -28814,7 +28811,6 @@ static __exception int resolve_variables(JSContext *ctx, JSFunctionDef *s)
goto no_change;
case OP_dup:
if (OPTIMIZE) {
/* Transformation: dup if_false(l1) drop, l1: if_false(l2) -> if_false(l2) */
/* Transformation: dup if_true(l1) drop, l1: if_true(l2) -> if_true(l2) */
if (code_match(&cc, pos_next, M2(OP_if_false, OP_if_true), OP_drop, -1)) {
@ -28843,7 +28839,6 @@ static __exception int resolve_variables(JSContext *ctx, JSFunctionDef *s)
break;
}
}
}
goto no_change;
case OP_nop:
@ -29267,7 +29262,7 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
case OP_goto:
label = get_u32(bc_buf + pos + 1);
has_goto:
if (OPTIMIZE) {
{
int line1 = -1;
/* Use custom matcher because multiple labels can follow */
label = find_jump_target(s, label, &op1, &line1);
@ -29297,14 +29292,6 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
case OP_gosub:
label = get_u32(bc_buf + pos + 1);
if (0 && OPTIMIZE) {
label = find_jump_target(s, label, &op1, NULL);
if (op1 == OP_ret) {
update_label(s, label, -1);
/* empty finally clause: remove gosub */
break;
}
}
goto has_label;
case OP_catch:
@ -29314,7 +29301,6 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
case OP_if_true:
case OP_if_false:
label = get_u32(bc_buf + pos + 1);
if (OPTIMIZE) {
label = find_jump_target(s, label, &op1, NULL);
/* transform if_false/if_true(l1) label(l1) -> drop label(l1) */
if (code_has_label(&cc, pos_next, label)) {
@ -29334,7 +29320,6 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
op ^= OP_if_true ^ OP_if_false;
}
}
}
has_label:
add_pc2line_info(s, bc_out.size, line_num);
if (op == OP_goto) {
@ -29408,9 +29393,7 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
atom = get_u32(bc_buf + pos + 1);
label = get_u32(bc_buf + pos + 5);
is_with = bc_buf[pos + 9];
if (OPTIMIZE) {
label = find_jump_target(s, label, &op1, NULL);
}
assert(label >= 0 && label < s->label_count);
ls = &label_slots[label];
add_pc2line_info(s, bc_out.size, line_num);
@ -29434,18 +29417,15 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
break;
case OP_drop:
if (OPTIMIZE) {
/* remove useless drops before return */
if (code_match(&cc, pos_next, OP_return_undef, -1)) {
if (cc.line_num >= 0) line_num = cc.line_num;
break;
}
}
goto no_change;
case OP_null:
#if SHORT_OPCODES
if (OPTIMIZE) {
/* transform null strict_eq into is_null */
if (code_match(&cc, pos_next, OP_strict_eq, -1)) {
if (cc.line_num >= 0) line_num = cc.line_num;
@ -29464,12 +29444,10 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
op = cc.op ^ OP_if_false ^ OP_if_true;
goto has_label;
}
}
#endif
/* fall thru */
case OP_push_false:
case OP_push_true:
if (OPTIMIZE) {
val = (op == OP_push_true);
if (code_match(&cc, pos_next, M2(OP_if_false, OP_if_true), -1)) {
has_constant_test:
@ -29491,11 +29469,9 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
break;
}
}
}
goto no_change;
case OP_push_i32:
if (OPTIMIZE) {
/* transform i32(val) neg -> i32(-val) */
val = get_i32(bc_buf + pos + 1);
if ((val != INT32_MIN && val != 0)
@ -29524,13 +29500,11 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
add_pc2line_info(s, bc_out.size, line_num);
push_short_int(&bc_out, val);
break;
}
goto no_change;
#if SHORT_OPCODES
case OP_push_const:
case OP_fclosure:
if (OPTIMIZE) {
{
int idx = get_u32(bc_buf + pos + 1);
if (idx < 256) {
add_pc2line_info(s, bc_out.size, line_num);
@ -29542,7 +29516,7 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
goto no_change;
case OP_get_field:
if (OPTIMIZE) {
{
JSAtom atom = get_u32(bc_buf + pos + 1);
if (atom == JS_ATOM_length) {
JS_FreeAtom(ctx, atom);
@ -29554,7 +29528,7 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
goto no_change;
#endif
case OP_push_atom_value:
if (OPTIMIZE) {
{
JSAtom atom = get_u32(bc_buf + pos + 1);
/* remove push/drop pairs generated by the parser */
if (code_match(&cc, pos_next, OP_drop, -1)) {
@ -29576,18 +29550,15 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
case OP_to_propkey:
case OP_to_propkey2:
if (OPTIMIZE) {
/* remove redundant to_propkey/to_propkey2 opcodes when storing simple data */
if (code_match(&cc, pos_next, M3(OP_get_loc, OP_get_arg, OP_get_var_ref), -1, OP_put_array_el, -1)
|| code_match(&cc, pos_next, M3(OP_push_i32, OP_push_const, OP_push_atom_value), OP_put_array_el, -1)
|| code_match(&cc, pos_next, M4(OP_undefined, OP_null, OP_push_true, OP_push_false), OP_put_array_el, -1)) {
break;
}
}
goto no_change;
case OP_undefined:
if (OPTIMIZE) {
/* remove push/drop pairs generated by the parser */
if (code_match(&cc, pos_next, OP_drop, -1)) {
if (cc.line_num >= 0) line_num = cc.line_num;
@ -29627,11 +29598,9 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
goto has_label;
}
#endif
}
goto no_change;
case OP_insert2:
if (OPTIMIZE) {
/* Transformation:
insert2 put_field(a) drop -> put_field(a)
insert2 put_var_strict(a) drop -> put_var_strict(a)
@ -29644,11 +29613,10 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
pos_next = cc.pos;
break;
}
}
goto no_change;
case OP_dup:
if (OPTIMIZE) {
{
/* Transformation: dup put_x(n) drop -> put_x(n) */
int op1, line2 = -1;
/* Transformation: dup put_x(n) -> set_x(n) */
@ -29675,7 +29643,7 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
goto no_change;
case OP_get_loc:
if (OPTIMIZE) {
{
/* transformation:
get_loc(n) post_dec put_loc(n) drop -> dec_loc(n)
get_loc(n) post_inc put_loc(n) drop -> inc_loc(n)
@ -29744,25 +29712,23 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
}
add_pc2line_info(s, bc_out.size, line_num);
put_short_code(&bc_out, op, idx);
break;
}
goto no_change;
break;
#if SHORT_OPCODES
case OP_get_arg:
case OP_get_var_ref:
if (OPTIMIZE) {
{
int idx;
idx = get_u16(bc_buf + pos + 1);
add_pc2line_info(s, bc_out.size, line_num);
put_short_code(&bc_out, op, idx);
break;
}
goto no_change;
break;
#endif
case OP_put_loc:
case OP_put_arg:
case OP_put_var_ref:
if (OPTIMIZE) {
{
/* transformation: put_x(n) get_x(n) -> set_x(n) */
int idx;
idx = get_u16(bc_buf + pos + 1);
@ -29775,13 +29741,12 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
}
add_pc2line_info(s, bc_out.size, line_num);
put_short_code(&bc_out, op, idx);
break;
}
goto no_change;
break;
case OP_post_inc:
case OP_post_dec:
if (OPTIMIZE) {
{
/* transformation:
post_inc put_x drop -> inc put_x
post_inc perm3 put_field drop -> inc put_field
@ -29826,7 +29791,6 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
#if SHORT_OPCODES
case OP_typeof:
if (OPTIMIZE) {
/* simplify typeof tests */
if (code_match(&cc, pos_next, OP_push_atom_value, M4(OP_strict_eq, OP_strict_neq, OP_eq, OP_neq), -1)) {
if (cc.line_num >= 0) line_num = cc.line_num;
@ -29862,7 +29826,6 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
}
}
}
}
goto no_change;
#endif
@ -29879,7 +29842,7 @@ static __exception int resolve_labels(JSContext *ctx, JSFunctionDef *s)
assert(label_slots[i].first_reloc == NULL);
}
#if SHORT_OPCODES
if (OPTIMIZE) {
{
/* more jump optimizations */
int patch_offsets = 0;
for (i = 0, jp = s->jump_slots; i < s->jump_count; i++, jp++) {