clang-1/lib/CodeGen
Fariborz Jahanian 6fba746486 Patch for destruction of array of objects on block exit.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85512 91177308-0d34-0410-b5e6-96231b3b80d8
2009-10-29 16:22:54 +00:00
..
ABIInfo.h x86-64 ABI: If a type is a C++ record with either a non-trivial destructor or a non-trivial copy constructor, it should be passed in a pointer. Daniel, plz review. 2009-09-16 15:53:40 +00:00
CGBlocks.cpp Remove some misguided code. 2009-10-22 01:31:24 +00:00
CGBlocks.h Refactor. 2009-10-21 18:23:01 +00:00
CGBuilder.h Disable generation of basic block names in NDEBUG mode. 2008-11-12 00:01:12 +00:00
CGBuiltin.cpp __builtin_object_size refinements. Ensure we handle expressions with 2009-10-27 22:09:17 +00:00
CGCXX.cpp Minor cleanup. 2009-10-28 21:07:28 +00:00
CGCXX.h Remove tabs, and whitespace cleanups. 2009-09-09 15:08:12 +00:00
CGCXXClass.cpp Simplify pointer creation with the new Type::getInt*Ptr methods. 2009-10-13 10:07:13 +00:00
CGCXXExpr.cpp Fix a lame regression in IR gen for C++ delete expressions. PR5102 2009-10-01 05:49:51 +00:00
CGCXXTemp.cpp If a function call returns a reference, don't bind it to a temporary. 2009-09-14 01:30:44 +00:00
CGCall.cpp Set OptimizeForSize LLVM function attribute with -Os. 2009-10-27 19:48:08 +00:00
CGCall.h Change CodeGenModule::ConstructTypeAttributes to return the calling convention 2009-09-12 00:59:20 +00:00
CGDebugInfo.cpp Fixup the return type of functions. 2009-10-23 01:52:13 +00:00
CGDebugInfo.h Fixup the return type of functions. 2009-10-23 01:52:13 +00:00
CGDecl.cpp Patch for destruction of array of objects on block exit. 2009-10-29 16:22:54 +00:00
CGExpr.cpp random tidying 2009-10-28 17:39:19 +00:00
CGExprAgg.cpp Add Code gen support for '->*' operator which fell 2009-10-26 21:58:25 +00:00
CGExprComplex.cpp Change all the Type::getAsFoo() methods to specializations of Type::getAs(). 2009-09-21 23:43:11 +00:00
CGExprConstant.cpp make clang emit undefs for padding of structs and unions instead of zeros. this enables constant compaction optimizations. 2009-10-29 11:27:06 +00:00
CGExprScalar.cpp Implement clang support for indirect branch and address of label 2009-10-28 23:59:40 +00:00
CGObjC.cpp Fix crash when synthesizing property setters when the property type and ivar 2009-10-27 19:21:30 +00:00
CGObjCGNU.cpp There is now only one version of eh.selector and eh.typeid.for. 2009-10-14 16:13:30 +00:00
CGObjCMac.cpp Avoid std::string concatenation. 2009-10-19 01:21:19 +00:00
CGObjCRuntime.h Patch fixes a code gen. bug in generation of objc_assign_ivar 2009-09-24 22:25:38 +00:00
CGRecordLayoutBuilder.cpp Store the key function of a record decl inside CGRecordLayout. 2009-10-12 21:16:22 +00:00
CGRecordLayoutBuilder.h Update location of DataTypes.h to reflect move in LLVM with r85086. 2009-10-26 01:37:10 +00:00
CGRtti.cpp Change mangleCXXVtable and mangleCXXRtti to take CXXRecordDecls instead of QualTypes. 2009-10-11 21:24:51 +00:00
CGStmt.cpp Implement clang support for indirect branch and address of label 2009-10-28 23:59:40 +00:00
CGValue.h Patch fixes a code gen. bug in generation of objc_assign_ivar 2009-09-24 22:25:38 +00:00
CGVtable.cpp Refactor a bit. 2009-10-28 20:44:03 +00:00
CGVtable.h Refine handling for non-virtual bases in return value adjustments for 2009-10-13 22:54:56 +00:00
CMakeLists.txt Add CGVtable.cpp to CMakeLists. 2009-10-11 22:22:38 +00:00
CodeGenFunction.cpp Implement clang support for indirect branch and address of label 2009-10-28 23:59:40 +00:00
CodeGenFunction.h optimize out some ifdefs. 2009-10-29 00:22:00 +00:00
CodeGenModule.cpp Implement proper linkage for explicit instantiation declarations of 2009-10-27 23:26:40 +00:00
CodeGenModule.h Enable "debug info attached to an instruction" mode. 2009-10-12 23:31:25 +00:00
CodeGenTypes.cpp Store the builtin types as CanQualTypes. Expand a bit on the CanQual API, 2009-10-23 23:03:21 +00:00
CodeGenTypes.h Store the key function of a record decl inside CGRecordLayout. 2009-10-12 21:16:22 +00:00
Makefile Allow customization for the producer information in the debug output. 2009-10-09 18:38:12 +00:00
Mangle.cpp Mangle based on the declaration we're given, not the canonical 2009-10-28 16:31:34 +00:00
Mangle.h Add mangling for VTTs. 2009-10-28 01:51:46 +00:00
ModuleBuilder.cpp Remove tabs, and whitespace cleanups. 2009-09-09 15:08:12 +00:00
README.txt These IRgen improvements have been done. 2009-07-23 03:03:07 +00:00
TargetABIInfo.cpp Add AuroraUX ABI Triple in correct place. 2009-10-21 11:58:24 +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!

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