Age | Commit message (Expand) | Author |
2009-07-18 | Enhance testing of overriding exception specs for inaccessible base exceptions. | Sebastian Redl |
2009-07-18 | Fix a comment. | Zhongxing Xu |
2009-07-18 | Introduce a redecl_iterator in Decl class, so that we can do a "iterate over ... | Argyrios Kyrtzidis |
2009-07-18 | Introduce the Redeclarable template class, which serves as a base type defini... | Argyrios Kyrtzidis |
2009-07-18 | Remove StmtLocResolver::VisitObjCIvarRefExpr, it was only there to avoid retu... | Argyrios Kyrtzidis |
2009-07-18 | Don't add a SourceLocation for 'self' if it does not actually appears in the ... | Argyrios Kyrtzidis |
2009-07-18 | Replace stmt visitors with the fall back method. | Zhongxing Xu |
2009-07-18 | Fix crash in StoreManager::NewCastRegion() when handling casts from 'id' (or ... | Ted Kremenek |
2009-07-18 | Return CodeTextRegions for BlockPointerTypes in addition to FunctionPointerTy... | Ted Kremenek |
2009-07-18 | Fix some fallout from CFGBuilder restructuring: all expressions that we expli... | Ted Kremenek |
2009-07-18 | Remove getFirstDeclaration/getLatestDeclaration from FunctionDecl and VarDecl. | Argyrios Kyrtzidis |
2009-07-18 | Remove ASTContext::getCanonicalDecl() and use Decl::getCanonicalDecl in its p... | Argyrios Kyrtzidis |
2009-07-18 | Move the functionality of ASTContext::getCanonicalDecl(), into a virtual meth... | Argyrios Kyrtzidis |
2009-07-18 | Resolve a location that is inside an ObjCMethodDecl. | Argyrios Kyrtzidis |
2009-07-18 | Make ASTLocation accept a Stmt that is inside an ObjCMethodDecl. | Argyrios Kyrtzidis |
2009-07-18 | Search through all Decls that are DeclContexts. | Argyrios Kyrtzidis |
2009-07-18 | Set ObjCMethodDecl's EndLoc to the '}' when it's a definition. | Argyrios Kyrtzidis |
2009-07-18 | Location should be passed to setLocEnd() not to setAtEndLoc() which belongs t... | Argyrios Kyrtzidis |
2009-07-17 | fix objc codegen to not have its own list of things that eventually get into ... | Chris Lattner |
2009-07-17 | Fix caching bug revealed by analyzing ClamAV using RegionStore. | Ted Kremenek |
2009-07-17 | Fix possible null dereference in CFG construction. | Ted Kremenek |
2009-07-17 | Restructure CFG builder to have just one visitor path instead of two. The result | Ted Kremenek |
2009-07-17 | Move WalkAST logic for 'ChooseExpr' to 'VisitChooseExpr'. | Ted Kremenek |
2009-07-17 | Move WalkAST logic for 'ConditionalOperator' into 'VisitConditionalOperator'. | Ted Kremenek |
2009-07-17 | Remove stale comments. | Ted Kremenek |
2009-07-17 | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek |
2009-07-17 | clean up this code, add the fixme back. | Chris Lattner |
2009-07-17 | objc methods can't be an operand to callexpr. | Chris Lattner |
2009-07-17 | Rename Entity::getName() to Entity::getPrintableName() to make its purpose | Zhongxing Xu |
2009-07-17 | As suggested by Argyrios, revert r76159 and make "FindImmediateParent" | Zhongxing Xu |
2009-07-17 | Refactor code into a new CallExpr::getDirectCallee() method. Simplify some | Zhongxing Xu |
2009-07-17 | CallGraph: add a bunch of stmt visitors. | Zhongxing Xu |
2009-07-17 | Relax the assertion in ASTLocation's ctor: if the decl is not the immediate | Zhongxing Xu |
2009-07-17 | CallGraph: | Zhongxing Xu |
2009-07-17 | Fixup indentation of rest of switch statement to match llvm coding | Mike Stump |
2009-07-17 | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek |
2009-07-17 | If we are not doing a Debug build, no need for the debugging print methods. | Argyrios Kyrtzidis |
2009-07-17 | Check whether the IdentifierInfo is null, before using it. | Argyrios Kyrtzidis |
2009-07-17 | Make noreturn functions alter the CFG. | Mike Stump |
2009-07-17 | Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>(). | Ted Kremenek |
2009-07-16 | Fix unused variable warnings (with -Asserts) | Daniel Dunbar |
2009-07-16 | ir-gen for --/++ operators of objc object pointers | Fariborz Jahanian |
2009-07-16 | Hook in s390x stuff into clang | Anton Korobeynikov |
2009-07-16 | Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. | Ted Kremenek |
2009-07-16 | Move the source-level CFG from libAST to libAnalysis. | Ted Kremenek |
2009-07-16 | Update for LLVM API change. | Owen Anderson |
2009-07-16 | Diagnose ++/-- op on objc pointers in | Fariborz Jahanian |
2009-07-16 | use CreateRuntimeVariable to get __CFConstantStringClassReference | Chris Lattner |
2009-07-16 | Cleanup a couple loops and improve a comment (based on feedback from Fariborz). | Steve Naroff |
2009-07-16 | Remove ASTContext::isObjCObjectPointerType(). | Steve Naroff |