hanchenye-llvm-project/clang/lib/CodeGen
Fariborz Jahanian aae4349df9 Fixes a ir-gen crash for K&R style blocks.
llvm-svn: 68865
2009-04-11 17:55:15 +00:00
..
ABIInfo.h Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. 2009-02-10 21:44:36 +00:00
CGBlocks.cpp Fixes a ir-gen crash for K&R style blocks. 2009-04-11 17:55:15 +00:00
CGBlocks.h Fixup copy/dispose helpers for Objective-C. Radar 6756504 2009-04-10 23:09:55 +00:00
CGBuilder.h Disable generation of basic block names in NDEBUG mode. 2008-11-12 00:01:12 +00:00
CGBuiltin.cpp Add a destination type argument to EmitConstantExpr. This will be used for when the destination has a reference type. (No functionality change yet) 2009-04-08 04:48:15 +00:00
CGCXX.cpp Use the new EmitCallArgs function. No indented functionality change. 2009-04-08 23:13:16 +00:00
CGCall.cpp Don't set both readnone and readonly. 2009-04-10 22:14:52 +00:00
CGCall.h Unbreak CGFunctionInfo::Profile method and reenable caching of ABI 2009-02-05 00:00:23 +00:00
CGDebugInfo.cpp Propagate the ASTContext to various AST traversal and lookup functions. 2009-04-09 21:40:53 +00:00
CGDebugInfo.h Add support to emit debug info for objective-c interfaces. 2009-02-26 21:10:26 +00:00
CGDecl.cpp Make messages consistent. 2009-04-10 00:37:08 +00:00
CGExpr.cpp Use the new EmitCallArgs function. No indented functionality change. 2009-04-08 23:13:16 +00:00
CGExprAgg.cpp Propagate the ASTContext to various AST traversal and lookup functions. 2009-04-09 21:40:53 +00:00
CGExprComplex.cpp Change compound assignment operators to keep track of both the promoted 2009-03-28 01:22:36 +00:00
CGExprConstant.cpp Add support for generating reference initialization code. 2009-04-11 01:08:03 +00:00
CGExprScalar.cpp Make sure value is initialized when built w/o asserts. 2009-04-08 16:23:09 +00:00
CGObjC.cpp Use the new EmitCallArgs function. No indented functionality change. 2009-04-08 23:13:16 +00:00
CGObjCGNU.cpp Propagate the ASTContext to various AST traversal and lookup functions. 2009-04-09 21:40:53 +00:00
CGObjCMac.cpp Patch to generate meta-data for prtocol used 2009-04-10 18:47:34 +00:00
CGObjCRuntime.h Some "prep" work for handling ObjC @-string constants that contain UTF-8. No functionality change. 2009-03-31 16:53:37 +00:00
CGStmt.cpp Fix a subtle bug where the cleanup scope entries had a dangling block reference 2009-04-01 04:37:47 +00:00
CGValue.h Handle case of none gc'able objects regardless of their 2009-02-21 00:30:43 +00:00
CMakeLists.txt Fix cmake builds. 2009-02-13 15:42:50 +00:00
CodeGenFunction.cpp reject codegen of __thread variables as unimplemented, rdar://6775265 2009-04-10 00:35:59 +00:00
CodeGenFunction.h Remove asserts that weren't really useful, and that would fire in case the CleanupEntries vector needed to be reallocated. 2009-04-10 22:49:13 +00:00
CodeGenModule.cpp Internal variables could mistakenly have "hidden" visibility when 2009-04-10 20:26:50 +00:00
CodeGenModule.h Add a destination type argument to EmitConstantExpr. This will be used for when the destination has a reference type. (No functionality change yet) 2009-04-08 04:48:15 +00:00
CodeGenTypes.cpp Propagate the ASTContext to various AST traversal and lookup functions. 2009-04-09 21:40:53 +00:00
CodeGenTypes.h Don't assume that a block always has a FunctionProtoType. Fixes rdar://6768379. 2009-04-08 02:55:55 +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 mangle variables that are at translation unit scope. 2009-04-11 01:19:45 +00:00
Mangle.h fix several problems with asm renaming, by pulling it into the mangling code: 2009-03-21 08:24:40 +00:00
ModuleBuilder.cpp Push DeclGroup much farther throughout the compiler. Now the various 2009-03-29 16:50:03 +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

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