diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2022-09-30 16:20:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-30 14:20:23 -0700 |
commit | 62d056f889d4b94562a104e2fcad318857550d5b (patch) | |
tree | 7d79ef42e1bb3dab66f1ca4a61084233c8c7fb40 /src/passes/DuplicateImportElimination.cpp | |
parent | 52ef197041b08254b581b3bd91d6aa56efc61aef (diff) | |
download | binaryen-62d056f889d4b94562a104e2fcad318857550d5b.tar.gz binaryen-62d056f889d4b94562a104e2fcad318857550d5b.tar.bz2 binaryen-62d056f889d4b94562a104e2fcad318857550d5b.zip |
Fix bugs with copying expressions (#5099)
It does not make sense to construct an `Expression` directly because all
expressions must be specific expressions. However, we previously allowed
constructing Expressions, and in particular we allowed them to be copy
constructed. Unrelatedly, `Fatal::operator<<` took its argument by value.
Together, these two facts produced UB when printing Expressions in fatal error
messages because a new Expression would be copy constructed with the original
expression ID but without any of the actual data from the original specific
expression. For example, when trying to print a Block, the printing code would
try to look at the expression list, but the expression list would be junk stack
data because the copied Expression does not contain an expression list.
Fix the problem by making Expression's constructors visible only to its
subclasses and making `Fatal::operator<<` take its argument by forwarding
reference instead of by value.
Diffstat (limited to 'src/passes/DuplicateImportElimination.cpp')
0 files changed, 0 insertions, 0 deletions