llvm-project/clang/lib/CodeGen
Douglas Gregor d2fa766ad0 Introduce a new type, PackExpansionType, to capture types that are
pack expansions, e.g. given

  template<typename... Types> struct tuple;

  template<typename... Types>
  struct tuple_of_refs {
    typedef tuple<Types&...> types;
  };

the type of the "types" typedef is a PackExpansionType whose pattern
is Types&. 

This commit introduces support for creating pack expansions for
template type arguments, as above, but not for any other kind of pack
expansion, nor for any form of instantiation.

llvm-svn: 122223
2010-12-20 02:24:11 +00:00
..
ABIInfo.h Fix Whitespace. 2010-10-19 06:39:39 +00:00
BackendUtil.cpp Implement -cl-mad-enable 2010-12-04 01:51:33 +00:00
CGBlocks.cpp IR Gen. part of API support for __block cxx 2010-12-02 17:02:11 +00:00
CGBlocks.h IR Gen. part of API support for __block cxx 2010-12-02 17:02:11 +00:00
CGBuilder.h Make CGBuilderTy a typedef again; its functionality has been rolled back 2010-07-06 18:43:48 +00:00
CGBuiltin.cpp Implement builtins for Neon half-precision float conversions. 2010-12-15 23:36:44 +00:00
CGCXX.cpp BuildVirtualCall doesn't need to take a reference to a pointer. 2010-11-28 17:53:32 +00:00
CGCXX.h Remove tabs, and whitespace cleanups. 2009-09-09 15:08:12 +00:00
CGCXXABI.cpp Make the destructor be the 'vtable anchor' of the CGCXXABI class. 2010-11-28 17:50:09 +00:00
CGCXXABI.h Make the destructor be the 'vtable anchor' of the CGCXXABI class. 2010-11-28 17:50:09 +00:00
CGCall.cpp Fix Whitespace. 2010-10-19 06:39:39 +00:00
CGCall.h relax the CGFunctionInfo::CGFunctionInfo ctor to allow any sequence 2010-06-29 18:13:52 +00:00
CGClass.cpp More anonymous struct/union redesign. This one deals with anonymous field used in a constructor initializer list: 2010-12-04 09:14:42 +00:00
CGDebugInfo.cpp Added ParenType type node. 2010-12-10 16:29:40 +00:00
CGDebugInfo.h Remove unused parameter. getContextDescriptor() and getOrCreateNameSpace(). 2010-12-09 00:33:05 +00:00
CGDecl.cpp IR Gen. part of API support for __block cxx 2010-12-02 17:02:11 +00:00
CGDeclCXX.cpp Simplify the logic for emitting guard variables for template static 2010-11-06 09:44:32 +00:00
CGException.cpp Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical 2010-12-06 08:20:24 +00:00
CGException.h ARM EH uses a different personality function in C. 2010-11-07 02:35:25 +00:00
CGExpr.cpp Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical 2010-12-06 08:20:24 +00:00
CGExprAgg.cpp Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical 2010-12-06 08:20:24 +00:00
CGExprCXX.cpp PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and 2010-12-07 08:25:34 +00:00
CGExprComplex.cpp Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical 2010-12-06 08:20:24 +00:00
CGExprConstant.cpp PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and 2010-12-07 08:25:34 +00:00
CGExprScalar.cpp Remove the TypesCompatibleExprClass AST node. Merge its functionality into BinaryTypeTraitExpr. 2010-12-08 22:35:30 +00:00
CGObjC.cpp Fix a bug in the emission of __real/__imag l-values on scalar operands. 2010-12-05 02:00:02 +00:00
CGObjCGNU.cpp Remove the use of aliases in outputted code from ObjC (GNU runtime). 2010-11-09 11:21:43 +00:00
CGObjCMac.cpp Some fixes for synthesized ivar metadata (GNU runtime). 2010-11-03 16:12:44 +00:00
CGObjCRuntime.h Fixes an obscure bug in importd block variable layout 2010-09-11 01:27:29 +00:00
CGRTTI.cpp Give hidden visibility to RTTI for derived types. This is kindof a hacky 2010-12-17 02:58:03 +00:00
CGRecordLayout.h A CGRecordLayout object persists. Since its contained types may 2010-11-30 23:21:46 +00:00
CGRecordLayoutBuilder.cpp Fix another obscure corner layout case. 2010-12-10 00:11:00 +00:00
CGStmt.cpp Fix a bug in the emission of __real/__imag l-values on scalar operands. 2010-12-05 02:00:02 +00:00
CGTemporaries.cpp Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical 2010-12-06 08:20:24 +00:00
CGVTT.cpp Rename RecordLayout::getPrimaryBaseWasVirtual to isPrimaryBaseVirtual. 2010-11-24 23:12:57 +00:00
CGVTables.cpp Rename RecordLayout::getPrimaryBaseWasVirtual to isPrimaryBaseVirtual. 2010-11-24 23:12:57 +00:00
CGVTables.h Make sure the VTables for template instantiations are emitted even if the key function doesn't have a body. 2010-10-11 03:25:57 +00:00
CGValue.h Kill the KVC l-value kind and calculate the base expression when emitting 2010-12-04 02:32:38 +00:00
CMakeLists.txt Add a CGCXXABI.cpp file. 2010-11-28 17:46:52 +00:00
CodeGenAction.cpp Refactoring of Diagnostic class. 2010-11-18 20:06:41 +00:00
CodeGenFunction.cpp Restore r121752 without modification. 2010-12-14 08:05:40 +00:00
CodeGenFunction.h Stop using builtins for the "_lane" variants of saturating multiply intrinsics. 2010-12-08 22:37:56 +00:00
CodeGenModule.cpp Set the "implicitly inline" bit on a method as soon as we see a definition 2010-12-15 04:00:32 +00:00
CodeGenModule.h Simplify the logic for emitting guard variables for template static 2010-11-06 09:44:32 +00:00
CodeGenTBAA.cpp Implement CodeGen support for the may_alias attribute. 2010-12-13 23:51:08 +00:00
CodeGenTBAA.h Add infrastructure for emitting TBAA metadata with the "constant" flag. 2010-10-25 23:51:23 +00:00
CodeGenTypes.cpp Fix a (probably very old) regression where we weren't using the typedef name for anonymous tag types. 2010-11-24 21:05:09 +00:00
CodeGenTypes.h Make CodeGenTypes::getCGRecordLayout compute the layout lazily if it doesn't exist. This matches ASTContext::getASTRecordLayout and is less confusing. 2010-11-24 19:51:04 +00:00
GlobalDecl.h Add GlobalDecl::getCanonicalDecl. 2010-06-22 16:00:14 +00:00
ItaniumCXXABI.cpp Simplify code. 2010-11-24 21:53:50 +00:00
Makefile BUILD_ARCHIVE is the default for libraries, no need to set it. 2010-07-18 00:14:47 +00:00
Mangle.cpp Introduce a new type, PackExpansionType, to capture types that are 2010-12-20 02:24:11 +00:00
Mangle.h Implement ARM static local initialization guards, which are more compact than 2010-09-08 01:44:27 +00:00
MicrosoftCXXABI.cpp Introduce a new type, PackExpansionType, to capture types that are 2010-12-20 02:24:11 +00:00
ModuleBuilder.cpp Move CodeGenOptions.h *back* into Frontend. This should have been done when the 2010-06-15 23:19:56 +00:00
README.txt These IRgen improvements have been done. 2009-07-23 03:03:07 +00:00
TargetInfo.cpp 1. Add some ABI information for the Microblaze. 2010-12-19 19:57:51 +00:00
TargetInfo.h Fix the IR generation for catching pointers by references. 2010-07-20 22:17:55 +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!

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