24#include "llvm/ADT/ArrayRef.h"
25#include "llvm/ADT/STLExtras.h"
26#include "llvm/Support/Casting.h"
27#include "llvm/Support/Signals.h"
28#include "llvm/Support/TimeProfiler.h"
31using llvm::isa_and_present;
33OriginList *FactsGenerator::getOriginsList(
const ValueDecl &D) {
34 return FactMgr.getOriginMgr().getOrCreateList(&D);
36OriginList *FactsGenerator::getOriginsList(
const Expr &E) {
37 return FactMgr.getOriginMgr().getOrCreateList(&E);
40bool FactsGenerator::hasOrigins(QualType QT)
const {
41 return FactMgr.getOriginMgr().hasOrigins(QT);
44bool FactsGenerator::hasOrigins(
const Expr *E)
const {
45 return FactMgr.getOriginMgr().hasOrigins(E);
70 const CFGBlock *
Block) {
74 "Dst is non-null but Src is null. List must have the same length");
75 assert(Dst->getLength() == Src->getLength() &&
76 "Lists must have the same length");
79 Fact *F = FactMgr.createFact<OriginFlowFact>(Dst->getOuterOriginID(),
80 Src->getOuterOriginID(), Kill);
82 FactMgr.appendBlockFact(
Block, F);
84 CurrentBlockFacts.push_back(F);
85 Dst = Dst->peelOuterOrigin();
86 Src = Src->peelOuterOrigin();
119 llvm::TimeTraceScope TimeProfile(
"FactGenerator");
120 const CFG &Cfg = *AC.getCFG();
125 CurrentBlockFacts.clear();
126 EscapesInCurrentBlock.clear();
127 CurrentBlock =
Block;
129 CurrentBlockFacts.append(PlaceholderLoanFacts.begin(),
130 PlaceholderLoanFacts.end());
131 for (
unsigned I = 0; I <
Block->size(); ++I) {
133 if (std::optional<CFGStmt> CS = Element.
getAs<
CFGStmt>())
134 Visit(CS->getStmt());
135 else if (std::optional<CFGInitializer>
Initializer =
137 handleCXXCtorInitializer(
Initializer->getInitializer());
138 else if (std::optional<CFGLifetimeEnds> LifetimeEnds =
140 handleLifetimeEnds(*LifetimeEnds);
141 else if (std::optional<CFGFullExprCleanup> FullExprCleanup =
143 handleFullExprCleanup(*FullExprCleanup);
149 CurrentBlockFacts.append(EscapesInCurrentBlock.begin(),
150 EscapesInCurrentBlock.end());
151 FactMgr.addBlockFacts(
Block, CurrentBlockFacts);
153 FactMgr.computePersistentOrigins(Cfg);
171 if (
const auto *VD = dyn_cast<VarDecl>(D))
172 if (
const Expr *InitExpr = VD->getInit()) {
176 OriginList *InitList = getOriginsList(*InitExpr);
177 assert(InitList &&
"VarDecl had origins but InitExpr did not");
178 flow(VDList, InitList,
true);
201 "gl-value DRE of non-pointer type should have an origin list");
204 CurrentBlockFacts.push_back(
211 handleGSLPointerConstruction(CCE);
222 flow(getOriginsList(*CCE), ArgList,
true);
232 flow(getOriginsList(*CCE), ArgList,
true);
236 handleFunctionCall(CCE,
false);
241 killAndFlowOrigin(*DIE, *
Init);
248 killAndFlowOrigin(*FD, *CII->
getInit());
257 handleFunctionCall(MCE,
true);
260 handleFunctionCall(MCE,
false);
266 assert(ME->
isGLValue() &&
"Field member should be GL value");
268 assert(Dst &&
"Field member should have an origin list as it is GL value");
270 assert(Src &&
"Base expression should be a pointer/reference type");
280 handleFunctionCall(CE);
298 case CK_LValueToRValue:
302 assert(Src &&
"LValue being cast to RValue has no origin list");
310 case CK_NullToPointer:
315 case CK_ConstructorConversion:
316 case CK_UserDefinedConversion:
317 flow(Dest, Src,
true);
319 case CK_UncheckedDerivedToBase:
320 case CK_DerivedToBase:
324 flow(Dest, Src,
true);
326 case CK_ArrayToPointerDecay:
331 assert(Src &&
"Array expression should have origins as it is GL value");
335 case CK_FunctionToPointerDecay:
336 case CK_BuiltinFnToFnPtr:
343 flow(Dest, Src,
true);
345 case CK_LValueToRValueBitCast:
346 case CK_NonAtomicToAtomic:
347 case CK_AtomicToNonAtomic: {
356 flow(Dest, RVSrc,
true);
376 "Taking address of void is not valid in C++");
381 killAndFlowOrigin(*UO, *SubExpr);
386 killAndFlowOrigin(*UO, *SubExpr);
396 flow(getOriginsList(*UO),
411 flow(getOriginsList(*UO),
422 if (
OriginList *List = getOriginsList(*RetExpr))
425 L->getOuterOriginID(), RetExpr));
429void FactsGenerator::handleAssignment(
const Expr *TargetExpr,
431 const Expr *RHSExpr) {
435 if (
const auto *DRE_LHS = dyn_cast<DeclRefExpr>(LHSExpr)) {
436 LHSList = getOriginsList(*DRE_LHS);
437 assert(LHSList &&
"LHS is a DRE and should have an origin list");
442 if (
const auto *ME_LHS = dyn_cast<MemberExpr>(LHSExpr)) {
443 LHSList = getOriginsList(*ME_LHS);
444 assert(LHSList &&
"LHS is a MemberExpr and should have an origin list");
448 OriginList *RHSList = getOriginsList(*RHSExpr);
456 if (
const auto *DRE_LHS = dyn_cast<DeclRefExpr>(LHSExpr)) {
457 QualType QT = DRE_LHS->getDecl()->getType();
464 if (UseFact *UF = UseFacts.lookup(DRE_LHS)) {
465 const OriginList *FullList = UF->getUsedOrigins();
468 FullList->getOuterOriginID()));
469 if (
const OriginList *InnerList = FullList->peelOuterOrigin()) {
470 UseFact *WriteUF = FactMgr.
createFact<UseFact>(DRE_LHS, InnerList);
471 WriteUF->markAsWritten();
472 CurrentBlockFacts.push_back(WriteUF);
477 markUseAsWrite(DRE_LHS);
484 CurrentBlockFacts.push_back(
485 FactMgr.createFact<KillOriginFact>(LHSInner->getOuterOriginID()));
496 flow(getOriginsList(*TargetExpr), LHSList,
true);
499void FactsGenerator::handlePointerArithmetic(
const BinaryOperator *BO) {
500 if (Expr *RHS = BO->getRHS(); RHS->getType()->isPointerType()) {
501 killAndFlowOrigin(*BO, *RHS);
504 Expr *LHS = BO->getLHS();
505 assert(LHS->getType()->isPointerType() &&
506 "Pointer arithmetic must have a pointer operand");
507 killAndFlowOrigin(*BO, *LHS);
524 ? getOriginsList(*BO->
getLHS())
533 killAndFlowOrigin(*BO, *BO->
getRHS());
542 flow(getOriginsList(*BO), IsCMode ? LHSList->
peelOuterOrigin() : LHSList,
548 handlePointerArithmetic(BO);
556 const Expr *ArmExpr) {
560 if (
const auto *OVE = dyn_cast<OpaqueValueExpr>(
Target))
561 if (
const Expr *Src = OVE->getSourceExpr())
562 Target = Src->IgnoreParenImpCasts();
568 if (
auto CS = Elt.getAs<
CFGStmt>())
569 if (
const auto *E = dyn_cast<Expr>(CS->getStmt()))
570 if (E->IgnoreParenImpCasts() ==
Target)
592 flow(getOriginsList(*CO), getOriginsList(*TrueExpr),
true, TBPred);
594 flow(getOriginsList(*CO), getOriginsList(*FalseExpr),
true,
621 MD && MD->isDefaulted()) {
627 handleFunctionCall(OCE);
634 if (handleTestPoint(FCE))
640 if (!hasOrigins(ILE))
647 if (!hasOrigins(ILE->
getInit(0)))
649 killAndFlowOrigin(*ILE, *ILE->
getInit(0));
665 assert((!SubExprList ||
667 "MTE top level origin should contain a loan to the MTE itself");
670 flow(RValMTEList, SubExprList,
true);
675 CurrentBlockFacts.push_back(
682 if (
C.capturesThis())
683 FactMgr.setThisCapturedByLambda();
684 else if (
C.capturesVariable() &&
C.getCapturedVar()->isInitCapture()) {
688 if (
const auto *ME = dyn_cast<MemberExpr>(
Init->IgnoreParenImpCasts())) {
689 if (
const auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
690 FactMgr.addCapturedField(FD);
702 for (
const Expr *
Init : LE->capture_inits()) {
723 assert(ASE->
isGLValue() &&
"Array subscript should be a GL value");
725 assert(Dst &&
"Array subscript should have origins as it is a GL value");
727 assert(Src &&
"Base of array subscript should have origins");
732bool FactsGenerator::handlePlacementNew(
const CXXNewExpr *NE,
738 if (NE->getNumPlacementArgs() != 1)
742 if (OperatorNew->getNumParams() <= 1)
746 OperatorNew->getParamDecl(1)->getType()->getAs<
PointerType>();
747 if (!Arg || !Arg->isVoidPointerType())
752 const Expr *PlacementArg = NE->getPlacementArg(0);
753 if (
const auto *ICE = dyn_cast<ImplicitCastExpr>(PlacementArg);
754 ICE && ICE->getCastKind() == CK_BitCast &&
755 PlacementArg->getType()->isVoidPointerType())
756 PlacementArg = ICE->getSubExpr();
757 OriginList *PlacementList = getOriginsList(*PlacementArg);
771 const Expr *
Init = NE->getInitializer();
773 bool HandledAsPlacementNew =
false;
774 if (NE->getNumPlacementArgs() == 1)
775 HandledAsPlacementNew = handlePlacementNew(NE, NewList);
780 if (!HandledAsPlacementNew &&
781 (NE->getNumPlacementArgs() == 0 ||
782 (OperatorNew && OperatorNew->isReplaceableGlobalAllocationFunction()))) {
784 CurrentBlockFacts.push_back(
790 if (!NewList || !
Init)
796 flow(NewList, InitList,
true);
801 CurrentBlockFacts.push_back(
810 if (!CS || CS->body_empty())
812 const auto *
Last = dyn_cast<Expr>(CS->body_back());
817 flow(Dst, Src,
true);
820bool FactsGenerator::escapesViaReturn(
OriginID OID)
const {
821 return llvm::any_of(EscapesInCurrentBlock, [OID](
const Fact *F) {
823 return EF->getEscapedOriginID() == OID;
828void FactsGenerator::handleLifetimeEnds(
const CFGLifetimeEnds &LifetimeEnds) {
834 std::optional<OriginID> ExpiredOID;
835 if (OriginList *List = getOriginsList(*LifetimeEndsVD)) {
836 OriginID OID = List->getOuterOriginID();
839 if (!escapesViaReturn(OID))
842 CurrentBlockFacts.push_back(FactMgr.
createFact<ExpireFact>(
847void FactsGenerator::handleFullExprCleanup(
848 const CFGFullExprCleanup &FullExprCleanup) {
849 for (
const auto *MTE : FullExprCleanup.getExpiringMTEs())
850 CurrentBlockFacts.push_back(FactMgr.createFact<ExpireFact>(
851 AccessPath(MTE), FullExprCleanup.getCleanupLoc()));
854void FactsGenerator::handleExitBlock() {
855 bool IsDestructor = isa_and_nonnull<CXXDestructorDecl>(AC.getDecl());
856 for (
const Origin &O : FactMgr.getOriginMgr().getOrigins())
859 if (
auto *FD = dyn_cast_if_present<FieldDecl>(O.getDecl());
861 EscapesInCurrentBlock.push_back(
862 FactMgr.createFact<FieldEscapeFact>(O.ID, FD));
863 else if (
auto *VD = dyn_cast_if_present<VarDecl>(O.getDecl())) {
866 if (VD->hasGlobalStorage()) {
867 EscapesInCurrentBlock.push_back(
868 FactMgr.createFact<GlobalEscapeFact>(O.ID, VD));
873void FactsGenerator::handleGSLPointerConstruction(
const CXXConstructExpr *CCE) {
875 if (CCE->getNumArgs() != 1)
878 const Expr *Arg = CCE->getArg(0);
880 OriginList *ArgList = getOriginsList(*Arg);
881 assert(ArgList &&
"GSL pointer argument should have an origin list");
887 flow(getOriginsList(*CCE), ArgList,
true);
888 }
else if (Arg->getType()->isPointerType()) {
893 OriginList *ArgList = getOriginsList(*Arg);
894 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
895 getOriginsList(*CCE)->getOuterOriginID(), ArgList->getOuterOriginID(),
900 handleFunctionCall(CCE,
true);
904void FactsGenerator::handleMovedArgsInCall(
const FunctionDecl *FD,
905 ArrayRef<const Expr *> Args) {
906 unsigned ImplicitObjectArgOffset = 0;
909 if (
const auto *MD = dyn_cast<CXXMethodDecl>(FD);
911 MD->isImplicitObjectMemberFunction()) {
912 ImplicitObjectArgOffset = 1;
917 const Expr *UniquePtrExpr = Args[0];
918 OriginList *MovedOrigins = getOriginsList(*UniquePtrExpr);
920 CurrentBlockFacts.push_back(FactMgr.createFact<MovedOriginFact>(
921 UniquePtrExpr, MovedOrigins->getOuterOriginID()));
926 for (
unsigned I = ImplicitObjectArgOffset;
927 I < Args.size() && I < FD->getNumParams() + ImplicitObjectArgOffset;
929 const ParmVarDecl *PVD = FD->getParamDecl(I - ImplicitObjectArgOffset);
932 if (PVD->isExplicitObjectParameter())
934 if (!PVD->getType()->isRValueReferenceType())
939 if (PVD->hasAttr<LifetimeBoundAttr>() ||
940 PVD->hasAttr<LifetimeCaptureByAttr>())
942 const Expr *Arg = Args[I];
943 OriginList *MovedOrigins = getOriginsList(*Arg);
944 assert(MovedOrigins->getLength() >= 1 &&
945 "unexpected length for r-value reference param");
947 CurrentBlockFacts.push_back(FactMgr.createFact<MovedOriginFact>(
948 Arg, MovedOrigins->getOuterOriginID()));
952void FactsGenerator::handleInvalidatingCall(
const Expr *
Call,
953 const FunctionDecl *FD,
954 ArrayRef<const Expr *> Args) {
955 const auto *MD = dyn_cast<CXXMethodDecl>(FD);
956 if (!MD || !MD->isInstance())
968 OriginList *ThisList = getOriginsList(*Args[0]);
970 CurrentBlockFacts.push_back(FactMgr.createFact<InvalidateOriginFact>(
971 ThisList->getOuterOriginID(),
Call));
974void FactsGenerator::handleDestructiveCall(
const Expr *
Call,
975 const FunctionDecl *FD,
976 ArrayRef<const Expr *> Args) {
979 OriginList *ArgList = getOriginsList(*Args[0]);
981 CurrentBlockFacts.push_back(FactMgr.createFact<InvalidateOriginFact>(
982 ArgList->getOuterOriginID(),
Call));
985void FactsGenerator::handleImplicitObjectFieldUses(
const Expr *
Call,
986 const FunctionDecl *FD) {
987 const auto *MemberCall = dyn_cast_or_null<CXXMemberCallExpr>(
Call);
991 if (!isa_and_present<CXXThisExpr>(
992 MemberCall->getImplicitObjectArgument()->IgnoreImpCasts()))
995 const auto *MD = dyn_cast<CXXMethodDecl>(FD);
996 assert(MD &&
"Function must be a CXXMethodDecl for member calls");
998 const auto *ClassDecl = MD->getParent()->getDefinition();
1002 const auto UseFields = [&](
const CXXRecordDecl *RD) {
1003 for (
const auto *Field : RD->fields())
1004 if (
auto *FieldList = getOriginsList(*Field))
1005 CurrentBlockFacts.push_back(
1006 FactMgr.createFact<UseFact>(
Call, FieldList));
1009 UseFields(ClassDecl);
1011 ClassDecl->forallBases([&](
const CXXRecordDecl *Base) {
1017void FactsGenerator::handleLifetimeCaptureBy(
const FunctionDecl *FD,
1018 ArrayRef<const Expr *> Args) {
1024 const auto *
Method = dyn_cast<CXXMethodDecl>(FD);
1027 auto getParamDeclAt = [FD, IsInstance](
unsigned I) ->
const ParmVarDecl * {
1030 if (I > 0 && I - 1 < FD->getNumParams())
1031 return FD->getParamDecl(I - 1);
1033 if (I < FD->getNumParams())
1034 return FD->getParamDecl(I);
1038 for (
unsigned I = 0; I < Args.size(); ++I) {
1039 const ParmVarDecl *PVD = getParamDeclAt(I);
1042 const auto *Attr = PVD->getAttr<LifetimeCaptureByAttr>();
1045 OriginList *CapturedOriginList = getOriginsList(*Args[I]);
1046 if (!CapturedOriginList)
1050 if (QualType ParamType = PVD->getType();
1051 (ParamType->isReferenceType() &&
1053 CapturedOriginList->getLength() > 1)
1054 CapturedOriginList = CapturedOriginList->peelOuterOrigin();
1055 for (
int CapturingArgIdx : Attr->params()) {
1057 if (CapturingArgIdx == LifetimeCaptureByAttr::Global ||
1058 CapturingArgIdx == LifetimeCaptureByAttr::Unknown ||
1059 CapturingArgIdx == LifetimeCaptureByAttr::Invalid)
1061 ArrayRef<const Expr *> CallArgs = IsInstance ? Args.drop_front() : Args;
1062 const Expr *CapturedByArg =
1063 (CapturingArgIdx == LifetimeCaptureByAttr::This)
1065 : CallArgs[CapturingArgIdx];
1066 assert(CapturedByArg &&
"Capturer expression must be valid");
1068 OriginList *CapturingOriginList = getOriginsList(*CapturedByArg);
1076 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
1077 Dest->getOuterOriginID(), CapturedOriginList->getOuterOriginID(),
1083void FactsGenerator::handleFunctionCall(
const Expr *
Call,
1084 bool IsGslConstruction) {
1085 FunctionCallInfo CallInfo(
Call);
1088 const FunctionDecl *FD = CallInfo.FD;
1089 llvm::ArrayRef<const Expr *> Args = CallInfo.Args;
1090 OriginList *CallList = getOriginsList(*
Call);
1096 for (
const Expr *Arg : Args)
1098 handleInvalidatingCall(
Call, FD, Args);
1099 handleDestructiveCall(
Call, FD, Args);
1100 handleMovedArgsInCall(FD, Args);
1101 handleImplicitObjectFieldUses(
Call, FD);
1102 handleLifetimeCaptureBy(FD, Args);
1106 assert(Args.size() == 1 &&
1107 "std reference cast builtins take exactly one argument");
1110 flow(CallList, getOriginsList(*Args[0]),
true);
1113 auto shouldTrackPointerImplicitObjectArg = [FD, &Args](
unsigned I) ->
bool {
1114 const auto *
Method = dyn_cast<CXXMethodDecl>(FD);
1124 bool KillSrc =
true;
1125 for (
unsigned I = 0; I < Args.size(); ++I) {
1126 OriginList *ArgList = getOriginsList(*Args[I]);
1130 if (IsGslConstruction) {
1134 assert(!Args[I]->isGLValue() || ArgList->getLength() >= 2);
1141 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
1142 CallList->getOuterOriginID(), ArgList->getOuterOriginID(),
1145 }
else if (ShouldTrackArg) {
1152 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
1153 CallList->getOuterOriginID(), ArgList->getOuterOriginID(),
1157 }
else if (shouldTrackPointerImplicitObjectArg(I)) {
1158 assert(ArgList->getLength() >= 2 &&
1159 "Object arg of pointer type should have at least two origins");
1161 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
1162 CallList->getOuterOriginID(),
1163 ArgList->peelOuterOrigin()->getOuterOriginID(), KillSrc));
1165 }
else if (ShouldTrackArg) {
1169 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
1170 CallList->getOuterOriginID(), ArgList->getOuterOriginID(), KillSrc));
1178bool FactsGenerator::handleTestPoint(
const CXXFunctionalCastExpr *FCE) {
1179 if (!FCE->getType()->isVoidType())
1182 const auto *SubExpr = FCE->getSubExpr()->IgnoreParenImpCasts();
1183 if (
const auto *SL = dyn_cast<StringLiteral>(SubExpr)) {
1184 llvm::StringRef LiteralValue = SL->getString();
1185 const std::string Prefix =
"__lifetime_test_point_";
1187 if (LiteralValue.starts_with(Prefix)) {
1188 StringRef Annotation = LiteralValue.drop_front(Prefix.length());
1189 CurrentBlockFacts.push_back(
1190 FactMgr.createFact<TestPointFact>(Annotation));
1197void FactsGenerator::handleUse(
const Expr *E) {
1198 OriginList *List = getOriginsList(*E);
1204 if (
auto *DRE = dyn_cast<DeclRefExpr>(E);
1205 DRE && !DRE->getDecl()->
getType()->isReferenceType())
1210 if (!UseFacts.contains(E)) {
1211 UseFact *UF = FactMgr.createFact<UseFact>(E, List);
1212 CurrentBlockFacts.push_back(UF);
1217void FactsGenerator::markUseAsWrite(
const DeclRefExpr *DRE) {
1218 if (UseFacts.contains(DRE))
1219 UseFacts[DRE]->markAsWritten();
1224llvm::SmallVector<Fact *> FactsGenerator::issuePlaceholderLoans() {
1225 const auto *FD = dyn_cast<FunctionDecl>(AC.getDecl());
1229 llvm::SmallVector<Fact *> PlaceholderLoanFacts;
1230 if (
auto ThisOrigins = FactMgr.getOriginMgr().getThisOrigins()) {
1231 OriginList *List = *ThisOrigins;
1234 PlaceholderLoanFacts.push_back(
1235 FactMgr.createFact<IssueFact>(L->getID(), List->getOuterOriginID()));
1237 for (
const ParmVarDecl *PVD : FD->parameters()) {
1238 OriginList *List = getOriginsList(*PVD);
1241 const Loan *L = FactMgr.getLoanMgr().createPlaceholderLoan(PVD);
1242 PlaceholderLoanFacts.push_back(
1243 FactMgr.createFact<IssueFact>(L->getID(), List->getOuterOriginID()));
1245 return PlaceholderLoanFacts;
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the clang::Expr interface and subclasses for C++ expressions.
Defines an enumeration for C++ overloaded operators.
AbstractConditionalOperator - An abstract base class for ConditionalOperator and BinaryConditionalOpe...
Expr * getTrueExpr() const
getTrueExpr - Return the subexpression representing the value of the expression if the condition eval...
Expr * getFalseExpr() const
getFalseExpr - Return the subexpression representing the value of the expression if the condition eva...
ArraySubscriptExpr - [C99 6.5.2.1] Array Subscripting.
A builtin binary operation expression such as "x + y" or "x <= y".
static bool isAdditiveOp(Opcode Opc)
static bool isAssignmentOp(Opcode Opc)
static bool isCompoundAssignmentOp(Opcode Opc)
Represents a single basic block in a source-level CFG.
Represents a top-level expression in a basic block.
std::optional< T > getAs() const
Convert to the specified CFGElement type, returning std::nullopt if this CFGElement is not of the des...
Represents C++ base or member initializer from constructor's initialization list.
Represents the point where the lifetime of an automatic object ends.
const VarDecl * getVarDecl() const
LLVM_ATTRIBUTE_RETURNS_NONNULL const Stmt * getTriggerStmt() const
Represents a source-level, intra-procedural CFG that represents the control-flow of a Stmt.
Represents binding an expression to a temporary.
const Expr * getSubExpr() const
Represents a call to a C++ constructor.
Expr * getArg(unsigned Arg)
Return the specified argument.
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will (ultimately) call.
unsigned getNumArgs() const
Return the number of arguments to the constructor call.
bool isCopyOrMoveConstructor(unsigned &TypeQuals) const
Determine whether this is a copy or move constructor.
Represents a C++ base or member initializer.
Expr * getInit() const
Get the initializer.
FieldDecl * getAnyMember() const
A use of a default initializer in a constructor or in aggregate initialization.
Expr * getExpr()
Get the initialization expression that will be used.
Represents a delete expression for memory deallocation and destructor calls, e.g.
Represents an explicit C++ type conversion that uses "functional" notation (C++ [expr....
Represents a call to a member function that may be written either with member call syntax (e....
Expr * getImplicitObjectArgument() const
Retrieve the implicit object argument for the member call.
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
The null pointer literal (C++11 [lex.nullptr])
A call to an overloaded operator written using operator syntax.
OverloadedOperatorKind getOperator() const
Returns the kind of overloaded operator that this expression refers to.
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Expr * getArg(unsigned Arg)
getArg - Return the specified argument.
FunctionDecl * getDirectCallee()
If the callee is a FunctionDecl, return it. Otherwise return null.
unsigned getNumArgs() const
getNumArgs - Return the number of actual arguments to this call.
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
CastKind getCastKind() const
A reference to a declared variable, function, enum, etc.
NamedDecl * getFoundDecl()
Get the NamedDecl through which this reference occurred.
DeclStmt - Adaptor class for mixing declarations with statements and expressions.
Decl - This represents one declaration (or definition), e.g.
bool isFunctionOrFunctionTemplate() const
Whether this declaration is a function or function template.
This represents one expression.
Expr * IgnoreParenImpCasts() LLVM_READONLY
Skip past any parentheses and implicit casts which might surround this expression until reaching a fi...
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
Represents a member of a struct/union/class.
Represents a function declaration or definition.
bool isDefaulted() const
Whether this function is defaulted.
Describes an C or C++ initializer list.
unsigned getNumInits() const
const Expr * getInit(unsigned Init) const
Describes the capture of a variable or of this, or of a C++1y init-capture.
A C++ lambda expression, which produces a function object (of unspecified type) that can be invoked l...
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
StorageDuration getStorageDuration() const
Retrieve the storage duration for the materialized temporary.
Expr * getSubExpr() const
Retrieve the temporary-generating subexpression whose value will be materialized into a glvalue.
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
ValueDecl * getMemberDecl() const
Retrieve the member declaration to which this expression refers.
PointerType - C99 6.7.5.1 - Pointer Declarators.
A (possibly-)qualified type.
ReturnStmt - This represents a return, optionally of an expression: return; return 4;.
StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
CompoundStmt * getSubStmt()
RetTy Visit(PTR(Stmt) S, ParamTys... P)
SourceLocation getEndLoc() const LLVM_READONLY
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isPointerType() const
bool isReferenceType() const
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isPointerOrReferenceType() const
bool isFunctionType() const
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Expr * getSubExpr() const
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Represents a variable declaration or definition.
Represents the storage location being borrowed, e.g., a specific stack variable or a field within it:...
FactType * createFact(Args &&...args)
OriginManager & getOriginMgr()
LoanManager & getLoanMgr()
An abstract base class for a single, atomic lifetime-relevant event.
void VisitDeclRefExpr(const DeclRefExpr *DRE)
void VisitBinaryOperator(const BinaryOperator *BO)
void VisitCallExpr(const CallExpr *CE)
void VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *MTE)
void VisitCastExpr(const CastExpr *CE)
void VisitReturnStmt(const ReturnStmt *RS)
void VisitCXXConstructExpr(const CXXConstructExpr *CCE)
void VisitMemberExpr(const MemberExpr *ME)
void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO)
Visits conditional operators (e.g., cond ?
void VisitCXXDeleteExpr(const CXXDeleteExpr *DE)
void VisitCXXNewExpr(const CXXNewExpr *NE)
void VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *FCE)
void VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *DIE)
void VisitInitListExpr(const InitListExpr *ILE)
void VisitLambdaExpr(const LambdaExpr *LE)
void VisitStmtExpr(const StmtExpr *SE)
void VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *N)
void VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *OCE)
void VisitArraySubscriptExpr(const ArraySubscriptExpr *ASE)
void VisitUnaryOperator(const UnaryOperator *UO)
void VisitDeclStmt(const DeclStmt *DS)
void VisitCXXMemberCallExpr(const CXXMemberCallExpr *MCE)
void VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *BTE)
Represents that an origin's storage has been invalidated by a container operation (e....
Loan * createLoan(AccessPath Path, const Expr *IssueExpr=nullptr)
Represents a component of an access path: either a named field access or an abstract unnamed interior...
A list of origins representing levels of indirection for pointer-like types.
OriginID getOuterOriginID() const
OriginList * peelOuterOrigin() const
OriginList * createSingleOriginList(OriginID OID)
Wraps an existing OriginID in a new single-element OriginList, so a fact can refer to a single level ...
Represents that an origin escapes via a return statement.
utils::ID< struct OriginTag > OriginID
static OriginList * getRValueOrigins(const Expr *E, OriginList *List)
Simulates LValueToRValue conversion by peeling the outer lvalue origin if the expression is a GLValue...
static const CFGBlock * findPredBlockForExpr(const CFGBlock *MergeBlock, const Expr *ArmExpr)
bool doesDeclHaveStorage(const ValueDecl *D)
Returns true if the declaration has its own storage that can be borrowed.
static const Loan * createLoan(FactManager &FactMgr, const DeclRefExpr *DRE)
Creates a loan for the storage path of a given declaration reference.
bool isGslPointerType(QualType QT)
bool isStdCallableWrapperType(const CXXRecordDecl *RD)
bool shouldTrackImplicitObjectArg(const Expr &ImplicitObjectArgument, const CXXMethodDecl *Callee, bool RunningUnderLifetimeSafety)
bool isPointerLikeType(QualType QT)
bool isUniquePtrRelease(const CXXMethodDecl &MD)
bool isStdReferenceCast(const FunctionDecl *FD)
const FunctionDecl * getDeclWithMergedLifetimeBoundAttrs(const FunctionDecl *FD)
bool isInvalidationMethod(const CXXMethodDecl &MD)
bool destructsFirstArg(const FunctionDecl &FD)
bool isGslOwnerType(QualType QT)
std::optional< LifetimeBoundParamInfo > getTrackedArgInfo(const FunctionDecl *FD, llvm::ArrayRef< const Expr * > Args, unsigned I)
bool isa(CodeGen::Address addr)
@ SD_FullExpression
Full-expression storage duration (for temporaries).
U cast(CodeGen::Address addr)