diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-01-07 13:24:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 13:24:58 -0800 |
commit | 7d94900ded8e2e5ce8ef8ee2687528531d8f2a97 (patch) | |
tree | d8bba13d306b0c5ecba384384e602e6cccc83015 /src/passes/Flatten.cpp | |
parent | 6f91af190effd7b8a5969314dd4fb3d2ec540524 (diff) | |
download | binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.gz binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.bz2 binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.zip |
Massive renaming (#1855)
Automated renaming according to
https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
Diffstat (limited to 'src/passes/Flatten.cpp')
-rw-r--r-- | src/passes/Flatten.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/passes/Flatten.cpp b/src/passes/Flatten.cpp index aa5c1a491..61fc60b2b 100644 --- a/src/passes/Flatten.cpp +++ b/src/passes/Flatten.cpp @@ -27,26 +27,26 @@ // ) // => // (if (..condition..) -// (set_local $temp +// (local.set $temp // (..if true..) // ) -// (set_local $temp +// (local.set $temp // (..if false..) // ) // ) // (i32.add -// (get_local $temp) +// (local.get $temp) // (i32.const 1) // ) // // Formally, this pass flattens in the precise sense of // making the AST have these properties: // -// 1. The operands of an instruction must be a get_local or a const. +// 1. The operands of an instruction must be a local.get or a const. // anything else is written to a local earlier. // 2. Disallow block, loop, and if return values, i.e., do not use // control flow to pass around values. -// 3. Disallow tee_local, setting a local is always done in a set_local +// 3. Disallow local.tee, setting a local is always done in a local.set // on a non-nested-expression location. // @@ -62,7 +62,7 @@ namespace wasm { // We use the following algorithm: we maintain a list of "preludes", code // that runs right before an expression. When we visit an expression we // must handle it and its preludes. If the expression has side effects, -// we reduce it to a get_local and add a prelude for that. We then handle +// we reduce it to a local.get and add a prelude for that. We then handle // the preludes, by moving them to the parent or handling them directly. // we can move them to the parent if the parent is not a control flow // structure. Otherwise, if the parent is a control flow structure, it @@ -190,7 +190,7 @@ struct Flatten : public WalkerPass<ExpressionStackWalker<Flatten, UnifiedExpress // special handling if (auto* set = curr->dynCast<SetLocal>()) { if (set->isTee()) { - // we disallow tee_local + // we disallow local.tee if (set->value->type == unreachable) { replaceCurrent(set->value); // trivial, no set happens } else { |