diff options
author | Jordan Rose <jordan_rose@apple.com> | 2013-02-26 01:21:21 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2013-02-26 01:21:21 +0000 |
commit | a0e6e6dd37f4acee8477c106d5e5679de015d120 (patch) | |
tree | 3b2fa30cad51b9600df3fa47e61a35a35f8bc18c /lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp | |
parent | bb60fc6a71f280f8e19e7f1a784ef05c40f5aa39 (diff) |
[analyzer] StackAddrEscapeChecker: strip qualifiers from temporary types.
With the new support for trivial copy constructors, we are not always
consistent about whether a CXXTempObjectRegion gets reused or created
from scratch, which affects whether qualifiers are preserved. However,
we probably don't care anyway.
This also switches to using the current PrintingPolicy for the type,
which means C++ types don't get a spurious 'struct' prefix anymore.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176068 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp b/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp index 16fc67d5fa..4fd778ef58 100644 --- a/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp @@ -37,16 +37,16 @@ public: private: void EmitStackError(CheckerContext &C, const MemRegion *R, const Expr *RetE) const; - static SourceRange GenName(raw_ostream &os, const MemRegion *R, - SourceManager &SM); + static SourceRange genName(raw_ostream &os, const MemRegion *R, + ASTContext &Ctx); }; } -SourceRange StackAddrEscapeChecker::GenName(raw_ostream &os, - const MemRegion *R, - SourceManager &SM) { +SourceRange StackAddrEscapeChecker::genName(raw_ostream &os, const MemRegion *R, + ASTContext &Ctx) { // Get the base region, stripping away fields and elements. R = R->getBaseRegion(); + SourceManager &SM = Ctx.getSourceManager(); SourceRange range; os << "Address of "; @@ -79,8 +79,10 @@ SourceRange StackAddrEscapeChecker::GenName(raw_ostream &os, range = VR->getDecl()->getSourceRange(); } else if (const CXXTempObjectRegion *TOR = dyn_cast<CXXTempObjectRegion>(R)) { - os << "stack memory associated with temporary object of type '" - << TOR->getValueType().getAsString() << '\''; + QualType Ty = TOR->getValueType().getLocalUnqualifiedType(); + os << "stack memory associated with temporary object of type '"; + Ty.print(os, Ctx.getPrintingPolicy()); + os << "'"; range = TOR->getExpr()->getSourceRange(); } else { @@ -104,7 +106,7 @@ void StackAddrEscapeChecker::EmitStackError(CheckerContext &C, const MemRegion * // Generate a report for this bug. SmallString<512> buf; llvm::raw_svector_ostream os(buf); - SourceRange range = GenName(os, R, C.getSourceManager()); + SourceRange range = genName(os, R, C.getASTContext()); os << " returned to caller"; BugReport *report = new BugReport(*BT_returnstack, os.str(), N); report->addRange(RetE->getSourceRange()); @@ -224,8 +226,7 @@ void StackAddrEscapeChecker::checkEndFunction(CheckerContext &Ctx) const { // Generate a report for this bug. SmallString<512> buf; llvm::raw_svector_ostream os(buf); - SourceRange range = GenName(os, cb.V[i].second, - Ctx.getSourceManager()); + SourceRange range = genName(os, cb.V[i].second, Ctx.getASTContext()); os << " is still referred to by the global variable '"; const VarRegion *VR = cast<VarRegion>(cb.V[i].first->getBaseRegion()); os << *VR->getDecl() |