clang
6.0.0
|
Encapsulates the lexical context of a function call. More...
#include "clang/Analysis/Analyses/ThreadSafetyCommon.h"
Public Member Functions | |
CallingContext (CallingContext *P, const NamedDecl *D=nullptr) | |
Public Attributes | |
CallingContext * | Prev |
const NamedDecl * | AttrDecl |
const Expr * | SelfArg |
unsigned | NumArgs |
const Expr *const * | FunArgs |
bool | SelfArrow |
Encapsulates the lexical context of a function call.
The lexical context includes the arguments to the call, including the implicit object argument. When an attribute containing a mutex expression is attached to a method, the expression may refer to formal parameters of the method. Actual arguments must be substituted for formal parameters to derive the appropriate mutex expression in the lexical context where the function is called. PrevCtx holds the context in which the arguments themselves should be evaluated; multiple calling contexts can be chained together by the lock_returned attribute.
Definition at line 326 of file ThreadSafetyCommon.h.
|
inline |
Definition at line 334 of file ThreadSafetyCommon.h.
const NamedDecl* clang::threadSafety::SExprBuilder::CallingContext::AttrDecl |
Definition at line 328 of file ThreadSafetyCommon.h.
const Expr* const* clang::threadSafety::SExprBuilder::CallingContext::FunArgs |
Definition at line 331 of file ThreadSafetyCommon.h.
Referenced by clang::threadSafety::SExprBuilder::translateAttrExpr().
unsigned clang::threadSafety::SExprBuilder::CallingContext::NumArgs |
Definition at line 330 of file ThreadSafetyCommon.h.
Referenced by clang::threadSafety::SExprBuilder::translateAttrExpr().
CallingContext* clang::threadSafety::SExprBuilder::CallingContext::Prev |
Definition at line 327 of file ThreadSafetyCommon.h.
const Expr* clang::threadSafety::SExprBuilder::CallingContext::SelfArg |
Definition at line 329 of file ThreadSafetyCommon.h.
Referenced by clang::threadSafety::SExprBuilder::translateAttrExpr().
bool clang::threadSafety::SExprBuilder::CallingContext::SelfArrow |
Definition at line 332 of file ThreadSafetyCommon.h.
Referenced by clang::threadSafety::SExprBuilder::translateAttrExpr().