- Jul 30, 2009
-
-
Ryan Flynn authored
llvm-svn: 77573
-
Zhongxing Xu authored
AnalysisContext. llvm-svn: 77563
-
Eli Friedman authored
ever trigger). Add an "unsupported" case that triggers for C++ code. It would be nice if someone would implement this properly... it shouldn't be too hard, but I haven't looked closely at the relevant code. llvm-svn: 77562
-
Mike Stump authored
llvm-svn: 77560
-
Mike Stump authored
that we would silently do bad things with virtual bases in the layout code, so, we just turn them off. When people do better things with them, we can turn them back on. llvm-svn: 77556
-
Eli Friedman authored
llvm-svn: 77555
-
Fariborz Jahanian authored
in current class. llvm-svn: 77554
-
Argyrios Kyrtzidis authored
-Accept an ObjC method and find all message expressions that this method may respond to. -Accept an ObjC message expression and find all methods that may respond to it. llvm-svn: 77551
-
Argyrios Kyrtzidis authored
llvm-svn: 77548
-
Argyrios Kyrtzidis authored
llvm-svn: 77547
-
Douglas Gregor authored
There's no point in going through the getAs<TagType> stuff to find the definition of a tag, since tags rarely have more than one or two declarations llvm-svn: 77546
-
Argyrios Kyrtzidis authored
through the IndexProvider. llvm-svn: 77543
-
Argyrios Kyrtzidis authored
inside a particular ASTContext. llvm-svn: 77541
-
Argyrios Kyrtzidis authored
llvm-svn: 77540
-
Argyrios Kyrtzidis authored
llvm-svn: 77539
-
Argyrios Kyrtzidis authored
GlobalSelector is an ASTContext-independent way to refer to Objective C selectors. llvm-svn: 77538
-
Argyrios Kyrtzidis authored
llvm-svn: 77537
-
Argyrios Kyrtzidis authored
references of a declaration across translation units. -Modify the index-test tool to use it. llvm-svn: 77536
-
Argyrios Kyrtzidis authored
TULocation is like ASTLocation but also contains the TranslationUnit* that the ASTLocation originated from. llvm-svn: 77535
-
Argyrios Kyrtzidis authored
decls originated from. llvm-svn: 77534
-
Argyrios Kyrtzidis authored
llvm-svn: 77532
-
Argyrios Kyrtzidis authored
of the iterator of the Indexer class. llvm-svn: 77528
-
Argyrios Kyrtzidis authored
llvm-svn: 77527
-
Argyrios Kyrtzidis authored
Reinforces that they shouldn't be null and it's a bit more natural when they are passed as stack objects. llvm-svn: 77526
-
Argyrios Kyrtzidis authored
llvm-svn: 77525
-
Argyrios Kyrtzidis authored
-Introduce Indexer as an IndexProvider implementation. llvm-svn: 77524
-
Douglas Gregor authored
1) Allow the Index library (and any other interested client) to walk the set of declarations for a given tag (enum, union, class, whatever). At the moment, this information is not readily available. 2) Reduce our dependence on TagDecl::TypeForDecl being mapped down to a TagType (for which getDecl() will return the tag definition, if one exists). This property won't exist for class template partial specializations. 3) Make the canonical declaration of a TagDecl actually canonical, e.g., so that it does not change when the tag is defined. llvm-svn: 77523
-
Douglas Gregor authored
llvm-svn: 77518
-
Owen Anderson authored
llvm-svn: 77514
-
- Jul 29, 2009
-
-
Ted Kremenek authored
Type::getAsReferenceType() -> Type::getAs<ReferenceType>() Type::getAsRecordType() -> Type::getAs<RecordType>() Type::getAsPointerType() -> Type::getAs<PointerType>() Type::getAsBlockPointerType() -> Type::getAs<BlockPointerType>() Type::getAsLValueReferenceType() -> Type::getAs<LValueReferenceType>() Type::getAsRValueReferenceType() -> Type::getAs<RValueReferenceType>() Type::getAsMemberPointerType() -> Type::getAs<MemberPointerType>() Type::getAsReferenceType() -> Type::getAs<ReferenceType>() Type::getAsTagType() -> Type::getAs<TagType>() And remove Type::getAsReferenceType(), etc. This change is similar to one I made a couple weeks ago, but that was partly reverted pending some additional design discussion. With Doug's pending smart pointer changes for Types, it seemed natural to take this approach. llvm-svn: 77510
-
Ted Kremenek authored
OldCastRegion used), and the associated command line option '-analyzer-store=old-basic-cast'. llvm-svn: 77509
-
Fariborz Jahanian authored
performace sake. Also added a test case. llvm-svn: 77502
-
Eli Friedman authored
with dependent types. Fixes PR4621 and PR4627. llvm-svn: 77498
-
Fariborz Jahanian authored
class. llvm-svn: 77497
-
Owen Anderson authored
llvm-svn: 77492
-
Fariborz Jahanian authored
table as it has its own place now. llvm-svn: 77491
-
Fariborz Jahanian authored
excpression, if needed, and remove some ir-gen code now unnencessary. llvm-svn: 77490
-
Douglas Gregor authored
A template name can refer to a set of overloaded function templates. Model this in TemplateName, which can now refer to an OverloadedFunctionDecl that contains function templates. This removes an unspeakable hack in Sema::isTemplateName. llvm-svn: 77488
-
Ted Kremenek authored
we don't care about ElementRegions layered on top of a base region. llvm-svn: 77484
-
Ted Kremenek authored
in StoreManager to RegionStoreManager, and create a special, highly reduced version in BasicStoreManager. These changes are in preparation for future RegionStore-specific changes to InvalidateRegion. llvm-svn: 77483
-