This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3127862 [InstCombine] add helper functions for foldICmpWithConstant; NFCI new 6795b93 [Coroutines] Part 7: Split coroutine into subfunctions new d179884 [Hexagon] Standardize next batch of pseudo instructions
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: lib/Target/Hexagon/HexagonBitSimplify.cpp | 10 +- lib/Target/Hexagon/HexagonBitTracker.cpp | 6 +- lib/Target/Hexagon/HexagonConstPropagation.cpp | 14 +- lib/Target/Hexagon/HexagonFrameLowering.cpp | 22 +- lib/Target/Hexagon/HexagonISelDAGToDAG.cpp | 30 +-- lib/Target/Hexagon/HexagonISelLowering.cpp | 2 +- lib/Target/Hexagon/HexagonInstrInfo.cpp | 19 +- lib/Target/Hexagon/HexagonInstrInfo.td | 24 +- lib/Target/Hexagon/HexagonInstrInfoVector.td | 10 +- lib/Target/Hexagon/HexagonRegisterInfo.cpp | 4 +- lib/Transforms/Coroutines/CMakeLists.txt | 3 +- lib/Transforms/Coroutines/CoroCleanup.cpp | 75 +++++- lib/Transforms/Coroutines/CoroEarly.cpp | 33 ++- lib/Transforms/Coroutines/CoroFrame.cpp | 104 ++++++++ lib/Transforms/Coroutines/CoroInstr.h | 68 ++++++ lib/Transforms/Coroutines/CoroInternal.h | 34 +++ lib/Transforms/Coroutines/CoroSplit.cpp | 315 ++++++++++++++++++++++++- lib/Transforms/Coroutines/Coroutines.cpp | 172 +++++++++++++- test/Transforms/Coroutines/coro-split-00.ll | 61 +++++ test/Transforms/Coroutines/coro-split-01.ll | 60 +++++ test/Transforms/Coroutines/restart-trigger.ll | 37 ++- 21 files changed, 1002 insertions(+), 101 deletions(-) create mode 100644 lib/Transforms/Coroutines/CoroFrame.cpp create mode 100644 test/Transforms/Coroutines/coro-split-00.ll create mode 100644 test/Transforms/Coroutines/coro-split-01.ll