summaryrefslogtreecommitdiff
path: root/src/emscripten-optimizer
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2019-04-18 13:06:23 -0700
committerGitHub <noreply@github.com>2019-04-18 13:06:23 -0700
commita9808ac6982e88262fc652d0634bf17119e1ee5f (patch)
treed37487959c6a407f92bbb112a0cea79b1eb2633e /src/emscripten-optimizer
parent8dc68bc96db046127d648644daa89f524a668863 (diff)
downloadbinaryen-a9808ac6982e88262fc652d0634bf17119e1ee5f.tar.gz
binaryen-a9808ac6982e88262fc652d0634bf17119e1ee5f.tar.bz2
binaryen-a9808ac6982e88262fc652d0634bf17119e1ee5f.zip
wasm2js: do not try to be smart with not emitting if braces, the corner cases are tricky (#2026)
leave them for later optimizers/minifiers
Diffstat (limited to 'src/emscripten-optimizer')
-rw-r--r--src/emscripten-optimizer/simple_ast.h50
1 files changed, 17 insertions, 33 deletions
diff --git a/src/emscripten-optimizer/simple_ast.h b/src/emscripten-optimizer/simple_ast.h
index 777dfc77f..969277466 100644
--- a/src/emscripten-optimizer/simple_ast.h
+++ b/src/emscripten-optimizer/simple_ast.h
@@ -634,10 +634,12 @@ struct JSPrinter {
return node->isArray() && node[0] == DEFUN;
}
- bool isBlock(Ref node) {
+ bool endsInBlock(Ref node) {
if (node->isArray() && node[0] == BLOCK) return true;
// Check for a label on a block
- if (node->isArray() && node[0] == LABEL && isBlock(node[2])) return true;
+ if (node->isArray() && node[0] == LABEL && endsInBlock(node[2])) return true;
+ // Check for an if
+ if (node->isArray() && node[0] == IF && endsInBlock(ifHasElse(node) ? node[3] : node[2])) return true;
return false;
}
@@ -766,7 +768,7 @@ struct JSPrinter {
if (first) first = false;
else newline();
print(curr);
- if (!isDefun(curr) && !isBlock(curr) && !isIf(curr)) {
+ if (!isDefun(curr) && !endsInBlock(curr) && !isIf(curr)) {
emit(';');
}
}
@@ -1213,42 +1215,24 @@ struct JSPrinter {
print(node[1]);
emit(')');
space();
- // special case: we need braces to save us from ambiguity, if () { if () } else. otherwise else binds to inner if
- // also need to recurse for if () { if () { } else { if () } else
- // (note that this is only a problem if the if body has a single element in it, not a block or such, as then
- // the block would be braced)
- // this analysis is a little conservative - it assumes any child if could be confused with us, which implies
- // all other braces vanished (the worst case for us, we are not saved by other braces).
- bool needBraces = false;
- bool hasElse = ifHasElse(node);
- if (hasElse) {
- Ref child = node[2];
- while (child->isArray() && child[0] == IF) {
- if (!ifHasElse(child)) {
- needBraces = true;
- break;
- }
- child = child[3]; // continue into the else
- }
- }
- if (needBraces) {
+ emit('{');
+ indent++;
+ newline();
+ print(node[2]);
+ indent--;
+ newline();
+ emit('}');
+ if (ifHasElse(node)) {
+ space();
+ emit("else");
+ safeSpace();
emit('{');
indent++;
newline();
- print(node[2]);
+ print(node[3]);
indent--;
newline();
emit('}');
- } else {
- print(node[2], "{}");
- if (!isBlock(node[2])) emit(';');
- }
- if (hasElse) {
- space();
- emit("else");
- safeSpace();
- print(node[3], "{}");
- if (!isBlock(node[3])) emit(';');
}
}