llvm-project/clang/lib/CodeGen
Daniel Dunbar a45bdbbb6a Add asserts that the function signature matches the other arguments provide
to CGCall functions.

llvm-svn: 63775
2009-02-04 21:17:21 +00:00
..
ABIInfo.h Change ABIInfo to compute information for a full signature at a time 2009-02-03 06:51:18 +00:00
CGBuilder.h Disable generation of basic block names in NDEBUG mode. 2008-11-12 00:01:12 +00:00
CGBuiltin.cpp (llvm up) Update for intrinsic lookup changes. 2009-02-04 21:09:15 +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 Add asserts that the function signature matches the other arguments provide 2009-02-04 21:17:21 +00:00
CGCall.h Add asserts that the function signature matches the other arguments provide 2009-02-04 21:17:21 +00:00
CGDebugInfo.cpp lower the interface to getLineNumber like we did for 2009-02-04 01:06:56 +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 Targets that don't have stack use global address space for parameters. 2009-02-03 18:07:49 +00:00
CGExpr.cpp ir-gen for nonfragile ivar bitfield access (objc2 nonfragile abi). 2009-02-03 19:03:09 +00:00
CGExprAgg.cpp Make CodeGen produce an error if we come across a non-constant initializer list that involves the GNU array-range designator extension 2009-01-29 19:42:23 +00:00
CGExprComplex.cpp Introduce a new expression node, ImplicitValueInitExpr, that 2009-01-29 17:44:32 +00:00
CGExprConstant.cpp Fix for PR3447: use padded sizes for computations on struct/union 2009-02-01 08:12:19 +00:00
CGExprScalar.cpp Make sure to cast the VLA size of array to the type of size_t. Fixes PR3442. 2009-01-30 16:41:04 +00:00
CGObjC.cpp Update passing of _Bool values to match what function was declared to take. 2009-02-04 00:55:44 +00:00
CGObjCGNU.cpp Patch fixes messaging for GNU runtime. 2009-02-04 20:31:19 +00:00
CGObjCMac.cpp Some early code for objc2's nonfragile abi messaging. 2009-02-04 20:42:28 +00:00
CGObjCRuntime.h ir-gen for nonfragile ivar bitfield access (objc2 nonfragile abi). 2009-02-03 19:03:09 +00:00
CGStmt.cpp If an input constraint refers to an output constraint, it should have the same constraint info as the output constraint. Fixes PR3417 2009-01-27 20:38: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 Add CodeGenFunction::ConvertTypeForMem forwarding function. 2009-02-03 23:03:55 +00:00
CodeGenFunction.h Add CodeGenFunction::ConvertTypeForMem forwarding function. 2009-02-03 23:03:55 +00:00
CodeGenModule.cpp Thread CGFunctionInfo construction through CodeGenTypes. 2009-02-02 23:23:47 +00:00
CodeGenModule.h More ABI API cleanup. 2009-02-02 22:03:45 +00:00
CodeGenTypes.cpp Thread CGFunctionInfo construction through CodeGenTypes. 2009-02-02 23:23:47 +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.

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