llvm-project/clang/lib/CodeGen
Chris Lattner f3d3faeca6 Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of
uses of getName() with uses of getDeclName().  This upgrades a bunch of
diags to take DeclNames instead of std::strings.

This also tweaks a couple of diagnostics to be cleaner and changes
CheckInitializerTypes/PerformInitializationByConstructor to pass
around DeclarationNames instead of std::strings.

llvm-svn: 59947
2008-11-24 05:29:24 +00:00
..
CGBuilder.h Disable generation of basic block names in NDEBUG mode. 2008-11-12 00:01:12 +00:00
CGBuiltin.cpp rename Expr::tryEvaluate to Expr::Evaluate. 2008-11-16 21:24:15 +00:00
CGCXX.cpp Rename Selector::getName() to Selector::getAsString(), and add 2008-11-24 03:33:13 +00:00
CGCall.cpp Migrate some stuff from NamedDecl::getName() to 2008-11-24 04:00:27 +00:00
CGCall.h Large mechanical patch. 2008-09-25 21:02:23 +00:00
CGDebugInfo.cpp Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of 2008-11-24 05:29:24 +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 Migrate some stuff from NamedDecl::getName() to 2008-11-24 04:00:27 +00:00
CGExpr.cpp Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of 2008-11-24 05:29:24 +00:00
CGExprAgg.cpp Implemented ir-gen for 'implicit' properties using the new AST nodes. 2008-11-22 22:30:21 +00:00
CGExprComplex.cpp Normalize many BasicBlock names. 2008-11-13 01:38:36 +00:00
CGExprConstant.cpp Use tryEvaluate for constant exprs. 2008-11-22 02:34:39 +00:00
CGExprScalar.cpp Implemented ir-gen for 'implicit' properties using the new AST nodes. 2008-11-22 22:30:21 +00:00
CGObjC.cpp Implemented ir-gen for 'implicit' properties using the new AST nodes. 2008-11-22 22:30:21 +00:00
CGObjCGNU.cpp Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of 2008-11-24 05:29:24 +00:00
CGObjCMac.cpp Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of 2008-11-24 05:29:24 +00:00
CGObjCRuntime.h Consolidated @try and @synchronize into a single 2008-11-21 00:49:24 +00:00
CGStmt.cpp Use Expr::Evaluate for case statements. Fixes PR2525 2008-11-22 21:04:56 +00:00
CGValue.h Implemented ir-gen for 'implicit' properties using the new AST nodes. 2008-11-22 22:30:21 +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 Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it 2008-11-24 03:54:41 +00:00
CodeGenFunction.h Implemented ir-gen for 'implicit' properties using the new AST nodes. 2008-11-22 22:30:21 +00:00
CodeGenModule.cpp Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of 2008-11-24 05:29:24 +00:00
CodeGenModule.h Add option argument to GetAddrOfConstantString to use for name of 2008-10-17 21:56:50 +00:00
CodeGenTypes.cpp Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of 2008-11-24 05:29:24 +00:00
CodeGenTypes.h Lift out ABIInfo abstract base class. 2008-10-13 17:02:26 +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 Add GetModule accessor to ModuleBuilder 2008-10-21 19:55:09 +00:00
README.txt Fix redundant load of bit-fields on assignment (to get the updated 2008-11-19 09:36:46 +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.

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