llvm-project/clang/lib/CodeGen
Fariborz Jahanian 18c435a17d API for message dispatch of methods returning floats
to match gcc's closely.

llvm-svn: 70493
2009-04-30 16:31:11 +00:00
..
ABIInfo.h Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. 2009-02-10 21:44:36 +00:00
CGBlocks.cpp fix a problem producing debug info with global blocks. 2009-04-23 07:18:56 +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 Remove getIntegerConstantExprValue in favor of using EvaluateAsInt. 2009-04-26 19:19:15 +00:00
CGCXX.cpp Add support for generating (very basic) C++ destructors. These aren't called by anything yet. 2009-04-17 01:58:57 +00:00
CGCXX.h Add CGCXX.h with ctor/dtor type enumerations. No functionality change. 2009-04-15 04:36:55 +00:00
CGCall.cpp fix i128 to return in 2 64-bit registers (rax/rdx on x86-64) 2009-04-30 06:22:07 +00:00
CGCall.h Unbreak CGFunctionInfo::Profile method and reenable caching of ABI 2009-02-05 00:00:23 +00:00
CGDebugInfo.cpp While generating debug info ignore unnamed fields. 2009-04-27 22:40:36 +00:00
CGDebugInfo.h Handle corner case where clang-cc is invoked directly to compile preprocessed source file without -main-file-name. In this case, CDDebugInfo is not able identify correct main source file becase SM.isFromMainFile() returns true for locations from header files as well as locations from main source file. 2009-04-23 18:09:16 +00:00
CGDecl.cpp When calling the cleanup function specified by __attribute__((cleanup)), make sure to bitcast the argument so it has the same type as the first argument of the cleanup function. Fixes <rdar://problem/6827047>. 2009-04-26 00:34:20 +00:00
CGExpr.cpp fix PR4067: [Linux kernel] cannot aggregate codegen stmtexpr as lvalue 2009-04-25 19:35:26 +00:00
CGExprAgg.cpp fix PR4067: [Linux kernel] cannot aggregate codegen stmtexpr as lvalue 2009-04-25 19:35:26 +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 Fix for PR4108: be a bit looser with the casts that we accept in 2009-04-30 07:03:22 +00:00
CGExprScalar.cpp Fix pointer addressing and array subscripting of Objective-C interface 2009-04-25 05:08:32 +00:00
CGObjC.cpp Implement function-try-blocks. However, there's a very subtle bug that I can't track down. 2009-04-26 20:35:05 +00:00
CGObjCGNU.cpp split ObjC and C++ Statements out into their own headers. 2009-04-26 01:32:48 +00:00
CGObjCMac.cpp API for message dispatch of methods returning floats 2009-04-30 16:31:11 +00:00
CGObjCRuntime.h Add CGObjCRuntime::GetConcreteClassStruct to encapsulate access to the 2009-04-22 09:39:34 +00:00
CGStmt.cpp pull operands names "[foo]" into ConstraintInfo. 2009-04-26 17:57:12 +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 Implement function-try-blocks. However, there's a very subtle bug that I can't track down. 2009-04-26 20:35:05 +00:00
CodeGenFunction.h split ObjC and C++ Statements out into their own headers. 2009-04-26 01:32:48 +00:00
CodeGenModule.cpp Improve compatibility with GCC regarding inline semantics in GNU89 2009-04-28 06:37:30 +00:00
CodeGenModule.h Explictly track tentative definitions within Sema, then hand those 2009-04-21 17:11:58 +00:00
CodeGenTypes.cpp initial support for __[u]int128_t, which should be basically 2009-04-30 02:43:43 +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 initial support for __[u]int128_t, which should be basically 2009-04-30 02:43:43 +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

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