Home
last modified time | relevance | path

Searched refs:SelfArg (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp130 Ctx.SelfArg = ME->getBase(); in translateAttrExpr()
133 Ctx.SelfArg = CE->getImplicitObjectArgument(); in translateAttrExpr()
141 Ctx.SelfArg = nullptr; // Will be set below in translateAttrExpr()
147 assert(!Ctx.SelfArg && "Ambiguous self argument"); in translateAttrExpr()
150 Ctx.SelfArg = Self; in translateAttrExpr()
167 return translateAttrExpr(cast<const Expr *>(Ctx.SelfArg), nullptr); in translateAttrExpr()
346 if (Ctx && Ctx->SelfArg) { in translateCXXThisExpr()
347 if (const auto *SelfArg = dyn_cast<const Expr *>(Ctx->SelfArg)) in translateCXXThisExpr() local
348 return translate(SelfArg, Ctx->Prev); in translateCXXThisExpr()
350 return cast<til::SExpr *>(Ctx->SelfArg); in translateCXXThisExpr()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h358 llvm::PointerUnion<const Expr *, til::SExpr *> SelfArg = nullptr; member