- Jul 21, 2009
-
-
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
-
Steve Naroff authored
- Remove Sema::CheckPointeeTypesForAssignment(), a temporary API I added to ease migration to ObjCObjectPointerType. Convert Sema::CheckAssignmentConstraints() to no longer depend on the temporary API. - Sema::ConvertDeclSpecToType(): Replace a couple FIXME's with an important comment/example. - Sema::GetTypeForDeclarator(): Get the protocol's from the interface, NOT the declspec (to support the following C typedef idiom: "typedef C<P> T; T *obj"). - Sema::ObjCQualifiedIdTypesAreCompatible(): Removed some dead code. - ASTContext::getObjCEncodingForTypeImpl(): Some minor cleanups. llvm-svn: 76443
-
Fariborz Jahanian authored
a destructor. llvm-svn: 76436
-
Zhongxing Xu authored
isContainedInStatement(). llvm-svn: 76408
-
- Jul 19, 2009
-
-
Ted Kremenek authored
llvm-svn: 76381
-
Ted Kremenek authored
llvm-svn: 76380
-
Chris Lattner authored
llvm-svn: 76376
-
Daniel Dunbar authored
llvm-svn: 76365
-
Daniel Dunbar authored
expressions. - This generally catches the important case of noreturn functions. - With the last two changes, we are down to 152 unreachable blocks emitted on 403.gcc, vs the 1805 we started with. llvm-svn: 76364
-
Daniel Dunbar authored
llvm-svn: 76362
-
Daniel Dunbar authored
- Emit variable declarations as "simple", we want to avoid forcing the creation of a dummy basic block, but still need to make the variable available for later use. - With that, we can now skip IRgen for other unreachable statements (which don't define a label). - Anders, I added two fixmes on calls to EmitVLASize, can you check them? llvm-svn: 76361
-