freebsd-nq/lib/CodeGen
2010-03-16 16:52:15 +00:00
..
ABIInfo.h Update clang to r84119. 2009-10-14 18:03:49 +00:00
CGBlocks.cpp Update clang to r97873. 2010-03-06 09:23:02 +00:00
CGBlocks.h Update clang to r97873. 2010-03-06 09:23:02 +00:00
CGBuilder.h Import Clang, at r72732. 2009-06-02 17:58:47 +00:00
CGBuiltin.cpp Update clang to r97873. 2010-03-06 09:23:02 +00:00
CGCall.cpp Update clang to 97654. 2010-03-03 17:28:16 +00:00
CGCall.h Update clang to 97654. 2010-03-03 17:28:16 +00:00
CGClass.cpp Update clang to r98631. 2010-03-16 16:52:15 +00:00
CGCXX.cpp Update clang to r97873. 2010-03-06 09:23:02 +00:00
CGCXX.h Update clang to r84119. 2009-10-14 18:03:49 +00:00
CGDebugInfo.cpp Update clang to r98631. 2010-03-16 16:52:15 +00:00
CGDebugInfo.h Update clang to r98164. 2010-03-10 17:45:58 +00:00
CGDecl.cpp Update clang to r98631. 2010-03-16 16:52:15 +00:00
CGDeclCXX.cpp Update clang to r96341. 2010-02-16 09:31:36 +00:00
CGException.cpp Update clang to 97654. 2010-03-03 17:28:16 +00:00
CGExpr.cpp Update clang to r97873. 2010-03-06 09:23:02 +00:00
CGExprAgg.cpp Update clang to r98164. 2010-03-10 17:45:58 +00:00
CGExprComplex.cpp Update clang to r96341. 2010-02-16 09:31:36 +00:00
CGExprConstant.cpp Update clang to r97873. 2010-03-06 09:23:02 +00:00
CGExprCXX.cpp Update clang to r96341. 2010-02-16 09:31:36 +00:00
CGExprScalar.cpp Update clang to r97873. 2010-03-06 09:23:02 +00:00
CGObjC.cpp Update clang to r98164. 2010-03-10 17:45:58 +00:00
CGObjCGNU.cpp Update clang to r98631. 2010-03-16 16:52:15 +00:00
CGObjCMac.cpp Update clang to 97654. 2010-03-03 17:28:16 +00:00
CGObjCRuntime.h Update clang to r94309. 2010-01-23 11:10:26 +00:00
CGRecordLayoutBuilder.cpp Update clang to r96341. 2010-02-16 09:31:36 +00:00
CGRecordLayoutBuilder.h Update clang to r96341. 2010-02-16 09:31:36 +00:00
CGRTTI.cpp Update clang to r98631. 2010-03-16 16:52:15 +00:00
CGStmt.cpp Update clang to r97873. 2010-03-06 09:23:02 +00:00
CGTemporaries.cpp Updaet clang to 92395. 2010-01-01 10:34:51 +00:00
CGValue.h Update clang to r86025. 2009-11-04 15:04:32 +00:00
CGVtable.cpp Update clang to r98631. 2010-03-16 16:52:15 +00:00
CGVtable.h Update clang to r98631. 2010-03-16 16:52:15 +00:00
CGVTT.cpp Update clang to 97654. 2010-03-03 17:28:16 +00:00
CMakeLists.txt Update clang to r94309. 2010-01-23 11:10:26 +00:00
CodeGenFunction.cpp Update clang to 97654. 2010-03-03 17:28:16 +00:00
CodeGenFunction.h Update clang to r97873. 2010-03-06 09:23:02 +00:00
CodeGenModule.cpp Update clang to r98631. 2010-03-16 16:52:15 +00:00
CodeGenModule.h Update clang to r98631. 2010-03-16 16:52:15 +00:00
CodeGenTypes.cpp Update clang to 97654. 2010-03-03 17:28:16 +00:00
CodeGenTypes.h Update clang to 97654. 2010-03-03 17:28:16 +00:00
GlobalDecl.h Update clang to r96341. 2010-02-16 09:31:36 +00:00
Makefile Update clang to r98631. 2010-03-16 16:52:15 +00:00
Mangle.cpp Update clang to r98631. 2010-03-16 16:52:15 +00:00
Mangle.h Update clang to r97873. 2010-03-06 09:23:02 +00:00
ModuleBuilder.cpp Updaet clang to 92395. 2010-01-01 10:34:51 +00:00
README.txt Update clang to r84119. 2009-10-14 18:03:49 +00:00
TargetInfo.cpp Update clang to r98631. 2010-03-16 16:52:15 +00:00
TargetInfo.h Update clang to r97873. 2010-03-06 09:23:02 +00:00

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!

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