aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGBlocks.cpp
AgeCommit message (Expand)Author
2010-04-19Keep track of the actual storage specifier written on a variable orDouglas Gregor
2010-03-31Minor include pruning.Benjamin Kramer
2010-03-30the big refactoring bits of PR3782.Rafael Espindola
2010-03-05add support for a 1<<29 bit in the block flags field to mark blocks using alt...Blaine Garst
2010-02-23Unconditionally support block introspection data in a new field at the endBlaine Garst
2010-02-19remove unused function & enumerationsBlaine Garst
2010-02-17Patch to remove arbitrary imporation of 'self' intoFariborz Jahanian
2010-02-17Did not intend to check this in.Fariborz Jahanian
2010-02-17Use proper lexcial context for newly added ivars.Fariborz Jahanian
2010-02-10Generate the objc_read_weak API when callingFariborz Jahanian
2010-02-05Standardize the parsing of function type attributes in a way thatJohn McCall
2010-01-27Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and,Ken Dyck
2010-01-26Use CharUnits for alignments in character units.Ken Dyck
2010-01-26Introduce CodeGenModule::GetTargetTypeStoreSize() to calculate the store sizeKen Dyck
2010-01-25simplify code.Chris Lattner
2010-01-22Simplify code.Benjamin Kramer
2010-01-11Roll out ASTContext::getTypeSizeInChars(), replacing instances ofKen Dyck
2009-12-24Pass the return value slot to all call exprs.Anders Carlsson
2009-12-24Pass ReturnValueSlot to EmitCall. No functionality change yet.Anders Carlsson
2009-12-08DeclRefExpr stores a ValueDecl internally.John McCall
2009-12-05various cleanups.Chris Lattner
2009-11-29Don't pass false (default) for isVolatile parameter to CreateLoad.Daniel Dunbar
2009-11-23Centralize and complete the computation of value- and type-dependence for Dec...Douglas Gregor
2009-11-17Added block type introspection support.David Chisnall
2009-10-22Remove some misguided code.Mike Stump
2009-10-22Extend out the block descriptor structure for debug information withMike Stump
2009-10-21Turn on the preallocation of all BlockDeclRefExprs.Mike Stump
2009-10-21Refine collection of BlockDeclRefExprs. WIP.Mike Stump
2009-10-21Fix typo.Mike Stump
2009-10-21Refactor.Mike Stump
2009-10-21Prep work to always preallocate BlockDeclRefExprs so that we canMike Stump
2009-10-20For now, we need to have the llvm type of the block pointer remain asMike Stump
2009-10-20Refine the type of the first parameter to block invoke functions.Mike Stump
2009-10-13Simplify pointer creation with the new Type::getInt*Ptr methods.Benjamin Kramer
2009-10-01Implement a FIXME. This improves codegen just a tad.Mike Stump
2009-10-01A couple of refinements for laying out debug information forMike Stump
2009-09-30Improve debugging information for BlockDeclRefExpr. WIP. Given thisMike Stump
2009-09-24Fix 80-col violation.Mike Stump
2009-09-22Improve debug info generation for __block variables.Mike Stump
2009-09-21Change all the Type::getAsFoo() methods to specializations of Type::getAs().John McCall
2009-09-19Make clang stop relying on ConstantStruct::get's default value for isPackedNick Lewycky
2009-09-12Add support for __block variables with alignment greater than __alignof(void *).Anders Carlsson
2009-09-12For __block variables, cache the LLVM types as well as which LLVM field where...Anders Carlsson
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-09-09Reflow comments and some minor whitespace fixups.Mike Stump
2009-09-09Make BuildByRefType take a ValueDecl instead of a QualType and an alignment.Anders Carlsson
2009-08-24Fix build of clang with gcc-4.4: #include <cstdio> was missing.Torok Edwin
2009-08-21Remove TypeSpecStartLocation from VarDecl/FunctionDecl/FieldDecl, and use Dec...Argyrios Kyrtzidis
2009-08-19Introduce DeclaratorDecl and pass DeclaratorInfo through the Decl/Sema interf...Argyrios Kyrtzidis
2009-08-13Update for LLVM API change.Owen Anderson