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);
168 if (
const auto *VD = dyn_cast<VarDecl>(D))
169 if (
const Expr *InitExpr = VD->getInit()) {
173 OriginList *InitList = getOriginsList(*InitExpr);
174 assert(InitList &&
"VarDecl had origins but InitExpr did not");
175 flow(VDList, InitList,
true);
197 "gl-value DRE of non-pointer type should have an origin list");
200 CurrentBlockFacts.push_back(
207 handleGSLPointerConstruction(CCE);
218 flow(getOriginsList(*CCE), ArgList,
true);
228 flow(getOriginsList(*CCE), ArgList,
true);
232 handleFunctionCall(CCE,
false);
237 killAndFlowOrigin(*DIE, *
Init);
244 killAndFlowOrigin(*FD, *CII->
getInit());
253 handleFunctionCall(MCE,
true);
256 handleFunctionCall(MCE,
false);
262 assert(ME->
isGLValue() &&
"Field member should be GL value");
264 assert(Dst &&
"Field member should have an origin list as it is GL value");
266 assert(Src &&
"Base expression should be a pointer/reference type");
276 handleFunctionCall(CE);
290 OriginList *Src = Dest ? getOriginsList(*SubExpr) :
nullptr;
293 case CK_LValueToRValue:
297 flow(Dest, readValue(SubExpr),
true);
300 handleAccess(SubExpr);
302 case CK_NullToPointer:
306 case CK_ConstructorConversion:
307 case CK_UserDefinedConversion:
308 flow(Dest, Src,
true);
310 case CK_UncheckedDerivedToBase:
311 case CK_DerivedToBase:
315 flow(Dest, Src,
true);
317 case CK_ArrayToPointerDecay:
322 assert(Src &&
"Array expression should have origins as it is GL value");
326 case CK_FunctionToPointerDecay:
327 case CK_BuiltinFnToFnPtr:
334 flow(Dest, Src,
true);
336 case CK_LValueToRValueBitCast:
337 case CK_NonAtomicToAtomic:
338 case CK_AtomicToNonAtomic: {
347 flow(Dest, RVSrc,
true);
367 "Taking address of void is not valid in C++");
372 killAndFlowOrigin(*UO, *SubExpr);
377 killAndFlowOrigin(*UO, *SubExpr);
387 flow(getOriginsList(*UO), readValue(SubExpr),
true);
401 flow(getOriginsList(*UO),
412 if (
OriginList *List = getOriginsList(*RetExpr))
415 L->getOuterOriginID(), RetExpr));
419void FactsGenerator::handleAssignment(
const Expr *TargetExpr,
421 const Expr *RHSExpr) {
423 handleAccess(LHSExpr);
427 if (
const auto *DRE_LHS = dyn_cast<DeclRefExpr>(LHSExpr)) {
428 LHSList = getOriginsList(*DRE_LHS);
429 assert(LHSList &&
"LHS is a DRE and should have an origin list");
434 if (
const auto *ME_LHS = dyn_cast<MemberExpr>(LHSExpr)) {
435 LHSList = getOriginsList(*ME_LHS);
436 assert(LHSList &&
"LHS is a MemberExpr and should have an origin list");
446 CurrentBlockFacts.push_back(
447 FactMgr.
createFact<KillOriginFact>(LHSInner->getOuterOriginID()));
458 flow(getOriginsList(*TargetExpr), LHSList,
true);
461void FactsGenerator::handlePointerArithmetic(
const BinaryOperator *BO) {
462 if (Expr *RHS = BO->getRHS(); RHS->getType()->isPointerType()) {
463 killAndFlowOrigin(*BO, *RHS);
466 Expr *LHS = BO->getLHS();
467 assert(LHS->getType()->isPointerType() &&
468 "Pointer arithmetic must have a pointer operand");
469 killAndFlowOrigin(*BO, *LHS);
485 ? getOriginsList(*BO->
getLHS())
486 : readValue(BO->
getLHS());
493 killAndFlowOrigin(*BO, *BO->
getRHS());
497 handleAccess(BO->
getLHS());
503 flow(getOriginsList(*BO), IsCMode ? LHSList->
peelOuterOrigin() : LHSList,
509 handlePointerArithmetic(BO);
516 const Expr *ArmExpr) {
520 if (
const auto *OVE = dyn_cast<OpaqueValueExpr>(
Target))
521 if (
const Expr *Src = OVE->getSourceExpr())
522 Target = Src->IgnoreParenImpCasts();
528 if (
auto CS = Elt.getAs<
CFGStmt>())
529 if (
const auto *E = dyn_cast<Expr>(CS->getStmt()))
552 flow(getOriginsList(*CO), getOriginsList(*TrueExpr),
true, TBPred);
554 flow(getOriginsList(*CO), getOriginsList(*FalseExpr),
true,
581 MD && MD->isDefaulted()) {
587 handleFunctionCall(OCE);
594 if (handleTestPoint(FCE))
600 if (!hasOrigins(ILE))
607 if (!hasOrigins(ILE->
getInit(0)))
609 killAndFlowOrigin(*ILE, *ILE->
getInit(0));
625 assert((!SubExprList ||
627 "MTE top level origin should contain a loan to the MTE itself");
630 flow(RValMTEList, SubExprList,
true);
635 CurrentBlockFacts.push_back(
642 if (
C.capturesThis())
643 FactMgr.setThisCapturedByLambda();
644 else if (
C.capturesVariable() &&
C.getCapturedVar()->isInitCapture()) {
648 if (
const auto *ME = dyn_cast<MemberExpr>(
Init->IgnoreParenImpCasts())) {
649 if (
const auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
650 FactMgr.addCapturedField(FD);
662 for (
const Expr *
Init : LE->capture_inits()) {
685 assert(ASE->
isGLValue() &&
"Array subscript should be a GL value");
687 assert(Dst &&
"Array subscript should have origins as it is a GL value");
689 assert(Src &&
"Base of array subscript should have origins");
694bool FactsGenerator::handlePlacementNew(
const CXXNewExpr *NE,
700 if (NE->getNumPlacementArgs() != 1)
704 if (OperatorNew->getNumParams() <= 1)
708 OperatorNew->getParamDecl(1)->getType()->getAs<
PointerType>();
709 if (!Arg || !Arg->isVoidPointerType())
714 const Expr *PlacementArg = NE->getPlacementArg(0);
715 if (
const auto *ICE = dyn_cast<ImplicitCastExpr>(PlacementArg);
716 ICE && ICE->getCastKind() == CK_BitCast &&
717 PlacementArg->getType()->isVoidPointerType())
718 PlacementArg = ICE->getSubExpr();
719 OriginList *PlacementList = getOriginsList(*PlacementArg);
723 handleAccess(PlacementArg);
735 const Expr *
Init = NE->getInitializer();
737 bool HandledAsPlacementNew =
false;
738 if (NE->getNumPlacementArgs() == 1)
739 HandledAsPlacementNew = handlePlacementNew(NE, NewList);
744 if (!HandledAsPlacementNew &&
745 (NE->getNumPlacementArgs() == 0 ||
746 (OperatorNew && OperatorNew->isReplaceableGlobalAllocationFunction()))) {
748 CurrentBlockFacts.push_back(
754 if (!NewList || !
Init)
760 flow(NewList, InitList,
true);
788 CurrentBlockFacts.push_back(
797 if (!CS || CS->body_empty())
799 const auto *
Last = dyn_cast<Expr>(CS->body_back());
804 flow(Dst, Src,
true);
807bool FactsGenerator::escapesViaReturn(
OriginID OID)
const {
808 return llvm::any_of(EscapesInCurrentBlock, [OID](
const Fact *F) {
810 return EF->getEscapedOriginID() == OID;
815void FactsGenerator::handleLifetimeEnds(
const CFGLifetimeEnds &LifetimeEnds) {
821 std::optional<OriginID> ExpiredOID;
822 if (OriginList *List = getOriginsList(*LifetimeEndsVD)) {
826 if (!escapesViaReturn(OID))
829 CurrentBlockFacts.push_back(FactMgr.
createFact<ExpireFact>(
834void FactsGenerator::handleFullExprCleanup(
835 const CFGFullExprCleanup &FullExprCleanup) {
836 for (
const auto *MTE : FullExprCleanup.getExpiringMTEs())
837 CurrentBlockFacts.push_back(FactMgr.createFact<ExpireFact>(
838 AccessPath(MTE), FullExprCleanup.getCleanupLoc()));
841void FactsGenerator::handleExitBlock() {
842 bool IsDestructor = isa_and_nonnull<CXXDestructorDecl>(AC.getDecl());
843 for (
const Origin &O : FactMgr.getOriginMgr().getOrigins())
846 if (
auto *FD = dyn_cast_if_present<FieldDecl>(O.getDecl());
848 EscapesInCurrentBlock.push_back(
849 FactMgr.createFact<FieldEscapeFact>(O.ID, FD));
850 else if (
auto *VD = dyn_cast_if_present<VarDecl>(O.getDecl())) {
853 if (VD->hasGlobalStorage()) {
854 EscapesInCurrentBlock.push_back(
855 FactMgr.createFact<GlobalEscapeFact>(O.ID, VD));
860void FactsGenerator::handleGSLPointerConstruction(
const CXXConstructExpr *CCE) {
862 if (CCE->getNumArgs() != 1)
865 const Expr *Arg = CCE->getArg(0);
871 OriginList *ArgList = readValue(Arg);
872 assert(ArgList &&
"GSL pointer argument should have an origin list");
873 flow(getOriginsList(*CCE), ArgList,
true);
874 }
else if (Arg->getType()->isPointerType()) {
879 OriginList *ArgList = getOriginsList(*Arg);
880 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
881 getOriginsList(*CCE)->getOuterOriginID(), ArgList->getOuterOriginID(),
886 handleFunctionCall(CCE,
true);
890void FactsGenerator::handleMovedArgsInCall(
const FunctionDecl *FD,
891 ArrayRef<const Expr *> Args) {
892 unsigned ImplicitObjectArgOffset = 0;
895 if (
const auto *MD = dyn_cast<CXXMethodDecl>(FD);
897 MD->isImplicitObjectMemberFunction()) {
898 ImplicitObjectArgOffset = 1;
903 const Expr *UniquePtrExpr = Args[0];
904 OriginList *MovedOrigins = getOriginsList(*UniquePtrExpr);
906 CurrentBlockFacts.push_back(FactMgr.createFact<MovedOriginFact>(
907 UniquePtrExpr, MovedOrigins->getOuterOriginID()));
912 for (
unsigned I = ImplicitObjectArgOffset;
913 I < Args.size() && I < FD->getNumParams() + ImplicitObjectArgOffset;
915 const ParmVarDecl *PVD = FD->getParamDecl(I - ImplicitObjectArgOffset);
918 if (PVD->isExplicitObjectParameter())
920 if (!PVD->getType()->isRValueReferenceType())
925 if (PVD->hasAttr<LifetimeBoundAttr>() ||
926 PVD->hasAttr<LifetimeCaptureByAttr>())
928 const Expr *Arg = Args[I];
929 OriginList *MovedOrigins = getOriginsList(*Arg);
930 assert(MovedOrigins->getLength() >= 1 &&
931 "unexpected length for r-value reference param");
933 CurrentBlockFacts.push_back(FactMgr.createFact<MovedOriginFact>(
934 Arg, MovedOrigins->getOuterOriginID()));
938void FactsGenerator::handleInvalidatingCall(
const Expr *
Call,
939 const FunctionDecl *FD,
940 ArrayRef<const Expr *> Args) {
941 const auto *MD = dyn_cast<CXXMethodDecl>(FD);
942 if (!MD || !MD->isInstance())
954 OriginList *ThisList = getOriginsList(*Args[0]);
956 CurrentBlockFacts.push_back(FactMgr.createFact<InvalidateOriginFact>(
957 ThisList->getOuterOriginID(),
Call));
960void FactsGenerator::handleDestructiveCall(
const Expr *
Call,
961 const FunctionDecl *FD,
962 ArrayRef<const Expr *> Args) {
965 OriginList *ArgList = getOriginsList(*Args[0]);
967 CurrentBlockFacts.push_back(FactMgr.createFact<InvalidateOriginFact>(
968 ArgList->getOuterOriginID(),
Call));
971void FactsGenerator::handleImplicitObjectFieldUses(
const Expr *
Call,
972 const FunctionDecl *FD) {
973 const auto *MemberCall = dyn_cast_or_null<CXXMemberCallExpr>(
Call);
977 if (!isa_and_present<CXXThisExpr>(
978 MemberCall->getImplicitObjectArgument()->IgnoreImpCasts()))
981 const auto *MD = dyn_cast<CXXMethodDecl>(FD);
982 assert(MD &&
"Function must be a CXXMethodDecl for member calls");
984 const auto *ClassDecl = MD->getParent()->getDefinition();
988 const auto UseFields = [&](
const CXXRecordDecl *RD) {
989 for (
const auto *Field : RD->fields())
990 if (
auto *FieldList = getOriginsList(*Field))
991 CurrentBlockFacts.push_back(
992 FactMgr.createFact<UseFact>(
Call, FieldList));
995 UseFields(ClassDecl);
997 ClassDecl->forallBases([&](
const CXXRecordDecl *Base) {
1003void FactsGenerator::handleLifetimeCaptureBy(
const FunctionDecl *FD,
1004 ArrayRef<const Expr *> Args) {
1010 const auto *
Method = dyn_cast<CXXMethodDecl>(FD);
1013 auto getParamDeclAt = [FD, IsInstance](
unsigned I) ->
const ParmVarDecl * {
1016 if (I > 0 && I - 1 < FD->getNumParams())
1017 return FD->getParamDecl(I - 1);
1019 if (I < FD->getNumParams())
1020 return FD->getParamDecl(I);
1024 for (
unsigned I = 0; I < Args.size(); ++I) {
1025 const ParmVarDecl *PVD = getParamDeclAt(I);
1028 const auto *Attr = PVD->getAttr<LifetimeCaptureByAttr>();
1031 OriginList *CapturedOriginList = getOriginsList(*Args[I]);
1032 if (!CapturedOriginList)
1036 if (QualType ParamType = PVD->getType();
1037 (ParamType->isReferenceType() &&
1039 CapturedOriginList->getLength() > 1)
1040 CapturedOriginList = CapturedOriginList->peelOuterOrigin();
1041 for (
int CapturingArgIdx : Attr->params()) {
1043 if (CapturingArgIdx == LifetimeCaptureByAttr::Global ||
1044 CapturingArgIdx == LifetimeCaptureByAttr::Unknown ||
1045 CapturingArgIdx == LifetimeCaptureByAttr::Invalid)
1047 ArrayRef<const Expr *> CallArgs = IsInstance ? Args.drop_front() : Args;
1048 const Expr *CapturedByArg =
1049 (CapturingArgIdx == LifetimeCaptureByAttr::This)
1051 : CallArgs[CapturingArgIdx];
1052 assert(CapturedByArg &&
"Capturer expression must be valid");
1054 OriginList *Dest = readValue(CapturedByArg);
1061 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
1062 Dest->getOuterOriginID(), CapturedOriginList->getOuterOriginID(),
1068void FactsGenerator::handleFunctionCall(
const Expr *
Call,
1069 bool IsGslConstruction) {
1070 FunctionCallInfo CallInfo(
Call);
1071 llvm::ArrayRef<const Expr *> Args = CallInfo.Args;
1073 for (
const Expr *Arg : Args)
1077 OriginList *CallList = getOriginsList(*
Call);
1082 handleInvalidatingCall(
Call, FD, Args);
1083 handleDestructiveCall(
Call, FD, Args);
1084 handleMovedArgsInCall(FD, Args);
1085 handleImplicitObjectFieldUses(
Call, FD);
1086 handleLifetimeCaptureBy(FD, Args);
1090 assert(Args.size() == 1 &&
1091 "std reference cast builtins take exactly one argument");
1094 flow(CallList, getOriginsList(*Args[0]),
true);
1097 auto shouldTrackPointerImplicitObjectArg = [FD, &Args](
unsigned I) ->
bool {
1098 const auto *
Method = dyn_cast<CXXMethodDecl>(FD);
1108 bool KillSrc =
true;
1109 for (
unsigned I = 0; I < Args.size(); ++I) {
1110 OriginList *ArgList = getOriginsList(*Args[I]);
1114 if (IsGslConstruction) {
1118 assert(!Args[I]->isGLValue() || ArgList->getLength() >= 2);
1119 ArgList = readValue(Args[I]);
1125 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
1126 CallList->getOuterOriginID(), ArgList->getOuterOriginID(),
1129 }
else if (ShouldTrackArg) {
1136 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
1137 CallList->getOuterOriginID(), ArgList->getOuterOriginID(),
1141 }
else if (shouldTrackPointerImplicitObjectArg(I)) {
1142 assert(ArgList->getLength() >= 2 &&
1143 "Object arg of pointer type should have at least two origins");
1145 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
1146 CallList->getOuterOriginID(),
1147 ArgList->peelOuterOrigin()->getOuterOriginID(), KillSrc));
1149 }
else if (ShouldTrackArg) {
1153 CurrentBlockFacts.push_back(FactMgr.createFact<OriginFlowFact>(
1154 CallList->getOuterOriginID(), ArgList->getOuterOriginID(), KillSrc));
1162bool FactsGenerator::handleTestPoint(
const CXXFunctionalCastExpr *FCE) {
1163 if (!FCE->getType()->isVoidType())
1166 const auto *SubExpr = FCE->getSubExpr()->IgnoreParenImpCasts();
1167 if (
const auto *SL = dyn_cast<StringLiteral>(SubExpr)) {
1168 llvm::StringRef LiteralValue = SL->getString();
1169 const std::string Prefix =
"__lifetime_test_point_";
1171 if (LiteralValue.starts_with(Prefix)) {
1172 StringRef Annotation = LiteralValue.drop_front(Prefix.length());
1173 CurrentBlockFacts.push_back(
1174 FactMgr.createFact<TestPointFact>(Annotation));
1181bool FactsGenerator::namesDeclStorage(
const OriginList *List)
const {
1182 return FactMgr.getOriginMgr()
1183 .getOrigin(List->getOuterOriginID())
1187void FactsGenerator::handleAccess(
const Expr *E) {
1188 OriginList *List = getOriginsList(*E);
1189 if (!List || namesDeclStorage(List))
1191 CurrentBlockFacts.push_back(FactMgr.createFact<UseFact>(
1193 FactMgr.getOriginMgr().createSingleOriginList(List->getOuterOriginID())));
1196void FactsGenerator::handleUse(
const Expr *E) {
1197 OriginList *List = getOriginsList(*E);
1198 if (List && namesDeclStorage(List))
1199 List = List->peelOuterOrigin();
1201 CurrentBlockFacts.push_back(FactMgr.createFact<UseFact>(E, List));
1206llvm::SmallVector<Fact *> FactsGenerator::issuePlaceholderLoans() {
1207 const auto *FD = dyn_cast<FunctionDecl>(AC.getDecl());
1211 llvm::SmallVector<Fact *> PlaceholderLoanFacts;
1212 if (
auto ThisOrigins = FactMgr.getOriginMgr().getThisOrigins()) {
1213 OriginList *List = *ThisOrigins;
1216 PlaceholderLoanFacts.push_back(
1217 FactMgr.createFact<IssueFact>(L->getID(), List->getOuterOriginID()));
1219 for (
const ParmVarDecl *PVD : FD->parameters()) {
1220 OriginList *List = getOriginsList(*PVD);
1223 const Loan *L = FactMgr.getLoanMgr().createPlaceholderLoan(PVD);
1224 PlaceholderLoanFacts.push_back(
1225 FactMgr.createFact<IssueFact>(L->getID(), List->getOuterOriginID()));
1227 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.
bool isOutputPlusConstraint(unsigned i) const
isOutputPlusConstraint - Return true if the specified output constraint is a "+" constraint (which is...
unsigned getNumOutputs() const
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.
A C++ throw-expression (C++ [except.throw]).
const Expr * getSubExpr() const
A C++ typeid expression (C++ [expr.typeid]), which gets the type_info that corresponds to the supplie...
Expr * getExprOperand() const
bool isPotentiallyEvaluated() const
Determine whether this typeid has a type operand which is potentially evaluated, per C++11 [expr....
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.
This represents a GCC inline-assembly statement extension.
Expr * getOutputExpr(unsigned i)
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 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)
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 VisitCXXTypeidExpr(const CXXTypeidExpr *TE)
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 VisitGCCAsmStmt(const GCCAsmStmt *AS)
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 VisitCXXThrowExpr(const CXXThrowExpr *TE)
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
Represents that an origin escapes via a return statement.
utils::ID< struct OriginTag > OriginID
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)