"llvm/git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "4d5284b44bf5565fd8579c071f5701c9297a9806"
[coroutines] CoroBegin from inner coroutines should be considered for spills
Summary: If a coroutine outer calls another coroutine inner and the inner coroutine body is inlined into the outer, coro.begin from the inner coroutine should be considered for spilling if accessed across suspends. Prior to this change, coroutine frame building code was not considering any coro.begins for spilling. With this change, we only ignore coro.begin for the current coroutine, but, any coro.begins that were inlined into the current coroutine are eligible for spills. Fixes PR34267 Reviewers: GorNishanov Subscribers: qcolombet, llvm-commits, EricWF Differential Revision: https://reviews.llvm.org/D37062 llvm-svn: 311556
Loading
Please register or sign in to comment