summaryrefslogtreecommitdiff
path: root/test/CodeGenCoroutines
Commit message (Expand)AuthorAgeFilesLines
* Remove unreachable blocks before splitting a coroutine.John McCall2019-08-141-0/+46
* IR: print value numbers for unnamed function argumentsTim Northover2019-08-033-5/+5
* Revert "[CodeGenCXX] Treat 'this' as noalias in constructors"Sean Fertile2018-10-152-8/+8
* [CodeGenCXX] Treat 'this' as noalias in constructorsAnton Bikineev2018-10-102-8/+8
* [Coroutines] Less IR for noexcept await_resumeBrian Gesiak2018-06-231-6/+33
* [coroutines] Pass implicit object parameter to promise ctor (fix BUG37604)Gor Nishanov2018-05-281-0/+25
* [Coroutines] Catch exceptions in await_resumeBrian Gesiak2018-05-042-0/+85
* [coroutines] Add __builtin_coro_noop => llvm.coro.noopGor Nishanov2018-04-021-0/+3
* [Coroutines] Find custom allocators in class scopeBrian Gesiak2018-04-011-0/+26
* [MS] Don't escape MS C++ names with \01Reid Kleckner2018-03-164-15/+15
* [MS] Always use base dtors in place of complete/vbase dtors when possibleReid Kleckner2018-03-163-3/+3
* Bring r325915 back.Rafael Espindola2018-02-231-1/+1
* Revert "Start setting dso_local for COFF."Rafael Espindola2018-02-231-1/+1
* Start setting dso_local for COFF.Rafael Espindola2018-02-231-1/+1
* [Coroutines] Use allocator overload when availableBrian Gesiak2018-02-153-7/+35
* [coroutines] Fix application of NRVO to Coroutine "Gro" or return object.Eric Fiselier2018-02-012-1/+93
* Revert "[coroutines] Fix application of NRVO to Coroutine "Gro" or return obj...Eric Fiselier2018-01-302-87/+1
* [coroutines] Fix application of NRVO to Coroutine "Gro" or return object.Eric Fiselier2018-01-292-1/+87
* [coroutines] Pass coro func args to promise ctorBrian Gesiak2018-01-241-0/+29
* [coroutines] Promote cleanup.dest.slot allocas to registers to avoid storing ...Gor Nishanov2017-11-111-0/+26
* [coroutines] Support coroutine-handle returning await-suspend (i.e symmetric ...Gor Nishanov2017-08-251-0/+18
* [coroutines] Evaluate the operand of void `co_return` expressions.Eric Fiselier2017-07-311-0/+14
* [coroutines] Allow co_await and co_yield expressions that return an lvalue to...Eric Fiselier2017-06-151-1/+49
* [coroutines] Fix rebuilding of dependent coroutine parametersEric Fiselier2017-06-031-0/+34
* CGCleanup: (NFC) add another test for r304335 - Don't try to spill static all...Gor Nishanov2017-06-011-0/+38
* [coroutines] Add support for coroutines with non-scalar parametersGor Nishanov2017-05-241-0/+95
* [coroutines] Make generic lambda coroutines workGor Nishanov2017-05-241-0/+58
* [coroutines] [NFC] Add tests for return_void, unhandled_exception and promise...Gor Nishanov2017-05-244-0/+238
* [coroutines] Implement correct GRO lifetimeGor Nishanov2017-05-241-0/+86
* [coroutines] Skip over passthrough operator co_awaitGor Nishanov2017-05-231-0/+7
* [coroutines] Add emission of initial and final suspendsGor Nishanov2017-05-232-9/+52
* [coroutines] Add support for deallocation elisionGor Nishanov2017-05-231-0/+8
* [coroutines] Replace all coro.frame builtins with an SSA value of coro.beginGor Nishanov2017-05-233-22/+15
* [coroutines] Add support for allocation elisionGor Nishanov2017-05-231-1/+10
* [coroutines] Fix coro-eh-cleanup.cpp testGor Nishanov2017-05-221-1/+1
* [coroutines] Wrap the body of the coroutine in try-catchGor Nishanov2017-05-222-20/+55
* [coroutines] Build GRO declaration and return GRO statementGor Nishanov2017-05-221-2/+12
* [coroutines] Fix building of new/delete expressions when get_return_object_on...Eric Fiselier2017-04-181-3/+14
* Rename coroutine warning when unhandled_exception() is missingEric Fiselier2017-04-171-2/+4
* Revert r300504 - [coroutines] Fix rebuilding of implicit and dependent corout...Eric Fiselier2017-04-171-14/+3
* [coroutines] Fix rebuilding of implicit and dependent coroutine statements.Eric Fiselier2017-04-171-3/+14
* Revert r300420 - [coroutines] Fix building of new/delete expressions when get...Eric Fiselier2017-04-161-14/+3
* [coroutines] Fix building of new/delete expressions when get_return_object_on...Eric Fiselier2017-04-161-3/+14
* [coroutines] Add coro.end handlingGor Nishanov2017-04-051-0/+74
* [coroutines] Add cleanup for compiler injected objects/allocations in corouti...Gor Nishanov2017-04-012-14/+80
* [coroutines] Handle get_return_object_on_allocation_failureGor Nishanov2017-03-271-3/+30
* [coroutines] Add codegen for await and yield expressionsGor Nishanov2017-03-261-0/+230
* [coroutines] Build and pass coroutine_handle to await_suspendGor Nishanov2017-03-092-2/+32
* [coroutines] update coro_end builtin to match llvmGor Nishanov2017-03-071-1/+1
* [coroutines] Add co_return statement emissionGor Nishanov2017-03-062-5/+57