- Jul 21, 2009
-
-
Douglas Gregor authored
Zaffanella, with tweaks from Abramo Bagnara. llvm-svn: 76576
-
Duncan Sands authored
llvm-svn: 76547
-
Argyrios Kyrtzidis authored
llvm-svn: 76546
-
Argyrios Kyrtzidis authored
llvm-svn: 76539
-
Argyrios Kyrtzidis authored
struct foo { static bool value; }; bool (foo::value); // crash because of parens llvm-svn: 76538
-
Owen Anderson authored
llvm-svn: 76534
-
Argyrios Kyrtzidis authored
llvm-svn: 76532
-
Mike Stump authored
llvm-svn: 76531
-
Mike Stump authored
llvm-svn: 76530
-
Mike Stump authored
llvm-svn: 76529
-
Mike Stump authored
llvm-svn: 76522
-
Argyrios Kyrtzidis authored
llvm-svn: 76518
-
Ted Kremenek authored
-refactor logic for retrieving bindings from VarDecls into RegionStoreManager::RetrieveVar() - improve RegionStoreManager::CastRetrievedVal() and SimpleSValuate::EvalCastNL to better handle casts of values of the same canonical type as well as casts of LocAsInteger values. llvm-svn: 76516
-
Argyrios Kyrtzidis authored
Entity can now refer to declarations that are not visible outside the translation unit. It is a wrapper of a pointer union, it's either a Decl* for declarations that don't "cross" translation units, or an EntityImpl* which is associated with the specific "visible" Decl. Included is a test case for handling fields across translation units. llvm-svn: 76515
-
Ryan Flynn authored
llvm-svn: 76514
-
Argyrios Kyrtzidis authored
llvm-svn: 76513
-
Argyrios Kyrtzidis authored
If it's in an ObjCContainerDecl, its "redeclaration" is the method definition in the corresponding ObjCImplDecl. If it's in an ObjCImplDecl, its "redeclaration" is the method in the interface. llvm-svn: 76512
-
Argyrios Kyrtzidis authored
llvm-svn: 76511
-
Argyrios Kyrtzidis authored
Use ObjCInterfaceDecl::getCategoryClassMethod() and ObjCInterfaceDecl::getCategoryInstanceMethod() for the same functionality. llvm-svn: 76510
-
Argyrios Kyrtzidis authored
Remove Sema::LookupObjCImplementation and replace it with just calling ObjCInterfaceDecl::getImplementation(). llvm-svn: 76509
-
Argyrios Kyrtzidis authored
- Introduce ASTContext::getObjCImplementation() and ASTContext::setObjCImplementation() which use a DenseMap to associate an interface/category with its implementation (if one exists). - Introduce ObjCInterfaceDecl::get/setImplementation() and ObjCCategoryDecl::get/setImplementation() that use the above methods. - Add a compiler error for when a category is reimplemented. llvm-svn: 76508
-
Argyrios Kyrtzidis authored
llvm-svn: 76507
-
Argyrios Kyrtzidis authored
llvm-svn: 76506
-
Mike Stump authored
llvm-svn: 76500
-
Fariborz Jahanian authored
llvm-svn: 76498
-
Ted Kremenek authored
pointers. Enhanced RegionStoreManager::Retrieve() to handle automatic casts when the loaded value is different from the requested value. This should be refined over time, but essentially we should always symbolicate locations as locations, and convert them to non-locations on demand. These changes now cause 'misc-ps.m' to pass again. llvm-svn: 76497
-
Fariborz Jahanian authored
llvm-svn: 76494
-
Fariborz Jahanian authored
llvm-svn: 76493
-
Douglas Gregor authored
reducing the size of ParmVarDecl by one pointer. Also means that we'll properly (de-)serialize default arguments in C++ PCH files. llvm-svn: 76487
-
- Jul 20, 2009
-
-
Ted Kremenek authored
llvm-svn: 76484
-
Ted Kremenek authored
locs and vis versa. llvm-svn: 76483
-
Ted Kremenek authored
llvm-svn: 76481
-
Mike Stump authored
llvm-svn: 76476
-
Mike Stump authored
llvm-svn: 76473
-
Ted Kremenek authored
llvm-svn: 76469
-
Ted Kremenek authored
llvm-svn: 76466
-
Douglas Gregor authored
don't replace the type of the field with 'int', from Enea Zaffanella! llvm-svn: 76454
-
Ted Kremenek authored
could be NULL. This allows the solver to handle optimized CFGs where branches can be determined during CFG-construction to be infeasible. llvm-svn: 76452
-
Douglas Gregor authored
incomplete type (with a warning), from Enea Zaffanella! llvm-svn: 76451
-
Ted Kremenek authored
where the true or false CFGBlock* for a branch could be NULL. This will handle the case where we can determine during CFG construction that a branch is infeasible. llvm-svn: 76450
-