- d7135b4 minor simplifications/cleanups to type comparisons. by Chris Lattner · 17 years ago
- 42a2174 remove the Decl::getCanonicalType() method. by Chris Lattner · 17 years ago
- c1b68db Start switching clients over from CT.getCanonicalType() to Context.getCanonicalType(CT) for PR2189. by Chris Lattner · 17 years ago
- 3dae6f4 introduce a new ASTContext::getCanonicalType method. This is the first by Chris Lattner · 17 years ago
- eae0eaa Make EnumType/RecordType classof predicates simpler and more efficient in by Chris Lattner · 17 years ago
- 1baaf13 add a helper EnumType object for asking about tagtypes for enums. by Chris Lattner · 17 years ago
- acb67d9 reject 'typedef int y; int test(x, y)'. by Chris Lattner · 17 years ago
- 35d9c91 split parsing of identifier lists in function declarators out into by Chris Lattner · 17 years ago
- a0d056d split code for handling grouping parens in declarators from code that by Chris Lattner · 17 years ago
- 44f6d9d Use token lookahead to simplify some code that is rarely executed. by Chris Lattner · 17 years ago
- 052fbcd Fix a bug I introduced in my const'ification patch. by Chris Lattner · 17 years ago
- f3874bc This patch contains these changes: by Chris Lattner · 17 years ago
- 3b3012e don't dereference hte end iterator when inserting at end of buffer. by Chris Lattner · 17 years ago
- 546b68c fix a number of const qualification bugs. by Chris Lattner · 17 years ago
- 6ab935b Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
- a15e9d2 Step #1 to fixing PR2012: c89 allows declspecs to be completely by Chris Lattner · 17 years ago
- 328bdf2 Rename ScopedDecl::getContext() -> getContextDecl(). Two motivations: by Steve Naroff · 17 years ago
- 3277df4 add an isAnyComplexType() method, which returns true for both by Chris Lattner · 17 years ago
- 9104f3c Add explicit support for diagnosing implicit function decls. by Steve Naroff · 17 years ago
- eee57c0 Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 17 years ago
- 175f1c5 Make typedefs public. by Ted Kremenek · 17 years ago
- f00daf0 Hooked up GRSimpleAPICheck and the simple Objective-C Foundation checks to use by Ted Kremenek · 17 years ago
- 61912d2 Mark nodes as sinks that GRAuditor says should be marked as sinks. by Ted Kremenek · 17 years ago
- 54042a5 Added "getLogicalLineNumber" and "getLogicalColumnNumber" to FullSourceLoc. by Ted Kremenek · 17 years ago
- 8c2044b Added "isFileID()" to FullSourceLoc. by Ted Kremenek · 17 years ago
- 4949251 Created a destructor so that the top-level decls can be deleted. by Sam Bishop · 17 years ago
- 74af9e9 Temporarily make the Decl virtual destructor public, so that calls to "delete" by Sam Bishop · 17 years ago
- 9f3f0fd Added node_iterator to ExplodedGraph to allow iteration over all nodes in by Ted Kremenek · 17 years ago
- 7d88220 Created new path-sensitive bug-reporting scheme based on the classes by Ted Kremenek · 17 years ago
- e5bcec0 Added missing #ifndef...#define...#endif directives to protect against by Ted Kremenek · 17 years ago
- c7065b3 Fix initialization bug. by Ted Kremenek · 17 years ago
- 1e748a1 Added "back()" method to PathDiagnostic to access the last piece in a path. by Ted Kremenek · 17 years ago
- 1520816 Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjCInterfaceDecl is arguably a TypeDecl, it isn't a ScopedDecl. Since TypeDecl's are scoped, it makes sense to simply treat them as NamedDecl's. I could have fiddled a bit more with the hierarchy (in terms of creating a non-scoped TypeDecl), however this probably isn't worth the effort. by Steve Naroff · 17 years ago
- cfac88d add a common base class "PointerLikeType" for PointerType and ReferenceType, by Chris Lattner · 17 years ago
- 67241b4 improve error to be something end users will actually understand :) by Chris Lattner · 17 years ago
- 6384a01 by Steve Naroff · 17 years ago
- d42de4d Added "description" field to PathDiagnostic. by Ted Kremenek · 17 years ago
- 9db553e Various parts of the standard require something to be an "incomplete or by Chris Lattner · 17 years ago
- 5fcb38b 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 17 years ago
- 19eb97e Fix several bugs in array -> pointer decomposition. by Chris Lattner · 17 years ago
- 642d531 Fix copy-paste error. by Ted Kremenek · 17 years ago
- e57c21a Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 17 years ago
- 8666d84 improve comma consistency, yes I'm anal by Chris Lattner · 17 years ago
- dd0126b Inlined clang/Analysis/Analyses/GRSimpleVals.h into LocalCheckers.h and removed by Ted Kremenek · 17 years ago
- 7877f2b Added variation of the "Report" method in the class Diagnostic that takes by Ted Kremenek · 17 years ago
- 108048c Added path-sensitive check for return statements that return the address by Ted Kremenek · 17 years ago
- c72d22d rename Decl::CompatibleAlias -> ObjCCompatibleAlias. by Chris Lattner · 17 years ago
- 9fcf5b6 Make sure Sema::ActOnClassMessage() correctly diagnoses "super". by Steve Naroff · 17 years ago
- 583c438 Hooked up initial NSString interface checking to GRSimpleVals. by Ted Kremenek · 17 years ago
- d9ee999 ProgramPoint is just a smart pointer; no reason to return a constant reference. by Ted Kremenek · 17 years ago
- 139e47d Add default ctor implementation. by Ted Kremenek · 17 years ago
- 57ba65c Add html::EscapeText for std::string; use this function to escape text in message bubbles. by Ted Kremenek · 17 years ago
- b0a2e47 Added "GRAuditor" and "GRSimpleAPICheck" interface to allow simple stateless checkers to be injected into the analyzer. by Ted Kremenek · 17 years ago
- aa3e537 PathDiagnosticPiece no longer contains a vector of strings; just one string. by Ted Kremenek · 17 years ago
- 14f1457 Added classes "PathDiagnosticPiece", "PathDiagnostic", and "PathDiagnosticClient", which encapsulate diagnostic reporting for paths. by Ted Kremenek · 17 years ago
- 5648a71 In ObjCMessageExpr: getSelector() const should just return "Selector", not "const Selector&" because Selector is just a smart pointer. by Ted Kremenek · 17 years ago
- efc1121 Extend QualType::getAddressSpace to do the right thing for array types, and in by Nate Begeman · 17 years ago
- d58da2b GRSimple analysis now outputs additional diagnostic warnings about by Ted Kremenek · 17 years ago
- 7150747 Tweak to transfer function for ObjCMessageExpr: handle both instance methods by Ted Kremenek · 17 years ago
- 4b2bdd5 Added logic to check for uninitialized values as the receivers for message expressions by Ted Kremenek · 17 years ago
- c6b7a1e Added initial transfer function support for ObjCMessageExpr. by Ted Kremenek · 17 years ago
- 0cdce4d Added "arg_iterators" to ObjCMessageExpr (for iterating over the arguments of a message expression) by Ted Kremenek · 17 years ago
- f10f288 Rename "Nodify" to "MakeNode" by Ted Kremenek · 17 years ago
- 9b9f2b9 LiveVariables analysis now uses intersect for the merge of block-level expression liveness information. by Ted Kremenek · 17 years ago
- 5707219 Minor speed tweak per Chris's suggestion: use &S[0] instead of S.c_str(). by Ted Kremenek · 17 years ago
- 32ffc56 Integrated some of Chris's comments; check for an empty string in InsertStrXXX() by Ted Kremenek · 17 years ago
- 0735c17 Moved generation of html header/footer with builtin CSS to the rewriter library. by Ted Kremenek · 17 years ago
- df93c28 Added InsertStrXXX/InsertCStrXXX methods to the Rewriter to provide a simpler by Ted Kremenek · 17 years ago
- 90588af More cleanups to HTML rewriter API: remove the InsertTag method; was too complicated by Ted Kremenek · 17 years ago
- a388184 More HTML rewriter cleanups. Preliminary CSS support in code pretty-printing. by Ted Kremenek · 17 years ago
- f08ee32 Some cleanups to the HTMLRewrite API. Added support for printing out line by Ted Kremenek · 17 years ago
- a8c90dd Modified "InsertTag" (HTML rewriter) to have an optional "OutermostTag" flag to by Ted Kremenek · 17 years ago
- 24612ae Added the beginning of a set of rewriter functions for pretty-printing source by Ted Kremenek · 17 years ago
- 8d0368c Added variant of "InsertText" in the Rewriter to support inserting text both by Ted Kremenek · 17 years ago
- c710e5d Fix comment. by Ted Kremenek · 17 years ago
- 6104507 Added method "getSourceMgr" to class Rewriter. by Ted Kremenek · 17 years ago
- e439fe0 Fix a typo by Nate Begeman · 17 years ago
- 31803c3 Added initial transfer function support for inline asm. by Ted Kremenek · 17 years ago
- 8f9b504 Added "inputs" and "outputs" iterator (expression) for AsmStmt. by Ted Kremenek · 17 years ago
- 29ed685 eliminate the last signed element count. by Chris Lattner · 17 years ago
- 526bf91 clean up iteration over propertydecls. by Chris Lattner · 17 years ago
- 4485961 clean up property memory allocation to move it into the ast classes by Chris Lattner · 17 years ago
- cffe366 make property addition work list all other "add" methods. Do by Chris Lattner · 17 years ago
- 2d1c431 add the last two Create methods for decls, woo! by Chris Lattner · 17 years ago
- ec4979b Convert more counts to be zero based instead of -1 based, make them unsigned. by Chris Lattner · 17 years ago
- 1b6de33 add two more Create methods. by Chris Lattner · 17 years ago
- 321b5d1 simplify the way ObjCCategoryDecl's get their referenced protocols list by Chris Lattner · 17 years ago
- e29dc83 Add create methods for ObjCCategoryDecl, ObjCForwardProtocolDecl, ObjCClassDecl. by Chris Lattner · 17 years ago
- e2e6ab4 make some more 'counts' unsigned. by Chris Lattner · 17 years ago
- 243ddef make NumClassMethods unsigned in categories by Chris Lattner · 17 years ago
- 7afba9c minor cleanups, make getNumInstanceMethods always return unsigned. by Chris Lattner · 17 years ago
- 180f7e2 Give ObjCProtocolDecl a Create method. by Chris Lattner · 17 years ago
- 0db541b Add create methods for ObjCIvarDecl and ObjCInterfaceDecl by Chris Lattner · 17 years ago
- 685d792 Make the parameter count of ObjCMethodDecl unsigned, you by Chris Lattner · 17 years ago
- f735583 remove some dead arguments to ObjCMethodDecl. by Chris Lattner · 17 years ago
- 114add6 Give ObjCMethodDecl a Create method. by Chris Lattner · 17 years ago
- 81db64a switch the rest of the C decl classes to do their by Chris Lattner · 17 years ago
- 9ea647e Make a ctor protected by Chris Lattner · 17 years ago
- 58114f0 move the ASTContext argument to be first in the argument list of by Chris Lattner · 17 years ago
- 4c7802b Switch over functiondecl. This makes it obvious that the ASTContext by Chris Lattner · 17 years ago