llvm-project/clang/lib/CodeGen
Anders Carlsson 2437cbfa3b Add support for generating block call expressions.
llvm-svn: 64346
2009-02-12 00:39:25 +00:00
..
ABIInfo.h Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. 2009-02-10 21:44:36 +00:00
CGBlocks.cpp Add support for generating block call expressions. 2009-02-12 00:39:25 +00:00
CGBuilder.h Disable generation of basic block names in NDEBUG mode. 2008-11-12 00:01:12 +00:00
CGBuiltin.cpp Use EmitVAListRef instead of EmitLValue directly to handle array decay 2009-02-11 22:25:55 +00:00
CGCXX.cpp Provide a new kind of iterator, the specific_decl_iterator, that 2009-01-09 17:18:27 +00:00
CGCall.cpp Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. 2009-02-10 20:44:09 +00:00
CGCall.h Unbreak CGFunctionInfo::Profile method and reenable caching of ABI 2009-02-05 00:00:23 +00:00
CGDebugInfo.cpp When making dummy file entries, the directory name should also be 2009-02-07 00:40:41 +00:00
CGDebugInfo.h reimplement debug info generation in terms of DebugInfo.h instead of 2008-11-10 06:08:34 +00:00
CGDecl.cpp Function parameters for PIC16 are like local variables. So use the keyword ".auto." to mangle their names. The working of PIC16AsmPrinter relies on that keyword currently. 2009-02-10 04:17:25 +00:00
CGExpr.cpp Add support for generating block call expressions. 2009-02-12 00:39:25 +00:00
CGExprAgg.cpp Use EmitVAListRef instead of EmitLValue directly to handle array decay 2009-02-11 22:25:55 +00:00
CGExprComplex.cpp Use EmitVAListRef instead of EmitLValue directly to handle array decay 2009-02-11 22:25:55 +00:00
CGExprConstant.cpp Silence a warning about an unused variable in -Asserts builds 2009-02-11 16:17:49 +00:00
CGExprScalar.cpp Use EmitVAListRef instead of EmitLValue directly to handle array decay 2009-02-11 22:25:55 +00:00
CGObjC.cpp Start removing the old Obj-C EH stack now that the cleanup stack is used instead. 2009-02-10 05:52:02 +00:00
CGObjCGNU.cpp Some refactoring of Ivar offset code gen. 2009-02-10 19:02:04 +00:00
CGObjCMac.cpp ir-gen for objc's @selector expression in nonfragile abi mode. 2009-02-11 20:51:17 +00:00
CGObjCRuntime.h Some refactoring of Ivar offset code gen. 2009-02-10 19:02:04 +00:00
CGStmt.cpp Handle the case where EmitBlock might be called multiple times for the same block. Fixes PR3536. 2009-02-10 22:50:24 +00:00
CGValue.h Remove tabs. 2008-12-16 19:57:09 +00:00
CMakeLists.txt CMake: Builds and installs clang binary and libs (no docs yet). It 2008-10-26 00:56:18 +00:00
CodeGenFunction.cpp Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. 2009-02-10 20:44:09 +00:00
CodeGenFunction.h Add support for generating block call expressions. 2009-02-12 00:39:25 +00:00
CodeGenModule.cpp Use 'compile' instead of 'codegen' when reporting error to user. 2009-02-06 19:18:03 +00:00
CodeGenModule.h More ABI API cleanup. 2009-02-02 22:03:45 +00:00
CodeGenTypes.cpp Start processing template-ids as types when the template-name refers 2009-02-09 18:46:07 +00:00
CodeGenTypes.h Memoize CGFunctionInfo construction. 2009-02-03 00:07:12 +00:00
Makefile Make a major restructuring of the clang tree: introduce a top-level 2008-03-15 23:59:48 +00:00
ModuleBuilder.cpp Remove ScopedDecl, collapsing all of its functionality into Decl, so 2009-01-20 01:17:11 +00:00
README.txt Mention an optimization opportunity pointed out by Chris. 2008-12-04 09:05:45 +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.

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