- d461777 Revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65244. by Steve Naroff · 16 years ago
- 01011d4 Add copy assignment operator, caught by doug. by Chris Lattner · 16 years ago
- f9a8e2e Add more boilerplate logic to more accurately reason about autorelease pools. by Ted Kremenek · 16 years ago
- 9834ffb Add low level support for generating invoke instead of calls. by Daniel Dunbar · 16 years ago
- 4634735 Fix 80 col. violations. by Ted Kremenek · 16 years ago
- 6ad315a Per Chris L.'s suggestion, use getAsFunctionType() instead of getDesguaredType(). Constify some pointers along the way. by Ted Kremenek · 16 years ago
- 279d896 Remove isSuperExpr(), which ignores any casts on 'super'. by Steve Naroff · 16 years ago
- 91110ee A few small improvements to Evaluate for stuff I noted in FIXMEs. by Eli Friedman · 16 years ago
- 89e202d retain/release checker: For now don't track the retain count of NSWindow objects (opt for false negatives). by Ted Kremenek · 16 years ago
- 4e83501 Remove typo. by Ted Kremenek · 16 years ago
- 022a3c4 '[NSAutoreleasePool addObject:]' has an 'autorelease' effect, not a DoNothing effect. by Ted Kremenek · 16 years ago
- d526c2f Sema::ActOnInstanceMessage(): Tighen up the lookup rules for handling messages to 'Class'. Also improve "super" handling. by Steve Naroff · 16 years ago
- ac1337d Minor cleanup, replace bool with qual_empty(). by Steve Naroff · 16 years ago
- 0de21fd Contains the following (related to problems found while investigting <rdar://problem/6497631> Message lookup is sometimes different than gcc's). by Steve Naroff · 16 years ago
- 66b4151 Make sure to reset the DidCallStackSave variable before emitting a compound statement. Fixes PR3649. by Anders Carlsson · 16 years ago
- 44baa8a More objc gc work. Match gcc's treatment of ivar access by Fariborz Jahanian · 16 years ago
- 6eef498 Copy some clenaups from Eli to code that I copied. :-) by Mike Stump · 16 years ago
- 20733cd Cleanp code with some recent suggestions. by Mike Stump · 16 years ago
- 2217c87 A bit of Evaluate cleanup. Also, a full audit of what's missing that by Eli Friedman · 16 years ago
- 245f553 x86_64 ABI: Actually, we can always pass things we want to pass in by Daniel Dunbar · 16 years ago
- 61d2e4a Fix regression in naming convention derivation: a method only follows the copy 'rule' if it doesn't already start with 'init', etc. by Ted Kremenek · 16 years ago
- ddd2b6e Eliminate a bunch of code which should be dead. by Eli Friedman · 16 years ago
- 775e43b x86_64 ABI: Make sure to pass vectors that we want to pass in memory by Daniel Dunbar · 16 years ago
- 578a972 Throw the switch to exclusively use Evaluate (along with the small by Eli Friedman · 16 years ago
- e28099b x86_64 ABI: Pass 32-bit vectors as Integer to match gcc. We don't care by Daniel Dunbar · 16 years ago
- 0af9929 x86_64 ABI: Classify <1 x i64> as INTEGER (match gcc not llvm-gcc). by Daniel Dunbar · 16 years ago
- 4bdf087 Enhance Evaluate to handle ObjC qualified id and class types; as far as by Eli Friedman · 16 years ago
- c508203 Fix for PR3433: map __alignof__ to preferred alignment. (This was by Eli Friedman · 16 years ago
- 9c2f06b Last part of PR3254: use the same alignment computation in Sema and by Eli Friedman · 16 years ago
- dcdafb6 Improvements to ASTContext::getDeclAlignInBytes; fixes the testcase in by Eli Friedman · 16 years ago
- 8b1527b Remove debugging statement. by Steve Naroff · 16 years ago
- 6032979 Match gcc and always perform array/function conversion for asm input exprs. Fixes PR3641. by Anders Carlsson · 16 years ago
- 559a833 Correctly encode incomplete and variable length arrays. Fixes PR3639. by Anders Carlsson · 16 years ago
- 643887a local array of objects are non-gc'able. by Fariborz Jahanian · 16 years ago
- f7f52e7 More work to integrate newly added ObjCQualifiedClassType into the type system. by Steve Naroff · 16 years ago
- adcf5b3 Put compiler headers in <prefix>/lib/clang/1.0/include (vs by Daniel Dunbar · 16 years ago
- 15509f4 Add support for GCC ObjC extension "Class<protocol>". Sigh. by Steve Naroff · 16 years ago
- d684000 The blocks ABI is wrong, add a FIXME. by Mike Stump · 16 years ago
- 4e7a1f7 Add CodeGen support for the helper for BlockDeclRefExprs. The easier by Mike Stump · 16 years ago
- 8dfb0c5 Warn about bogus protocol qualifiers. by Steve Naroff · 16 years ago
- 7b5b317 Warn on use of __weak attribute on local variable (objc2 gc specific). by Fariborz Jahanian · 16 years ago
- 39868cd Use llvm::StringsEqualNoCase instead of strncasecmp. by Ted Kremenek · 16 years ago
- 86f938b Fixed an ICE in meta-data generation of __weak/__strong ivars. by Fariborz Jahanian · 16 years ago
- 4fff481 Evaluation of unary deref could call integer evaluator on non-integral by Daniel Dunbar · 16 years ago
- 61490e9 Fix build on windows. by Cedric Venet · 16 years ago
- 5fd659d by Steve Naroff · 16 years ago
- b80976c Improved naming convention heuristics in the retain/release checker to better by Ted Kremenek · 16 years ago
- 61125c8 Slight tweak to last commit: make sure to copy CVR qualifiers for fixed by Eli Friedman · 16 years ago
- 1ca4813 Re-fix r65140 correctly. by Eli Friedman · 16 years ago
- 4f676ed Handle case of none gc'able objects regardless of their type. by Fariborz Jahanian · 16 years ago
- eda9a5e Emit extern_weak when needed. - PR3629. by Daniel Dunbar · 16 years ago
- 524ed95 We must always mangle attribute overloadable functions; even if in a by Daniel Dunbar · 16 years ago
- ccef371 Fix <rdar://problem/6500554> missing objc error message. by Steve Naroff · 16 years ago
- 685befe switch the macroinfo argument lists from being allocated off the heap by Chris Lattner · 16 years ago
- cf29e07 detemplatify setArgumentList and some other cleanups. by Chris Lattner · 16 years ago
- 0301b3f require the MAcroInfo objects are explcitly destroyed. by Chris Lattner · 16 years ago
- 4ee413b allocate and dellocate objc decl list through AST Context instead of by Chris Lattner · 16 years ago
- f25df99 fix indentation by Chris Lattner · 16 years ago
- fe90de7 silence some warnings in no asserts mode. by Chris Lattner · 16 years ago
- 38af2de add plumbing to get ASTContext& down to allocation/deallocation points in ObjCList, by Chris Lattner · 16 years ago
- 11e1e1a newly factored, we can now move the set and destroy methods out of line. by Chris Lattner · 16 years ago
- df96929 Greatly simplify the logic in ExplodedGraphImpl::TrimGraph. Now we just do a by Ted Kremenek · 16 years ago
- 88cf7a1 rename ObjCList::clear() -> ObjCList::Destroy(). Require that destroy is called by Chris Lattner · 16 years ago
- ab35163 rearrange the contents of DeclObjC to be by-class. Fix some 80 column issues by Chris Lattner · 16 years ago
- 077e0f0 destroy should forward to base class. by Chris Lattner · 16 years ago
- 7a21bd0 move the @implementation ivar list to being an ObjCList, which prevents by Chris Lattner · 16 years ago
- e6a9016 Add some IRgen improvement notes. by Daniel Dunbar · 16 years ago
- dd7b897 Shorten; no functionality change. by Daniel Dunbar · 16 years ago
- f4fe0f0 Take advantage of noreturn attribute to add unreachable instruction & by Daniel Dunbar · 16 years ago
- 540b146 Always try to fold array sizes, and warn if we could fold something that isn't an ICE. This makes us compatible with GCC. by Anders Carlsson · 16 years ago
- 89951a8 remove some more methods from objc decls, using the iterator by Chris Lattner · 16 years ago
- 69ab26a Handle constant int -> ptr casts of lvalue results. - PR3463 (again). by Daniel Dunbar · 16 years ago
- cafeb35 remove some slow O(n) methods. by Chris Lattner · 16 years ago
- 07fa774 Change ObjCForwardProtocolDecl to use an ObjCList. by Chris Lattner · 16 years ago
- c0ef9f5 Set call attribute for direct calls (i.e. noreturn). by Daniel Dunbar · 16 years ago
- 6795605 move the interace list of @class to use ObjCList. by Chris Lattner · 16 years ago
- 63359c8 Fix <rdar://problem/6586239> bitfield constraints not enforced (for ObjC) by Steve Naroff · 16 years ago
- 4a323d9 remove a dead list. by Chris Lattner · 16 years ago
- 54fefbe add support for amd64-*, patch by Brooks Davis! by Chris Lattner · 16 years ago
- 2073216 switch ObjCMethodDecl's parameter list from being explicitly managed to an ObjCList. by Chris Lattner · 16 years ago
- e881483 switch the interface ivar list from being explicitly managed to using ObjCList. by Chris Lattner · 16 years ago
- 0b7ebb3 move more objc destruction out of dtors into Destroy. by Chris Lattner · 16 years ago
- 411280e move some objc decl destruction out of dtors into Destroy method. by Chris Lattner · 16 years ago
- 779747c Add an example in comments. by Zhongxing Xu · 16 years ago
- 1f4a6db A few small tweaks to isConstantInitializer. (No test because this by Eli Friedman · 16 years ago
- e8761c8 Add support for * (unary dereference) operator to ExprConstant. by Eli Friedman · 16 years ago
- 67762a3 optimize the 'StoredDeclsMap' for the common case where there is by Chris Lattner · 16 years ago
- da15323 Suppress constant initializer checking when the declaration isn't valid. by Eli Friedman · 16 years ago
- 6e656f4 Initialize the Init variable to something reasonable when we emit an by Eli Friedman · 16 years ago
- be26570 ExprConstant handling for a couple more cases of pointer-to-int casts by Eli Friedman · 16 years ago
- 4f54526 More objc gc's ir-gen fixes. by Fariborz Jahanian · 16 years ago
- bdc3d00 make the redeclaration case faster for the common instance of a redeclaration by Chris Lattner · 16 years ago
- 7f0be13 80 cols by Chris Lattner · 16 years ago
- 9194250 slight code simplifications. by Chris Lattner · 16 years ago
- da5c86f Deox and Capitolize. by Mike Stump · 16 years ago
- 676f024 map source ranges through macro expansions. Before: by Chris Lattner · 16 years ago
- 4451bd9 Fix spacing. by Mike Stump · 16 years ago
- ebbbb1b refactor, pass ranges down instead of the whole DiagnosticInfo. by Chris Lattner · 16 years ago
- c3cf7b2 Fix crash from <rdar://problem/6562655>: 'init' method only return a receiver alias if the return type is a location. by Ted Kremenek · 16 years ago
- 92dd386 replace a dirty hack with a clean solution. Too bad we can't by Chris Lattner · 16 years ago