- 1caae95 Implement bzero, memset, memmove builtins. by Daniel Dunbar · 17 years ago
- 4493f79 Implement nans, prefetch, and trap builtins. by Daniel Dunbar · 17 years ago
- 7caeabd minor cleanup to the actions interface to pass around SmallVectorImpl instead by Chris Lattner · 17 years ago
- 465172f Add test case for nonnull attribute. Fix indexing bug. by Ted Kremenek · 17 years ago
- eb2b2a3 Added sema support for the nonnull attribute. Will add test cases soon. by Ted Kremenek · 17 years ago
- 14ecaef Kill an unused variable warning by Daniel Dunbar · 17 years ago
- 780f329 move two more lists of protocols over to use ObjCList<ObjCProtocolDecl>, by Chris Lattner · 17 years ago
- a933c3c Add __builtin_powi[fl] support by Daniel Dunbar · 17 years ago
- 964c27c add forward definition protocols to the protocol list for a class. by Chris Lattner · 17 years ago
- 919d87d references to completely undeclared protocols should be errors. by Chris Lattner · 17 years ago
- 3db6cae introduce a new ObjCList templated class and start moving by Chris Lattner · 17 years ago
- f7b2c98 rename setReferencedProtocolList -> addReferencedProtocols to by Chris Lattner · 17 years ago
- 04b2900 Implement ffs, parity, and popcount builtins. + test case by Daniel Dunbar · 17 years ago
- e8f0d30 Change 'MDecl' to 'MD' to fix redefinition compiler error in MSVC++. by Argyrios Kyrtzidis · 17 years ago
- cfb0ef5 fix typo by Chris Lattner · 17 years ago
- b752f28 Switch initialization of the protocol list for an interface decl to use by Chris Lattner · 17 years ago
- 6562fda when in the context of an @implementation, look for private methods in the by Chris Lattner · 17 years ago
- 1565e03 don't pass in null as the Name for GenerateClassStructure, by Chris Lattner · 17 years ago
- 0b2f7ea improve diagnostics about problems with receivers to highlight the receiver. by Chris Lattner · 17 years ago
- 2b1cc8b continue cleaning up code, and disable sending a message directly to an by Chris Lattner · 17 years ago
- fe1a553 simplify control flow a bit, reducing indentation. No functionality change. by Chris Lattner · 17 years ago
- b24d921 tighten up some checks, don't allow sending a message to NSString**** by Chris Lattner · 17 years ago
- 2a01b72 improve invalid member reference diagnostics to print the type and by Chris Lattner · 17 years ago
- c188d30 merge a bunch of code that is now common between qual interfaces and interfaces. by Chris Lattner · 17 years ago
- 9baefc2 rename getProtocols -> getProtocol, as it only returns a single by Chris Lattner · 17 years ago
- cdce6d1 use iterators instead of direct access to protocol list. by Chris Lattner · 17 years ago
- a38e6b1 Fix a bunch of crashes that occur in (attempted) handling of objc properties. by Chris Lattner · 17 years ago
- 123a11f use the simplified form of lookupInstanceVariable for callers who by Chris Lattner · 17 years ago
- 1f71974 improve the diagnostic for an erroneous objc ivar reference from: by Chris Lattner · 17 years ago
- 68a057b simplify a bunch of code, no functionality change. by Chris Lattner · 17 years ago
- fb173ec rearrange some code, no functionality change. by Chris Lattner · 17 years ago
- b49b572 improve comments yet again, now I know what this does :) by Chris Lattner · 17 years ago
- 0b6d1e6 minor rename, also, reject pointer to qualified id. by Chris Lattner · 17 years ago
- 17af2a6 Fix a crash that can happen when you have typedefs for pointers to by Chris Lattner · 17 years ago
- 22e684a simplify this predicate, only checking isObjCQualifiedIdType once. by Chris Lattner · 17 years ago
- 109949a Patch by by Ted Kremenek · 17 years ago
- 1a80448 "currentHandler" is a nullary selector by Ted Kremenek · 17 years ago
- 2d1086c Fix caching bug. by Ted Kremenek · 17 years ago
- 70a733e Add panic support for NSAssertionHandler. by Ted Kremenek · 17 years ago
- 7386d77 Add panic function. by Ted Kremenek · 17 years ago
- 75b0a1c Fix 80 col violation by Ted Kremenek · 17 years ago
- 40fc5c7 Fix regression by explicitly checking if we are negating a SymIntConstantVal. by Ted Kremenek · 17 years ago
- 1e38f85 Improve path-sensitivity when using the logical not operator. by Ted Kremenek · 17 years ago
- ad8329e Renamed deterministic EvalBinOp to DetermEvalBinOpNN. This name mangling is unfortunately needed because virtual methods with the same name can be hidden by subclasses. by Ted Kremenek · 17 years ago
- 6297a8e Created ValueStateSet class to manage the creation of multiple states by a method. by Ted Kremenek · 17 years ago
- 6c5df7f Add support shufpd by Mon P Wang · 17 years ago
- 35912db Update signature of EvalAssume. by Ted Kremenek · 17 years ago
- 729a9a2 Move GRTransferFunc* into ValueStateManager, and move the assumption logic there as well. by Ted Kremenek · 17 years ago
- b48c645 Remove redundant logic. by Ted Kremenek · 17 years ago
- df7533b Begin major changes to EvalXXX methods in GRTransferFuncs. Currently some of the methods only return an RVal; we want them to be able to create an arbitrary number of states. by Ted Kremenek · 17 years ago
- 1f3846e Fix for codegen crash on multibit bool bitfield initialization by Daniel Dunbar · 17 years ago
- f59bf48 Moved RemoveDeadBindings logic for the contents of 'Store' to a virtual RemoveDeadBindings method in StoreManager. by Ted Kremenek · 17 years ago
- 90eb539 Unify ctx_iterator/ctx_begin()/ctx_end() and iterator/begin()/end() so that a single iterator type is used for both traversing decls of the same declaration context *and* of the parent declaration contexts, depending on the value of the bool parameter 'LookInParentCtx' that is passed to IdentifierResolver::begin(). by Argyrios Kyrtzidis · 17 years ago
- 0ff12f0 When in C++, make EnumConstant names hide tag names in the same scope, instead of colliding with them. by Argyrios Kyrtzidis · 17 years ago
- 8f3b265 Two fixes: by Steve Naroff · 17 years ago
- b02ef24 When checking for name collision between a tag and a previously defined namespace, the collision occured even when the tag was in a different nested scope. by Argyrios Kyrtzidis · 17 years ago
- d7464be Add 'this' in the comments of Parser::ParseCastExpression to indicate that it is handled. by Argyrios Kyrtzidis · 17 years ago
- cd512dc Fix regression introduced by http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20080714/006514.html. by Ted Kremenek · 17 years ago
- f496ee1 Fix transfer function logic in GRSimpleVals for integer casts: only support casts from integers to integers. by Ted Kremenek · 17 years ago
- f4ebf42 For the MissingDealloc check, don't treat IBOutlet ivars as being needed to be released by Ted Kremenek · 17 years ago
- f135e80 Use lowercase of attribute iboutlet to not conflict with the macro IBOutlet by Ted Kremenek · 17 years ago
- 96329d4 Added parsing/sema support for __attribute__ ((IBOutlet)), a clang-specific attribute that the static analyzer will use to recognize what ivars are IBOutlets. by Ted Kremenek · 17 years ago
- f9c2a5d Distinguish between dead stores and dead initializations. by Ted Kremenek · 17 years ago
- 10161bf isRetain() and isRelease() now only returns true if "Retain"/"Release" appears in the suffix of a function's name. by Ted Kremenek · 17 years ago
- 37d785b Support retain/release tracking for CoreGraphics (CGxxxRef) objects. by Ted Kremenek · 17 years ago
- 8f26986 Refactor Dead Stores error reporting to use the simplified BugReporter::EmitBasicReport interface. by Ted Kremenek · 17 years ago
- be2341d http://llvm.org/bugs/show_bug.cgi?id=2523 by Nate Begeman · 17 years ago
- 5720207 Added method "EmitBasicReport" to BugReporter to simplify the emission of simple bug diagnostics. by Ted Kremenek · 17 years ago
- ca33f79 remove CGObjCEtoile until it compiles. by Chris Lattner · 17 years ago
- b9f930d Use of NextToken() makes ParseIdentifierStatement unnecessary. by Argyrios Kyrtzidis · 17 years ago
- 63cf923 Convert CRLF -> LF line endings. by Argyrios Kyrtzidis · 17 years ago
- 732b223 expand casts to handle what isIntegerConstantExpr handles. by Chris Lattner · 17 years ago
- 4c4867e Add support for __builtin_type_compatible_p, enums, etc. by Chris Lattner · 17 years ago
- 54176fd start remembering diagnostics for various cases, add some missing by Chris Lattner · 17 years ago
- e4773eb Tidy up error message. by Ted Kremenek · 17 years ago
- 170db7c Add CSS for word wrapping of long message bubbles. by Ted Kremenek · 17 years ago
- 87eae5e Provide a structure for passing down 'is evaluated' and passing up by Chris Lattner · 17 years ago
- 0d8019e Add new check: -check-objc-methodsigs. This check scans methods in by Ted Kremenek · 17 years ago
- 75a4881 simplify some code a bit. by Chris Lattner · 17 years ago
- fcee001 share code between sizeof(expr) and sizeof(type) by Chris Lattner · 17 years ago
- 078c0bc Fix comment. by Ted Kremenek · 17 years ago
- ac7cb60 implement support for __extension__, make sure the result of a by Chris Lattner · 17 years ago
- 7a76778 add a new getIntTypeSizeInBits method. by Chris Lattner · 17 years ago
- cf0f51d rename "SInt" methods to "Int" in APValue. by Chris Lattner · 17 years ago
- b542afe make the new evaluator avoid conversions APValue<->APSInt in some cases. by Chris Lattner · 17 years ago
- bdb435d Refactored auditor interface within GRExprEngine and GRCoreEngine to use a "batch auditor" to dispatch to specialized auditors instead of having a separate vector for each audited Expr*. This not only provides a much cleaner implementation, but also allows us to install auditors for any expression. by Ted Kremenek · 17 years ago
- f5eeb05 rearrange some code, no functionality changes. by Chris Lattner · 17 years ago
- 0ce902b Patch by Csaba Hruska and Peter Neumark: by Ted Kremenek · 17 years ago
- 4323a57 Refactored most of the "Store" piece of ValueState into a Store type. The by Ted Kremenek · 17 years ago
- e569031 Remove unused class AnnotatedPath. by Ted Kremenek · 17 years ago
- d72ee90 Move some environment methods from ValueState/ValueStateManager to Environment/EnvironmentManager. by Ted Kremenek · 17 years ago
- f7da726 Simplify the parser a bit by looking at the next token without consuming it (by Preprocessor::LookNext): by Argyrios Kyrtzidis · 17 years ago
- 9e0ed0b Add Preprocessor::LookNext method, which implements an efficient way to 'take a peek' at the next token without consuming it. by Argyrios Kyrtzidis · 17 years ago
- 1fa7f58 Remove getParentMap() from GRExprEngine. by Ted Kremenek · 17 years ago
- 070a825 Fix PR2519: correctly handle CFDictionaryCreate. by Ted Kremenek · 17 years ago
- 49ff7a1 Extend va_start checking to include __builtin_stdarg_start. by Ted Kremenek · 17 years ago
- 6a705f0 Codegen support for __builtin_stdarg_start by Chris Lattner · 17 years ago
- f8396b6 Add parser support for __builtin_stdarg_start, PR2531 by Chris Lattner · 17 years ago
- 8133a26 Initial work on splitting the ValueState into an Environment, Store, and by Ted Kremenek · 17 years ago
- 5f6b632 revert my bogus attempt to fix the comment. sorry for the noise. by Nuno Lopes · 17 years ago