diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2020-03-05 15:52:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-05 15:52:44 -0800 |
commit | 9e3dbb1f668a14341e9aebae479537d4a26095a5 (patch) | |
tree | 9857d50c3373c3f6320ca3f2586bd499bc40b224 /src/ir/effects.h | |
parent | 3a275d0627da443cce93631a64d78e7b3f441416 (diff) | |
download | binaryen-9e3dbb1f668a14341e9aebae479537d4a26095a5.tar.gz binaryen-9e3dbb1f668a14341e9aebae479537d4a26095a5.tar.bz2 binaryen-9e3dbb1f668a14341e9aebae479537d4a26095a5.zip |
Initial multivalue support (#2675)
Implements parsing and emitting of tuple creation and extraction and tuple-typed control flow for both the text and binary formats.
TODO:
- Extend Precompute/interpreter to handle tuple values
- C and JS API support/testing
- Figure out how to lower in stack IR
- Fuzzing
Diffstat (limited to 'src/ir/effects.h')
-rw-r--r-- | src/ir/effects.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ir/effects.h b/src/ir/effects.h index 9c1ed18f2..4f3af012f 100644 --- a/src/ir/effects.h +++ b/src/ir/effects.h @@ -452,6 +452,8 @@ struct EffectAnalyzer void visitUnreachable(Unreachable* curr) { branches = true; } void visitPush(Push* curr) { calls = true; } void visitPop(Pop* curr) { calls = true; } + void visitTupleMake(TupleMake* curr) {} + void visitTupleExtract(TupleExtract* curr) {} // Helpers |