hanchenye-llvm-project/clang/lib/CodeGen
Cameron Esfahani 556d91e2c3 Clean up some Triple usage in clang.
llvm-svn: 190737
2013-09-14 01:09:11 +00:00
..
ABIInfo.h
BackendUtil.cpp Add support for -fsanitize-blacklist and default blacklists for DFSan. 2013-08-14 18:54:18 +00:00
CGAtomic.cpp
CGBlocks.cpp Simplify/clean up debug info suppression in CodeGenFunction 2013-08-26 20:33:21 +00:00
CGBlocks.h
CGBuilder.h
CGBuiltin.cpp Restore the sqrt -> llvm.sqrt mapping in fast-math mode 2013-09-12 23:57:55 +00:00
CGCUDANV.cpp
CGCUDARuntime.cpp
CGCUDARuntime.h
CGCXX.cpp Abstract out virtual calls and virtual function prologue code generation; implement them for -cxx-abi microsoft 2013-08-21 06:25:03 +00:00
CGCXXABI.cpp [ms-cxxabi] Implement guard variables for static initialization 2013-09-10 20:14:30 +00:00
CGCXXABI.h [ms-cxxabi] Implement guard variables for static initialization 2013-09-10 20:14:30 +00:00
CGCall.cpp Fix constructor-related typos. 2013-09-09 14:48:42 +00:00
CGCall.h
CGClass.cpp Disable the bool and enum sanitizers when emitting the implicitly-defined copy 2013-09-11 02:03:20 +00:00
CGCleanup.cpp
CGCleanup.h
CGDebugInfo.cpp DebugInfo: omit debug info for friends 2013-09-13 18:45:00 +00:00
CGDebugInfo.h DebugInfo: omit debug info for friends 2013-09-13 18:45:00 +00:00
CGDecl.cpp Started implementing variable templates. Top level declarations should be fully supported, up to some limitations documented as FIXMEs or TODO. Static data member templates work very partially. Static data member templates of class templates need particular attention... 2013-08-06 01:03:05 +00:00
CGDeclCXX.cpp [ms-cxxabi] Mangle dynamic initializer stubs the same way MSVC does 2013-09-10 20:43:12 +00:00
CGException.cpp
CGExpr.cpp Fix 2 cases of uninitialized reads of an invalid PresumedLoc. 2013-09-11 12:33:58 +00:00
CGExprAgg.cpp Make IgnoreParens() look through ChooseExprs. 2013-07-20 00:40:58 +00:00
CGExprCXX.cpp CodeGen: Unify two implementations of canDevirtualizeMemberFunctionCall. 2013-08-25 22:46:27 +00:00
CGExprComplex.cpp Make IgnoreParens() look through ChooseExprs. 2013-07-20 00:40:58 +00:00
CGExprConstant.cpp Make IgnoreParens() look through ChooseExprs. 2013-07-20 00:40:58 +00:00
CGExprScalar.cpp UBSan: Fix alignment checks emitted in downcasts. 2013-08-08 01:08:17 +00:00
CGObjC.cpp Simplify/clean up debug info suppression in CodeGenFunction 2013-08-26 20:33:21 +00:00
CGObjCGNU.cpp Fix GNU ObjC ABI for a message returning a struct. 2013-07-26 00:53:29 +00:00
CGObjCMac.cpp Clean up some Triple usage in clang. 2013-09-14 01:09:11 +00:00
CGObjCRuntime.cpp
CGObjCRuntime.h
CGOpenCLRuntime.cpp
CGOpenCLRuntime.h
CGRTTI.cpp Use llvm::array_lengthof to replace sizeof(array)/sizeof(array[0]). 2013-07-15 03:38:40 +00:00
CGRecordLayout.h
CGRecordLayoutBuilder.cpp
CGStmt.cpp OpenMP: Data-sharing attributes analysis and clause 'shared' (fixed test threadprivate_messages.cpp) 2013-09-06 18:03:48 +00:00
CGVTT.cpp
CGVTables.cpp Don't emit an available_externally vtable pointing to linkonce_odr funcs. 2013-09-03 21:05:13 +00:00
CGVTables.h Abstract out virtual calls and virtual function prologue code generation; implement them for -cxx-abi microsoft 2013-08-21 06:25:03 +00:00
CGValue.h
CMakeLists.txt
CodeGenAction.cpp PR16214, PR14467: DebugInfo: use "RequireCompleteType" to decide when to emit the full definition of a type in -flimit-debug-info 2013-07-13 21:08:14 +00:00
CodeGenFunction.cpp Generate code for the move assignment operator using memcpy, the same as we do 2013-09-10 05:14:39 +00:00
CodeGenFunction.h Revert r189649 because it was breaking sanitizer bots. 2013-08-30 08:53:09 +00:00
CodeGenModule.cpp Do not emit duplicate global initializers for template static data members inside namespaces 2013-09-04 21:07:37 +00:00
CodeGenModule.h Abstract out virtual calls and virtual function prologue code generation; implement them for -cxx-abi microsoft 2013-08-21 06:25:03 +00:00
CodeGenTBAA.cpp Don't use mangleCXXRTTIName in TBAA for C code. 2013-08-21 20:58:45 +00:00
CodeGenTBAA.h
CodeGenTypes.cpp DebugInfo: Unify & optimize the lazy addition of record types 2013-08-15 20:49:17 +00:00
CodeGenTypes.h
EHScopeStack.h
ItaniumCXXABI.cpp [ms-cxxabi] Implement guard variables for static initialization 2013-09-10 20:14:30 +00:00
Makefile
MicrosoftCXXABI.cpp [ms-cxxabi] Implement guard variables for static initialization 2013-09-10 20:14:30 +00:00
MicrosoftVBTables.cpp
MicrosoftVBTables.h
ModuleBuilder.cpp PR16933: Don't try to codegen things after we've seen errors. 2013-08-19 21:02:26 +00:00
README.txt
TargetInfo.cpp Clean up some Triple usage in clang. 2013-09-14 01:09:11 +00:00
TargetInfo.h Partial revert of r185568. 2013-07-24 21:22:01 +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!

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