aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2021-08-01 19:37:36 -0700
committerHeejin Ahn <aheejin@gmail.com>2021-08-04 14:05:33 -0700
commit31a71a393f65d9e07b5b0756fef9dd16690950ee (patch)
tree44104366f5b3857f1f29ce07f6117b831c73fb75 /clang/lib/Frontend/CompilerInvocation.cpp
parent9c19b36f1c61fb282c2625c831555fb2f55e3df4 (diff)
downloadllvm-31a71a393f65d9e07b5b0756fef9dd16690950ee.zip
llvm-31a71a393f65d9e07b5b0756fef9dd16690950ee.tar.gz
llvm-31a71a393f65d9e07b5b0756fef9dd16690950ee.tar.bz2
[WebAssembly] Make result of 'catch' inst variadic
`catch` instruction can have any number of result values depending on its tag, but so far we have only needed a single i32 return value for C++ exception so the instruction was specified that way. But using the instruction for SjLj handling requires multiple return values. This makes `catch` instruction's results variadic and moves selection of `throw` and `catch` instruction from ISelLowering to ISelDAGToDAG. Moving `catch` to ISelDAGToDAG is necessary because I am not aware of a good way to do instruction selection for variadic output instructions in TableGen. This also moves `throw` because 1. `throw` and `catch` share the same utility function and 2. there is really no reason we should do that in ISelLowering in the first place. What we do is mostly the same in both places, and moving them to ISelDAGToDAG allows us to remove unnecessary mid-level nodes for `throw` and `catch` in WebAssemblyISD.def and WebAssemblyInstrInfo.td. This also adds handling for new `catch` instruction to AsmTypeCheck. Reviewed By: dschuff, tlively Differential Revision: https://reviews.llvm.org/D107423
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
0 files changed, 0 insertions, 0 deletions