llvm-project/clang/lib/CodeGen
Mike Stump 78696a70bf Implement more of the inductive case for vtable layout involving
virtual base primaries and improve the layout of classes with virtual
bases.  WIP.

Hey, I've decided I want a change to FileCheck, I need to ensure that
the group is together, nothing in between.  Can we change it to check
the match line is from the line immediately following the last matched
line, if the source for the matched line is immediately after the
source for the previously matched line?

// CHECK: 1
// CHECK: 2
// CHECK: 3

// CHECK: 4
// CHECK: 5
// CHECK: 6

would require 1 2 and 3 to be continuous in the output, and 4 5 and 6
to be continuous.

llvm-svn: 78638
2009-08-11 04:03:59 +00:00
..
ABIInfo.h Update for LLVM API change. 2009-08-05 23:18:46 +00:00
CGBlocks.cpp Update for LLVM API change. 2009-08-05 23:18:46 +00:00
CGBlocks.h Update for LLVM API change. 2009-08-05 23:18:46 +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-31 20:28:54 +00:00
CGCXX.cpp Implement more of the inductive case for vtable layout involving 2009-08-11 04:03:59 +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 Update for LLVM API change. 2009-07-31 17:39:36 +00:00
CGCall.cpp map previously ignored __attribute((malloc)) to noalias attribute of llvm function's return 2009-08-09 20:07:29 +00:00
CGCall.h Unbreak CGFunctionInfo::Profile method and reenable caching of ABI 2009-02-05 00:00:23 +00:00
CGDebugInfo.cpp Use DICompositeType->replaceAllUsesWith() 2009-07-27 18:42:03 +00:00
CGDebugInfo.h Revert 75648 for now. It is causing test failures. 2009-07-14 21:31:22 +00:00
CGDecl.cpp Refactor some code and implement support for global destructors for static variables. 2009-08-08 21:45:14 +00:00
CGExpr.cpp Update for LLVM API changes. 2009-07-30 23:11:26 +00:00
CGExprAgg.cpp Add CK_ToUnion and use it for aggregate expression codegen. 2009-08-07 23:22:37 +00:00
CGExprComplex.cpp Update for LLVM API change. 2009-07-31 20:28:54 +00:00
CGExprConstant.cpp Improve handling of member pointers. 2009-08-09 18:26:27 +00:00
CGExprScalar.cpp Take 2 on AltiVec-style vector initializers. 2009-08-10 23:49:36 +00:00
CGObjC.cpp Update for LLVM API change. 2009-07-31 20:28:54 +00:00
CGObjCGNU.cpp Update for LLVM API change. 2009-08-05 23:18:46 +00:00
CGObjCMac.cpp Update for LLVM API change. 2009-08-05 23:18:46 +00:00
CGObjCRuntime.h fix objc codegen to not have its own list of things that eventually get into llvm.used, just 2009-07-17 23:57:13 +00:00
CGRecordLayoutBuilder.cpp Take #pragma pack into account when laying out structs. Fixes rdar://problem/7095436. 2009-08-08 19:38:24 +00:00
CGRecordLayoutBuilder.h Take #pragma pack into account when laying out structs. Fixes rdar://problem/7095436. 2009-08-08 19:38:24 +00:00
CGStmt.cpp Update for LLVM API change. 2009-08-05 23:18:46 +00:00
CGValue.h Preserve address space information through member accesses, e.g., 2009-07-22 03:08:17 +00:00
CMakeLists.txt Unbreak the CMake build 2009-07-23 15:15:06 +00:00
CodeGenFunction.cpp minor refactoring. No change otherwise. 2009-08-10 18:46:38 +00:00
CodeGenFunction.h minor refactoring. No change otherwise. 2009-08-10 18:46:38 +00:00
CodeGenModule.cpp Support for anonymous union in ctor's initializer and 2009-08-10 23:56:17 +00:00
CodeGenModule.h Add support for global initializers. 2009-08-08 23:24:23 +00:00
CodeGenTypes.cpp Fix some const_cast issues. This is the beginning of the rabbit hole. 2009-08-07 18:05:12 +00:00
CodeGenTypes.h Update for LLVM API change. 2009-08-05 23:18:46 +00:00
Makefile Build system changes to use TableGen to generate the various 2009-03-16 23:06:59 +00:00
Mangle.cpp Add beginnigs of rtti generation, wire up more of -fno-exceptions. 2009-07-31 23:15:31 +00:00
Mangle.h Add beginnigs of rtti generation, wire up more of -fno-exceptions. 2009-07-31 23:15:31 +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 These IRgen improvements have been done. 2009-07-23 03:03:07 +00:00
TargetABIInfo.cpp Update for LLVM API change. 2009-08-05 23:18:46 +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!

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