llvm-project/clang/lib/CodeGen
Gor Nishanov 5eb585836a [coroutines] Add codegen for await and yield expressions
Details:

Emit suspend expression which roughly looks like:

auto && x = CommonExpr();
if (!x.await_ready()) {
   llvm_coro_save();
   x.await_suspend(...);     (*)
   llvm_coro_suspend(); (**)
}
x.await_resume();
where the result of the entire expression is the result of x.await_resume()

(*) If x.await_suspend return type is bool, it allows to veto a suspend:
if (x.await_suspend(...))
   llvm_coro_suspend();
(**) llvm_coro_suspend() encodes three possible continuations as a switch instruction:

%where-to = call i8 @llvm.coro.suspend(...)
switch i8 %where-to, label %coro.ret [ ; jump to epilogue to suspend
  i8 0, label %yield.ready   ; go here when resumed
  i8 1, label %yield.cleanup ; go here when destroyed
]

llvm-svn: 298784
2017-03-26 02:18:05 +00:00
..
ABIInfo.h [IRGen] Make header standalone. 2017-01-30 15:39:18 +00:00
Address.h Work around build failure due to GCC 4.8.1 bug. We don't completely understand 2016-02-02 23:11:49 +00:00
BackendUtil.cpp [ThinLTO] Clang support for emitting minimized bitcode for thin link 2017-03-23 19:47:49 +00:00
CGAtomic.cpp Retry: [ubsan] Detect UB loads from bitfields 2017-03-09 16:06:27 +00:00
CGBlocks.cpp [CodeGen][Blocks] Refactor capture handling in code that generates 2017-03-06 16:23:04 +00:00
CGBlocks.h [CodeGen][ObjC] Block captures should inherit the type of the captured 2016-09-16 00:02:06 +00:00
CGBuilder.h IRGen: Remove an unused overload of CreateAlignedLoad. 2016-12-05 00:02:18 +00:00
CGBuiltin.cpp [X86] Implement __readgsqword (and the rest) as builtins (PR32373) 2017-03-22 19:13:13 +00:00
CGCUDANV.cpp Promote ConstantInitBuilder to be a public CodeGen API; it's 2017-03-02 20:04:19 +00:00
CGCUDARuntime.cpp Refactor call emission to package the function pointer together with 2016-10-26 23:46:34 +00:00
CGCUDARuntime.h [CUDA] Emit host-side 'shadows' for device-side global variables 2016-03-02 18:28:50 +00:00
CGCXX.cpp Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
CGCXXABI.cpp Refactor call emission to package the function pointer together with 2016-10-26 23:46:34 +00:00
CGCXXABI.h [CodeGen] Note where we add ABI-specific args in ctors. NFC. 2017-02-22 20:28:02 +00:00
CGCall.cpp Revert r298491 and r298494 which changed Clang's handling of 'nonnull' 2017-03-24 09:11:57 +00:00
CGCall.h Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
CGClass.cpp PR32042: Create inlined debug info for EmitInlinedInheritingCXXConstructorCall. 2017-02-27 21:30:05 +00:00
CGCleanup.cpp Don't assume cleanup emission preserves dominance in expr evaluation 2017-03-06 22:18:34 +00:00
CGCleanup.h Use the correct ObjC EH personality 2017-01-08 22:58:07 +00:00
CGCoroutine.cpp [coroutines] Add codegen for await and yield expressions 2017-03-26 02:18:05 +00:00
CGDebugInfo.cpp Modules: Use hash of PCM content for SIGNATURE 2017-03-13 18:45:08 +00:00
CGDebugInfo.h [DebugInfo] Append extended dereferencing mechanism to variables' DIExpression for targets that support more than one address space 2017-03-09 18:06:23 +00:00
CGDecl.cpp Fix Wdocumentation warning 2017-03-14 21:43:52 +00:00
CGDeclCXX.cpp Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
CGException.cpp Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
CGExpr.cpp Let llvm.objectsize be conservative with null pointers 2017-03-21 20:09:35 +00:00
CGExprAgg.cpp [coroutines] Add codegen for await and yield expressions 2017-03-26 02:18:05 +00:00
CGExprCXX.cpp Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
CGExprComplex.cpp [coroutines] Add codegen for await and yield expressions 2017-03-26 02:18:05 +00:00
CGExprConstant.cpp [CodeGen] Unique constant CompoundLiterals. 2016-12-28 07:27:40 +00:00
CGExprScalar.cpp [coroutines] Add codegen for await and yield expressions 2017-03-26 02:18:05 +00:00
CGGPUBuiltin.cpp [OpenMP][NVPTX][CUDA] Adding support for printf for an NVPTX OpenMP device. 2017-01-29 20:49:31 +00:00
CGLoopInfo.cpp [CodeGen] Pass objects that are expensive to copy by const ref. 2016-11-24 16:01:20 +00:00
CGLoopInfo.h [CodeGen] Pass objects that are expensive to copy by const ref. 2016-11-24 16:01:20 +00:00
CGObjC.cpp [CodeGen] Emit a CoreFoundation link guard when @available is used 2017-03-23 11:14:27 +00:00
CGObjCGNU.cpp [CodeGen][ObjC] Fix a bug where the type of an ivar wasn't encoded 2017-03-14 04:00:52 +00:00
CGObjCMac.cpp Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
CGObjCRuntime.cpp CodeGen: ensure that the runtime calling convention matches 2016-10-13 19:45:08 +00:00
CGObjCRuntime.h Clean up CGObjCMac's APIs for deriving class references. NFC. 2016-11-30 23:54:50 +00:00
CGOpenCLRuntime.cpp [OpenCL] Correct ndrange_t implementation 2017-02-16 12:27:47 +00:00
CGOpenCLRuntime.h [OpenCL] Augment pipe built-ins with pipe packet size and alignment. 2016-09-23 14:20:00 +00:00
CGOpenMPRuntime.cpp Use arg_begin() instead of getArgumentList().begin(), the argument list is an implementation detail 2017-03-16 18:55:46 +00:00
CGOpenMPRuntime.h [OpenMP] Parallel reduction on the NVPTX device. 2017-02-16 16:20:16 +00:00
CGOpenMPRuntimeNVPTX.cpp [OpenMP] Teams reduction on the NVPTX device. 2017-02-16 16:48:49 +00:00
CGOpenMPRuntimeNVPTX.h [OpenMP] Parallel reduction on the NVPTX device. 2017-02-16 16:20:16 +00:00
CGRecordLayout.h Make CodeGen headers self-contained. 2016-02-02 16:05:18 +00:00
CGRecordLayoutBuilder.cpp revert SVN r265702, r265640 2016-04-08 16:52:00 +00:00
CGStmt.cpp Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
CGStmtOpenMP.cpp [OpenMP] Teams reduction on the NVPTX device. 2017-02-16 16:48:49 +00:00
CGVTT.cpp CodeGen: Start using inrange annotations on vtable getelementptr. 2016-12-13 20:50:44 +00:00
CGVTables.cpp Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
CGVTables.h CodeGen: New vtable group representation: struct of vtable arrays. 2016-12-13 20:40:39 +00:00
CGValue.h [Sema] PR26444 fix crash when alignment value is >= 2**16 2016-03-02 06:48:47 +00:00
CMakeLists.txt Promote ConstantInitBuilder to be a public CodeGen API; it's 2017-03-02 20:04:19 +00:00
CodeGenABITypes.cpp Various improvements to the public IRGen interface. 2016-05-18 05:21:18 +00:00
CodeGenAction.cpp Fix -Wunused-lambda-capture warning in new code 2017-03-13 22:33:07 +00:00
CodeGenFunction.cpp [ubsan] Add a nullability sanitizer 2017-03-14 01:56:34 +00:00
CodeGenFunction.h [coroutines] Add codegen for await and yield expressions 2017-03-26 02:18:05 +00:00
CodeGenModule.cpp [CodeGen] Emit a CoreFoundation link guard when @available is used 2017-03-23 11:14:27 +00:00
CodeGenModule.h [CodeGen] Emit a CoreFoundation link guard when @available is used 2017-03-23 11:14:27 +00:00
CodeGenPGO.cpp Add a function to MD5 a file's contents. 2017-03-20 23:33:18 +00:00
CodeGenPGO.h Retry: [profiling] Fix profile counter increment when emitting selects (PR32019) 2017-02-25 06:35:45 +00:00
CodeGenTBAA.cpp revert SVN r265702, r265640 2016-04-08 16:52:00 +00:00
CodeGenTBAA.h Make the remaining headers self-contained. 2016-02-02 14:24:21 +00:00
CodeGenTypeCache.h Re-commit [OpenCL] AMDGCN: Fix size_t type 2016-08-19 05:17:25 +00:00
CodeGenTypes.cpp [OpenCL] Correct ndrange_t implementation 2017-02-16 12:27:47 +00:00
CodeGenTypes.h [CodeGen] Fix ExtParameterInfo bugs in C++ CodeGen code. 2017-02-23 22:07:35 +00:00
ConstantInitBuilder.cpp Further fixes and improvements to the ConstantInitBuilder API. 2017-03-06 19:04:16 +00:00
CoverageMappingGen.cpp Fix use-of-temporary with StringRef in code coverage 2016-11-07 17:28:04 +00:00
CoverageMappingGen.h [NFC] Header cleanup 2016-07-18 19:02:11 +00:00
EHScopeStack.h Retire llvm::alignOf in favor of C++11 alignof. 2016-10-20 14:27:22 +00:00
ItaniumCXXABI.cpp Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
MacroPPCallbacks.cpp Update C style comments to C++ style. 2017-02-10 00:20:26 +00:00
MacroPPCallbacks.h Wdocumentation fixes 2017-02-10 12:14:01 +00:00
MicrosoftCXXABI.cpp Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
ModuleBuilder.cpp [DebugInfo] Added support to Clang FE for generating debug info for preprocessor macros. 2017-02-09 22:07:24 +00:00
ObjectFilePCHContainerOperations.cpp Modules: Use hash of PCM content for SIGNATURE 2017-03-13 18:45:08 +00:00
README.txt
SanitizerMetadata.cpp Implement no_sanitize_address for global vars 2016-10-14 19:55:09 +00:00
SanitizerMetadata.h
SwiftCallingConv.cpp swiftcc: Add an api to query whether a target ABI stores swifterror in a register 2016-12-01 18:07:38 +00:00
TargetInfo.cpp Update Clang for LLVM rename AttributeSet -> AttributeList 2017-03-21 16:57:30 +00:00
TargetInfo.h Re-commit r289252 and r289285, and fix PR31374 2016-12-15 08:09:08 +00:00
VarBypassDetector.cpp [CodeGen] Don't emit lifetime intrinsics for some local variables 2016-10-26 05:42:30 +00:00
VarBypassDetector.h [CodeGen] Don't emit lifetime intrinsics for some local variables 2016-10-26 05:42:30 +00:00

README.txt

IRgen optimization opportunities.

//===---------------------------------------------------------------------===//

The common pattern of
--
short x; // or char, etc
(x == 10)
--
generates an zext/sext of x which can easily be avoided.

//===---------------------------------------------------------------------===//

Bitfields accesses can be shifted to simplify masking and sign
extension. For example, if the bitfield width is 8 and it is
appropriately aligned then is is a lot shorter to just load the char
directly.

//===---------------------------------------------------------------------===//

It may be worth avoiding creation of alloca's for formal arguments
for the common situation where the argument is never written to or has
its address taken. The idea would be to begin generating code by using
the argument directly and if its address is taken or it is stored to
then generate the alloca and patch up the existing code.

In theory, the same optimization could be a win for block local
variables as long as the declaration dominates all statements in the
block.

NOTE: The main case we care about this for is for -O0 -g compile time
performance, and in that scenario we will need to emit the alloca
anyway currently to emit proper debug info. So this is blocked by
being able to emit debug information which refers to an LLVM
temporary, not an alloca.

//===---------------------------------------------------------------------===//

We should try and avoid generating basic blocks which only contain
jumps. At -O0, this penalizes us all the way from IRgen (malloc &
instruction overhead), all the way down through code generation and
assembly time.

On 176.gcc:expr.ll, it looks like over 12% of basic blocks are just
direct branches!

//===---------------------------------------------------------------------===//