[all-commits] [llvm/llvm-project] ea606c: Start of an llvm.coro.async implementation
Arnold Schwaighofer via All-commits
all-commits at lists.llvm.org
Wed Nov 4 07:34:23 PST 2020
Branch: refs/heads/master
Home: https://github.com/llvm/llvm-project
Commit: ea606cced0583d1dbd4c44680601d1d4e9a56e58
https://github.com/llvm/llvm-project/commit/ea606cced0583d1dbd4c44680601d1d4e9a56e58
Author: Arnold Schwaighofer <aschwaighofer at apple.com>
Date: 2020-11-04 (Wed, 04 Nov 2020)
Changed paths:
M llvm/docs/Coroutines.rst
M llvm/include/llvm/IR/Intrinsics.td
M llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
M llvm/lib/Transforms/Coroutines/CoroEarly.cpp
M llvm/lib/Transforms/Coroutines/CoroFrame.cpp
M llvm/lib/Transforms/Coroutines/CoroInstr.h
M llvm/lib/Transforms/Coroutines/CoroInternal.h
M llvm/lib/Transforms/Coroutines/CoroSplit.cpp
M llvm/lib/Transforms/Coroutines/Coroutines.cpp
A llvm/test/Transforms/Coroutines/coro-async.ll
Log Message:
-----------
Start of an llvm.coro.async implementation
This patch adds the `async` lowering of coroutines.
This will be used by the Swift frontend to lower async functions. In
contrast to the `retcon` lowering the frontend needs to be in control
over control-flow at suspend points as execution might be suspended at
these points.
This is very much work in progress and the implementation will change as
it evolves with the frontend. As such the documentation is lacking
detail as some of it might change.
rdar://70097093
Differential Revision: https://reviews.llvm.org/D90612
More information about the All-commits
mailing list