llvm-project/clang/lib/CodeGen
Chris Lattner ff1ee0d7c9 [llvm up] adjust to match mainline.
llvm-svn: 75647
2009-07-14 18:18:16 +00:00
..
ABIInfo.h Add new ABIArgInfo kind: Extend. This allows target to implement its own argument 2009-06-06 09:36:29 +00:00
CGBlocks.cpp Update for LLVM API change. 2009-07-13 04:10:07 +00:00
CGBlocks.h As an optimization, we maintain a cache of generated 2009-06-05 23:26:36 +00:00
CGBuilder.h Disable generation of basic block names in NDEBUG mode. 2008-11-12 00:01:12 +00:00
CGBuiltin.cpp Update for LLVM API change. 2009-07-13 04:10:07 +00:00
CGCXX.cpp Update for LLVM API change. 2009-07-13 04:10:07 +00:00
CGCXX.h Add CGCXX.h with ctor/dtor type enumerations. No functionality change. 2009-04-15 04:36:55 +00:00
CGCXXTemp.cpp Handle temporaries in default arguments. 2009-06-16 03:37:31 +00:00
CGCall.cpp De-ASTContext-ify DeclContext. 2009-06-30 02:36:12 +00:00
CGCall.h Unbreak CGFunctionInfo::Profile method and reenable caching of ABI 2009-02-05 00:00:23 +00:00
CGDebugInfo.cpp [llvm up] adjust to match mainline. 2009-07-14 18:18:16 +00:00
CGDebugInfo.h Use LLVM mangler to get mangled name for debug info entry. 2009-07-14 02:47:58 +00:00
CGDecl.cpp Update for LLVM API change. 2009-07-13 04:10:07 +00:00
CGExpr.cpp This patch includes a conceptually simple, but very intrusive/pervasive change. 2009-07-10 23:34:53 +00:00
CGExprAgg.cpp Update for LLVM API change. 2009-07-13 04:10:07 +00:00
CGExprComplex.cpp Update for LLVM API change. 2009-07-13 04:10:07 +00:00
CGExprConstant.cpp Update for API change. 2009-07-14 00:38:16 +00:00
CGExprScalar.cpp Rename RecordLayout.h to ASTRecordLayout.h 2009-07-14 17:29:11 +00:00
CGObjC.cpp Update for LLVM API change. 2009-07-13 04:10:07 +00:00
CGObjCGNU.cpp Rename RecordLayout.h to ASTRecordLayout.h 2009-07-14 17:29:11 +00:00
CGObjCMac.cpp Rename RecordLayout.h to ASTRecordLayout.h 2009-07-14 17:29:11 +00:00
CGObjCRuntime.h Implemented memmove_collectable API for Next runtime 2009-07-08 01:18:33 +00:00
CGStmt.cpp Add IRGen support for return statements in functions with reference 2009-05-27 04:56:12 +00:00
CGValue.h Not setting all the fields is confusing... 2009-05-28 00:16:27 +00:00
CMakeLists.txt Update cmake script 2009-06-05 22:08:54 +00:00
CodeGenFunction.cpp Update for LLVM API change. 2009-07-13 04:10:07 +00:00
CodeGenFunction.h Update for LLVM API change. 2009-07-13 04:10:07 +00:00
CodeGenModule.cpp Use LLVM mangler to get mangled name for debug info entry. 2009-07-14 02:47:58 +00:00
CodeGenModule.h Update for LLVM API change. 2009-07-13 04:10:07 +00:00
CodeGenTypes.cpp Rename RecordLayout.h to ASTRecordLayout.h 2009-07-14 17:29:11 +00:00
CodeGenTypes.h Don't convert interface types (to structs) as part of CodeGenTypes. 2009-04-22 10:28:39 +00:00
Makefile Build system changes to use TableGen to generate the various 2009-03-16 23:06:59 +00:00
Mangle.cpp Basic support for C++0x unicode types. Support for literals will follow in an incremental patch 2009-07-14 06:30:34 +00:00
Mangle.h Add support for generating (very basic) C++ destructors. These aren't called by anything yet. 2009-04-17 01:58:57 +00:00
ModuleBuilder.cpp Update for changes in LLVM. Hopefully this is the last one for a while. 2009-07-01 23:14:14 +00:00
README.txt Add note on theoretical IRgen improvement. 2009-03-15 06:39:56 +00:00
TargetABIInfo.cpp Rename RecordLayout.h to ASTRecordLayout.h 2009-07-14 17:29:11 +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!

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

There are some more places where we could avoid generating unreachable code. For
example:
  void f0(int a) { abort(); if (a) printf("hi"); }
still generates a call to printf. This doesn't occur much in real
code, but would still be nice to clean up.

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

Deferred generation of statics incurs some additional
overhead. Currently it is even possible to construct test cases with
O(N^2) behavior! For at least simple cases where we can tell a global
is used, it is probably not worth deferring it. This doesn't solve the
O(N^2) cases, ,though...

PR3810

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