llvm-project/clang/lib/CodeGen
Nico Weber e68b9f3e0a Reland r230460 with a test fix for -Asserts builds.
Original CL description:
Produce less broken basic block sequences for __finally blocks.

The way cleanups (such as PerformSEHFinally) get emitted is that codegen
generates some initialization code, then calls the cleanup's Emit() with the
insertion point set to a good place, then the cleanup is supposed to emit its
stuff, and then codegen might tack in a jump or similar to where the insertion
point is after the cleanup.

The PerformSEHFinally cleanup tries to just stash away the block it's supposed
to codegen into, and then does codegen later, into that stashed block.  However,
after codegen'ing the __finally block, it used to set the insertion point to
the finally's continuation block (where the __finally cleanup goes when its body
is completed after regular, non-exceptional control flow).  That's not correct,
as that block can (and generally does) already ends in a jump.  Instead,
remember the insertion point that was current before the __finally got emitted,
and restore that.

Fixes two of the crashes in PR22553.

llvm-svn: 230503
2015-02-25 16:25:00 +00:00
..
ABIInfo.h Fix invalid calling convention used for libcalls on ARM. 2014-12-02 16:04:58 +00:00
BackendUtil.cpp Add -funique-section-names and -fno-unique-section-names options. 2015-02-20 18:08:57 +00:00
CGAtomic.cpp Try to unbreak the Hexagon bot 2015-02-14 02:18:14 +00:00
CGBlocks.cpp Prefer SmallVector::append/insert over push_back loops. Clang edition. 2015-02-17 16:48:30 +00:00
CGBlocks.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
CGBuilder.h Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requiring the macro. NFC; Clang edition. 2015-02-15 22:54:08 +00:00
CGBuiltin.cpp Only lower __builtin_setjmp / __builtin_longjmp to 2015-02-23 20:23:47 +00:00
CGCUDANV.cpp [C++11] Add 'override' keyword to virtual methods that override their base class. 2014-03-12 06:41:41 +00:00
CGCUDARuntime.cpp Pass expressions instead of argument ranges to EmitCall/EmitCXXConstructorCall. 2014-08-21 20:26:47 +00:00
CGCUDARuntime.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
CGCXX.cpp Don't use a doc comment in a function body. 2015-01-12 21:22:27 +00:00
CGCXXABI.cpp MS ABI: Implement thread_local for global variables 2014-10-05 05:05:40 +00:00
CGCXXABI.h MS ABI: Add CodeGen support for rethrowing MS C++ exceptions 2014-11-25 07:20:20 +00:00
CGCall.cpp Prefer SmallVector::append/insert over push_back loops. Clang edition. 2015-02-17 16:48:30 +00:00
CGCall.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
CGClass.cpp Implement Control Flow Integrity for virtual calls. 2015-02-20 20:30:56 +00:00
CGCleanup.cpp Revert accidental commit. 2015-02-17 16:53:08 +00:00
CGCleanup.h Remove two unused methods. No behavior change. 2015-02-22 00:27:32 +00:00
CGDebugInfo.cpp Fix PR19351. While building up a composite type it is important to use 2015-02-11 17:45:15 +00:00
CGDebugInfo.h CodeGen: Update for LLVM API change in r228030 2015-02-03 21:25:34 +00:00
CGDecl.cpp Address review feedback for r228003. 2015-02-03 20:00:54 +00:00
CGDeclCXX.cpp [OPENMP] Rename methods of OpenMPRuntime class. NFC. 2015-02-25 08:32:46 +00:00
CGException.cpp Reland r230460 with a test fix for -Asserts builds. 2015-02-25 16:25:00 +00:00
CGExpr.cpp [OPENMP] Rename methods of OpenMPRuntime class. NFC. 2015-02-25 08:32:46 +00:00
CGExprAgg.cpp Revert "Revert r229082 for a bit, it caused PR22577." 2015-02-14 01:35:12 +00:00
CGExprCXX.cpp DR1748: the reserved placement allocation functions have undefined behavior if 2015-02-14 01:52:20 +00:00
CGExprComplex.cpp CodeGen: _Atomic(_Complex) shouldn't crash 2015-02-14 01:48:17 +00:00
CGExprConstant.cpp CodeGen: Optimize emssion of zeroinitialzied arrays 2014-12-28 23:46:59 +00:00
CGExprScalar.cpp Fix typoo. 2015-02-12 21:23:20 +00:00
CGLoopInfo.cpp CodeGen: Update LoopAttributes for LLVM API change 2015-01-19 21:30:48 +00:00
CGLoopInfo.h Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requiring the macro. NFC; Clang edition. 2015-02-15 22:54:08 +00:00
CGObjC.cpp Prefer SmallVector::append/insert over push_back loops. Clang edition. 2015-02-17 16:48:30 +00:00
CGObjCGNU.cpp Replace size() calls on containers with empty() calls where appropriate. NFC 2015-01-23 15:36:10 +00:00
CGObjCMac.cpp Implement the __builtin_call_with_static_chain GNU extension. 2014-12-12 23:41:25 +00:00
CGObjCRuntime.cpp Update for llvm api change. 2014-06-04 18:51:46 +00:00
CGObjCRuntime.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
CGOpenCLRuntime.cpp [C++11] Use 'nullptr'. CodeGen edition. 2014-05-21 05:09:00 +00:00
CGOpenCLRuntime.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
CGOpenMPRuntime.cpp [OPENMP] Rename methods of OpenMPRuntime class. NFC. 2015-02-25 08:32:46 +00:00
CGOpenMPRuntime.h [OPENMP] Rename methods of OpenMPRuntime class. NFC. 2015-02-25 08:32:46 +00:00
CGRecordLayout.h Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requiring the macro. NFC; Clang edition. 2015-02-15 22:54:08 +00:00
CGRecordLayoutBuilder.cpp Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requiring the macro. NFC; Clang edition. 2015-02-15 22:54:08 +00:00
CGStmt.cpp [ms] Implement codegen for __leave. 2015-02-12 23:16:11 +00:00
CGStmtOpenMP.cpp [OPENMP] Rename methods of OpenMPRuntime class. NFC. 2015-02-25 08:32:46 +00:00
CGVTT.cpp Use a trivial comdat for C++ tables. 2015-01-15 23:18:01 +00:00
CGVTables.cpp CodeGenModule::EmitVTableBitSetEntries: Add check for identical bit set entries. 2015-02-24 01:12:53 +00:00
CGVTables.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
CGValue.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
CMakeLists.txt Revert "Wrap clang module files in a Mach-O, ELF, or COFF container." 2015-02-25 02:44:04 +00:00
CodeGenABITypes.cpp Implement the __builtin_call_with_static_chain GNU extension. 2014-12-12 23:41:25 +00:00
CodeGenAction.cpp Add InlineAsmDiagnosticHandler for bitcode input 2015-02-12 02:06:55 +00:00
CodeGenFunction.cpp [OPENMP] Rename methods of OpenMPRuntime class. NFC. 2015-02-25 08:32:46 +00:00
CodeGenFunction.h Implement Control Flow Integrity for virtual calls. 2015-02-20 20:30:56 +00:00
CodeGenModule.cpp [OPENMP] Rename methods of OpenMPRuntime class. NFC. 2015-02-25 08:32:46 +00:00
CodeGenModule.h Implement Control Flow Integrity for virtual calls. 2015-02-20 20:30:56 +00:00
CodeGenPGO.cpp InstrProf: Run clang-format to fix some strange indentation (NFC) 2015-02-23 19:27:00 +00:00
CodeGenPGO.h InstrProf: Use LLVM's -instrprof pass for profiling 2014-12-08 19:04:51 +00:00
CodeGenTBAA.cpp [C++11] Use 'nullptr'. CodeGen edition. 2014-05-21 05:09:00 +00:00
CodeGenTBAA.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
CodeGenTypes.cpp Use nullptr to silence -Wsentinel when self-hosting on Windows 2014-12-01 22:02:27 +00:00
CodeGenTypes.h Implement the __builtin_call_with_static_chain GNU extension. 2014-12-12 23:41:25 +00:00
CoverageMappingGen.cpp InstrProf: Make sure counts in lambdas don't escape to the parent scope 2015-02-24 04:13:56 +00:00
CoverageMappingGen.h [cleanup] Re-sort *all* #include lines with llvm/utils/sort_includes.py 2015-01-14 11:29:14 +00:00
EHScopeStack.h Add comments for two CleanupKinds. 2015-02-25 03:58:36 +00:00
ItaniumCXXABI.cpp Implement Control Flow Integrity for virtual calls. 2015-02-20 20:30:56 +00:00
Makefile
MicrosoftCXXABI.cpp MS ABI: Implement support for 'novtable' 2015-02-02 10:22:20 +00:00
ModuleBuilder.cpp Wrap to 80 columns. No behavior change. 2015-01-17 02:27:54 +00:00
README.txt
SanitizerMetadata.cpp IR: Update clang for Metadata/Value split in r223802 2014-12-09 18:39:32 +00:00
SanitizerMetadata.h Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requiring the macro. NFC; Clang edition. 2015-02-15 22:54:08 +00:00
TargetInfo.cpp ARM: Simplify PCS handling. 2015-02-24 17:22:40 +00:00
TargetInfo.h Only lower __builtin_setjmp / __builtin_longjmp to 2015-02-23 20:23:47 +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!

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