blob: 5552a991d150dfb3e59f14f29915bdcd06146f89 [file] [log] [blame]
Anna Zaks86873972011-11-17 01:09:15 +00001//== CheckerContext.cpp - Context info for path-sensitive checkers-----------=//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines CheckerContext that provides contextual info for
11// path-sensitive checkers.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
16using namespace clang;
17using namespace ento;
18
Anna Zaksb805c8f2011-12-01 05:57:37 +000019const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const {
Anna Zaks86873972011-11-17 01:09:15 +000020 const ProgramState *State = getState();
21 const Expr *Callee = CE->getCallee();
22 SVal L = State->getSVal(Callee);
Anna Zaksb805c8f2011-12-01 05:57:37 +000023 return L.getAsFunctionDecl();
24}
Anna Zaks86873972011-11-17 01:09:15 +000025
Anna Zaksb805c8f2011-12-01 05:57:37 +000026StringRef CheckerContext::getCalleeName(const CallExpr *CE) const {
27 const FunctionDecl *funDecl = getCalleeDecl(CE);
Anna Zaks86873972011-11-17 01:09:15 +000028 if (!funDecl)
29 return StringRef();
30 IdentifierInfo *funI = funDecl->getIdentifier();
31 if (!funI)
32 return StringRef();
33 return funI->getName();
34}