llvm-project/clang/lib/CodeGen
Anders Carlsson 43c52cdc29 Use PushConditionalTempDestruction/PopConditionalTempDestruction for the ternary operator.
llvm-svn: 72842
2009-06-04 03:00:32 +00:00
..
ABIInfo.h Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. 2009-02-10 21:44:36 +00:00
CGBlocks.cpp Reflow some comments. 2009-05-16 07:57:57 +00:00
CGBlocks.h Skip the asm prefix when storing the name in block info. 2009-05-14 16:42:16 +00:00
CGBuilder.h Disable generation of basic block names in NDEBUG mode. 2008-11-12 00:01:12 +00:00
CGBuiltin.cpp Add support for __builtin_unwind_init. 2009-06-02 09:37:50 +00:00
CGCXX.cpp Move code generation of C++ temporaries into a new file. 2009-06-03 18:40:21 +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 Make PushCXXTemporary and PopCXXTemporary handle conditional temporaries. 2009-06-04 02:47:33 +00:00
CGCall.cpp When trying to pass an argument on the stack, assume LLVM will do the right 2009-05-26 16:37:37 +00:00
CGCall.h Unbreak CGFunctionInfo::Profile method and reenable caching of ABI 2009-02-05 00:00:23 +00:00
CGDebugInfo.cpp Create a new PrintingPolicy class, which we pass down through the AST 2009-05-29 20:38:28 +00:00
CGDebugInfo.h Enhance debug information for block literals. Radar 6867696 2009-05-14 02:03:51 +00:00
CGDecl.cpp Add IRGen support for local variables of reference type. 2009-05-27 05:39:06 +00:00
CGExpr.cpp A corner case of objc2 gc's write-barrier generation 2009-06-01 21:29:32 +00:00
CGExprAgg.cpp Use PushConditionalTempDestruction/PopConditionalTempDestruction for the ternary operator. 2009-06-04 03:00:32 +00:00
CGExprComplex.cpp Implement VisitCXXExprWithTemporaries for complex expressions. 2009-05-31 00:12:05 +00:00
CGExprConstant.cpp Fix up constant expression handling to deal with the address 2009-05-27 06:04:58 +00:00
CGExprScalar.cpp Use PushConditionalTempDestruction/PopConditionalTempDestruction for the ternary operator. 2009-06-04 03:00:32 +00:00
CGObjC.cpp Reflow some comments. 2009-05-16 07:57:57 +00:00
CGObjCGNU.cpp Cleanup/Refactoring of ivar collection. No change in functionality. 2009-06-04 01:19:09 +00:00
CGObjCMac.cpp Cleanup/Refactoring of ivar collection. No change in functionality. 2009-06-04 01:19:09 +00:00
CGObjCRuntime.h Reflow some comments. 2009-05-16 07:57:57 +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 Fix cmake builds. 2009-06-03 22:24:28 +00:00
CodeGenFunction.cpp When possible, don't emit the cleanup block. Instead, just move the instructions to the current block. 2009-05-31 00:33:20 +00:00
CodeGenFunction.h Add PushConditionalTempDestruction/PopConditionalTempDestruction. 2009-06-04 02:22:12 +00:00
CodeGenModule.cpp Add code for emitting C++ destructors. Not used yet. 2009-05-29 21:03:38 +00:00
CodeGenModule.h Handle the edge case of a weak function with incomplete type correctly. 2009-05-26 01:22:57 +00:00
CodeGenTypes.cpp Add support for converting member pointer types to LLVM types. Also mangle pointer to member functions correctly and add tests. 2009-05-17 17:41:20 +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 Don't try to call getFileCharacteristic if the function declaration has an invalid source location (as is the case for the global allocation functions. 2009-05-31 20:19:23 +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 Explictly track tentative definitions within Sema, then hand those 2009-04-21 17:11:58 +00:00
README.txt Add note on theoretical IRgen improvement. 2009-03-15 06:39:56 +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

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