[analyzer] + comments

llvm-svn: 154433
This commit is contained in:
Anna Zaks 2012-04-10 20:58:55 +00:00
parent 85f3423509
commit daadba5d45
1 changed files with 4 additions and 0 deletions
clang/include/clang/StaticAnalyzer/Core/PathSensitive

View File

@ -250,11 +250,15 @@ public:
SVal getSValAsScalarOrLoc(const Stmt *Ex, const LocationContext *LCtx) const;
/// \brief Return the value bound to the specified location.
/// Returns UnknownVal() if none found.
SVal getSVal(Loc LV, QualType T = QualType()) const;
/// Returns the "raw" SVal bound to LV before any value simplfication.
SVal getRawSVal(Loc LV, QualType T= QualType()) const;
/// \brief Return the value bound to the specified location.
/// Returns UnknownVal() if none found.
SVal getSVal(const MemRegion* R) const;
SVal getSValAsScalarOrLoc(const MemRegion *R) const;