hanchenye-llvm-project/clang/lib/CodeGen
Fariborz Jahanian a2d609e2f1 Besides the warning, issue unsupported diagnostics in
ir gen. No intended change in functionality.

llvm-svn: 67857
2009-03-27 18:38:55 +00:00
..
ABIInfo.h Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. 2009-02-10 21:44:36 +00:00
CGBlocks.cpp Remove -f__block as codegen for __block variables should be solid. 2009-03-25 18:05:39 +00:00
CGBlocks.h Codegen support for copy helpers for block literals. 2009-03-07 02:35:30 +00:00
CGBuilder.h Disable generation of basic block names in NDEBUG mode. 2008-11-12 00:01:12 +00:00
CGBuiltin.cpp Support IRgen of sqrt -> llvm.sqrt, pow -> llvm.pow. 2009-02-16 22:43:43 +00:00
CGCXX.cpp Pull COdeGenFunction::CreateStaticBlockVarDecl (just for creating the 2009-02-25 19:24:29 +00:00
CGCall.cpp Fix the ABI convention for struct returns on x86 outside of Darwin. 2009-03-23 23:26:24 +00:00
CGCall.h Unbreak CGFunctionInfo::Profile method and reenable caching of ABI 2009-02-05 00:00:23 +00:00
CGDebugInfo.cpp simplify some conditionals, don't copy LangOptions. 2009-03-25 03:28:08 +00:00
CGDebugInfo.h Add support to emit debug info for objective-c interfaces. 2009-02-26 21:10:26 +00:00
CGDecl.cpp don't set the name of a call instruction to "call" in release-asserts 2009-03-22 00:32:22 +00:00
CGExpr.cpp Support member reference on ?: of struct type. 2009-03-24 02:38:23 +00:00
CGExprAgg.cpp Remove dead code. 2009-03-22 20:54:47 +00:00
CGExprComplex.cpp Some minor fixes for complex IRGen. 2009-03-23 04:08:46 +00:00
CGExprConstant.cpp Return 0 if the ConstExprEmitter can't handle an expression. 2009-03-03 16:43:34 +00:00
CGExprScalar.cpp Fix a subtle bug in CodeGen for the increment of a bitfield. 2009-03-23 03:00:06 +00:00
CGObjC.cpp pull "runtime globals" into the same framework as other functions/global variables. 2009-03-22 21:03:39 +00:00
CGObjCGNU.cpp Obscure code gen bug related to sending 2009-02-28 20:07:56 +00:00
CGObjCMac.cpp - Minor change to dump of ivar layout map. 2009-03-26 19:10:36 +00:00
CGObjCRuntime.h pull "runtime globals" into the same framework as other functions/global variables. 2009-03-22 21:03:39 +00:00
CGStmt.cpp introduce a new -fheinous-gnu-extensions flag that enables really 2009-03-13 17:38:01 +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 fix CreateTempAlloca to not set a name on the alloca for temporaries 2009-03-22 00:24:14 +00:00
CodeGenFunction.h Fixup codegen for block literals that bleed copy/dispose information 2009-03-25 17:58:24 +00:00
CodeGenModule.cpp Besides the warning, issue unsupported diagnostics in 2009-03-27 18:38:55 +00:00
CodeGenModule.h most of this is plumbing to get CompileOptions down into 2009-03-26 05:00:52 +00:00
CodeGenTypes.cpp Almost complete implementation of rvalue references. One bug, and a few unclear areas. Maybe Doug can shed some light on some of the fixmes. 2009-03-16 23:22:08 +00:00
CodeGenTypes.h Initial implementation of CodeGen for incomplete function types; fixes 2009-03-05 03:16:41 +00:00
Makefile Build system changes to use TableGen to generate the various 2009-03-16 23:06:59 +00:00
Mangle.cpp fix several problems with asm renaming, by pulling it into the mangling code: 2009-03-21 08:24:40 +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 most of this is plumbing to get CompileOptions down into 2009-03-26 05:00:52 +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

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