Age | Commit message (Expand) | Author |
2009-06-01 | Disable type merging with gc attributes. This has a number of nasty | Eli Friedman |
2009-05-29 | Create a new PrintingPolicy class, which we pass down through the AST | Douglas Gregor |
2009-05-29 | Add an assertion so that we don't accidentally build constant arrays of | Eli Friedman |
2009-05-27 | Reintroduce the home for exception specs, and make Sema fill it. However, kee... | Sebastian Redl |
2009-05-27 | Add a big test case for I-C-Es in C++, and a fix to make it work. The fix mig... | Sebastian Redl |
2009-05-27 | Convert ObjC qualified type clients over to using iterators. | Steve Naroff |
2009-05-26 | Simplify printing of the statistics for types. | Douglas Gregor |
2009-05-25 | Extend getPreferredTypeAlign to handle _Complex double and long long | Eli Friedman |
2009-05-21 | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad |
2009-05-17 | Use the Itanium ABI for member pointers. Add a missing 'break' statement and ... | Anders Carlsson |
2009-05-13 | Fix rdar://6880874 - [sema] crash on array types with different index sizes | Chris Lattner |
2009-05-12 | Patch to implement ivar synthesis of properties declared in protocols | Fariborz Jahanian |
2009-05-10 | The canonical declaration of a NULL declaration is NULL | Douglas Gregor |
2009-05-10 | Implement the semantics of the injected-class-name within a class | Douglas Gregor |
2009-05-10 | Implement C++0x nullptr. | Sebastian Redl |
2009-05-07 | Remove -fobjc-tight-layout, seems to work! | Daniel Dunbar |
2009-05-07 | Start canonicalizing template names. This is not yet complete, but it | Douglas Gregor |
2009-05-06 | Back out r70506 (exception spec in AST) again. We won't have exception specs ... | Sebastian Redl |
2009-05-04 | Fix the field count in interface record layout (it was incorrectly | Daniel Dunbar |
2009-05-04 | Add -fobjc-tight-layout. | Daniel Dunbar |
2009-05-04 | Don't allow clients to traverse into superclass synthesized properties | Daniel Dunbar |
2009-05-03 | Remove ASTContext::addRecordToClass. | Daniel Dunbar |
2009-05-03 | Use ASTRecordLayout for computing ivar offsets instead of shadow | Daniel Dunbar |
2009-05-03 | Fix a possible memory error, the record layout entry could be | Daniel Dunbar |
2009-05-03 | Implement the interface/implementation layout distinction. | Daniel Dunbar |
2009-05-03 | Split out getASTObjCImplementationLayout | Daniel Dunbar |
2009-04-30 | Make a home for exception specs in the AST. Now Sema can hook them up. | Sebastian Redl |
2009-04-30 | Properly compute the alignment of typedefs that make use of the | Douglas Gregor |
2009-04-30 | int128_t is apparently 128-bit aligned on all 64-bit targets, and | Chris Lattner |
2009-04-30 | initial support for __[u]int128_t, which should be basically | Chris Lattner |
2009-04-26 | Remove getIntegerConstantExprValue in favor of using EvaluateAsInt. | Eli Friedman |
2009-04-26 | Make sure to pull in the target builtin records when initialize the AST conte... | Douglas Gregor |
2009-04-23 | PCH support for all of the predefined Objective-C types, such as id, | Douglas Gregor |
2009-04-23 | Eliminate the three SmallVectors in ObjCImplDecl (for instance | Douglas Gregor |
2009-04-22 | Remove the serialization code that predates precompiled | Douglas Gregor |
2009-04-22 | Lazy loading of builtins for precompiled headers. | Douglas Gregor |
2009-04-22 | Reapply r69771, with updates & fixes: | Daniel Dunbar |
2009-04-22 | Simplify addRecordToClass, it is not legal to call it on a forward | Daniel Dunbar |
2009-04-22 | ObjCQualifiedClass is dead, remove it. | Chris Lattner |
2009-04-22 | Reorganize built-in initialization to separate the creation of target builtin... | Douglas Gregor |
2009-04-22 | Revert r69771, I missed some (obvious) details. :/ | Daniel Dunbar |
2009-04-22 | Mark another TypeForDecl const and make getObjCInterfaceType's argument const. | Daniel Dunbar |
2009-04-22 | Rework the shadow struct that is layed out for Objective-C classes. | Daniel Dunbar |
2009-04-21 | Make sure to mark the interface as completed when we see an | Daniel Dunbar |
2009-04-21 | Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things | Daniel Dunbar |
2009-04-21 | Assert on a few conditions that (I believe) should hold | Daniel Dunbar |
2009-04-20 | Make FieldDecl parameter to getObjCEncodingForType... const. | Daniel Dunbar |
2009-04-15 | Fix decl type merges when they have | Fariborz Jahanian |
2009-04-14 | ASTContext::mergeTypes(): Loosen up the type checking for 'Class' (treating i... | Steve Naroff |
2009-04-14 | Change dyn_cast<> to isa<>. Pointed out by Anders (thanks). | Steve Naroff |