clang 20.0.0git
ProgramPoint.cpp
Go to the documentation of this file.
1//==- ProgramPoint.cpp - Program Points for Path-Sensitive Analysis -*- C++ -*-/
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the interface ProgramPoint, which identifies a
10// distinct location in a function.
11//
12//===----------------------------------------------------------------------===//
13
18
19using namespace clang;
20
22
24 const LocationContext *LC,
25 const ProgramPointTag *tag){
26 switch (K) {
27 default:
28 llvm_unreachable("Unhandled ProgramPoint kind");
30 return PreStmt(S, LC, tag);
32 return PostStmt(S, LC, tag);
34 return PreLoad(S, LC, tag);
36 return PostLoad(S, LC, tag);
38 return PreStore(S, LC, tag);
40 return PostLValue(S, LC, tag);
42 return PostStmtPurgeDeadSymbols(S, LC, tag);
44 return PreStmtPurgeDeadSymbols(S, LC, tag);
45 }
46}
47
48LLVM_DUMP_METHOD void ProgramPoint::dump() const {
49 return printJson(llvm::errs());
50}
51
52void ProgramPoint::printJson(llvm::raw_ostream &Out, const char *NL) const {
53 const ASTContext &Context =
55 const SourceManager &SM = Context.getSourceManager();
56 const PrintingPolicy &PP = Context.getPrintingPolicy();
57 const bool AddQuotes = true;
58
59 Out << "\"kind\": \"";
60 switch (getKind()) {
62 Out << "BlockEntrance\""
63 << ", \"block_id\": "
64 << castAs<BlockEntrance>().getBlock()->getBlockID();
65 break;
66
68 auto FEP = getAs<FunctionExitPoint>();
69 Out << "FunctionExit\""
70 << ", \"block_id\": " << FEP->getBlock()->getBlockID()
71 << ", \"stmt_id\": ";
72
73 if (const ReturnStmt *RS = FEP->getStmt()) {
74 Out << RS->getID(Context) << ", \"stmt\": ";
75 RS->printJson(Out, nullptr, PP, AddQuotes);
76 } else {
77 Out << "null, \"stmt\": null";
78 }
79 break;
80 }
82 llvm_unreachable("BlockExitKind");
83 break;
85 Out << "CallEnter\", \"callee_decl\": \"";
87 castAs<CallEnter>().getCalleeContext()->getDecl())
88 << '\"';
89 break;
91 Out << "CallExitBegin\"";
92 break;
94 Out << "CallExitEnd\"";
95 break;
97 Out << "EpsilonPoint\"";
98 break;
99
101 Out << "LoopExit\", \"stmt\": \""
102 << castAs<LoopExit>().getLoopStmt()->getStmtClassName() << '\"';
103 break;
104
106 ImplicitCallPoint PC = castAs<ImplicitCallPoint>();
107 Out << "PreCall\", \"decl\": \""
109 << "\", \"location\": ";
111 break;
112 }
113
115 ImplicitCallPoint PC = castAs<ImplicitCallPoint>();
116 Out << "PostCall\", \"decl\": \""
118 << "\", \"location\": ";
120 break;
121 }
122
124 Out << "PostInitializer\", ";
125 const CXXCtorInitializer *Init = castAs<PostInitializer>().getInitializer();
126 if (const FieldDecl *FD = Init->getAnyMember()) {
127 Out << "\"field_decl\": \"" << *FD << '\"';
128 } else {
129 Out << "\"type\": \"";
130 QualType Ty = Init->getTypeSourceInfo()->getType();
131 Ty = Ty.getLocalUnqualifiedType();
132 Ty.print(Out, Context.getLangOpts());
133 Out << '\"';
134 }
135 break;
136 }
137
139 const BlockEdge &E = castAs<BlockEdge>();
140 const Stmt *T = E.getSrc()->getTerminatorStmt();
141 Out << "Edge\", \"src_id\": " << E.getSrc()->getBlockID()
142 << ", \"dst_id\": " << E.getDst()->getBlockID() << ", \"terminator\": ";
143
144 if (!T) {
145 Out << "null, \"term_kind\": null";
146 break;
147 }
148
149 E.getSrc()->printTerminatorJson(Out, Context.getLangOpts(),
150 /*AddQuotes=*/true);
151 Out << ", \"location\": ";
152 printSourceLocationAsJson(Out, T->getBeginLoc(), SM);
153
154 Out << ", \"term_kind\": \"";
155 if (isa<SwitchStmt>(T)) {
156 Out << "SwitchStmt\", \"case\": ";
157 if (const Stmt *Label = E.getDst()->getLabel()) {
158 if (const auto *C = dyn_cast<CaseStmt>(Label)) {
159 Out << "{ \"lhs\": ";
160 if (const Stmt *LHS = C->getLHS()) {
161 LHS->printJson(Out, nullptr, PP, AddQuotes);
162 } else {
163 Out << "null";
164 }
165
166 Out << ", \"rhs\": ";
167 if (const Stmt *RHS = C->getRHS()) {
168 RHS->printJson(Out, nullptr, PP, AddQuotes);
169 } else {
170 Out << "null";
171 }
172 Out << " }";
173 } else {
174 assert(isa<DefaultStmt>(Label));
175 Out << "\"default\"";
176 }
177 } else {
178 Out << "\"implicit default\"";
179 }
180 } else if (isa<IndirectGotoStmt>(T)) {
181 // FIXME: More info.
182 Out << "IndirectGotoStmt\"";
183 } else {
184 Out << "Condition\", \"value\": "
185 << (*E.getSrc()->succ_begin() == E.getDst() ? "true" : "false");
186 }
187 break;
188 }
189
190 default: {
191 const Stmt *S = castAs<StmtPoint>().getStmt();
192 assert(S != nullptr && "Expecting non-null Stmt");
193
194 Out << "Statement\", \"stmt_kind\": \"" << S->getStmtClassName()
195 << "\", \"stmt_id\": " << S->getID(Context)
196 << ", \"pointer\": \"" << (const void *)S << "\", ";
197 if (const auto *CS = dyn_cast<CastExpr>(S))
198 Out << "\"cast_kind\": \"" << CS->getCastKindName() << "\", ";
199
200 Out << "\"pretty\": ";
201
202 S->printJson(Out, nullptr, PP, AddQuotes);
203
204 Out << ", \"location\": ";
205 printSourceLocationAsJson(Out, S->getBeginLoc(), SM);
206
207 Out << ", \"stmt_point_kind\": \"";
208 if (getAs<PreLoad>())
209 Out << "PreLoad";
210 else if (getAs<PreStore>())
211 Out << "PreStore";
212 else if (getAs<PostAllocatorCall>())
213 Out << "PostAllocatorCall";
214 else if (getAs<PostCondition>())
215 Out << "PostCondition";
216 else if (getAs<PostLoad>())
217 Out << "PostLoad";
218 else if (getAs<PostLValue>())
219 Out << "PostLValue";
220 else if (getAs<PostStore>())
221 Out << "PostStore";
222 else if (getAs<PostStmt>())
223 Out << "PostStmt";
224 else if (getAs<PostStmtPurgeDeadSymbols>())
225 Out << "PostStmtPurgeDeadSymbols";
226 else if (getAs<PreStmtPurgeDeadSymbols>())
227 Out << "PreStmtPurgeDeadSymbols";
228 else if (getAs<PreStmt>())
229 Out << "PreStmt";
230 else {
231 Out << "\nKind: '" << getKind();
232 llvm_unreachable("' is unhandled StmtPoint kind!");
233 }
234
235 Out << '\"';
236 break;
237 }
238 }
239}
240
242 StringRef Msg)
243 : Desc((MsgProvider + " : " + Msg).str()) {}
244
246 return Desc;
247}
Defines the clang::ASTContext interface.
This file defines AnalysisDeclContext, a class that manages the analysis context data for context sen...
#define SM(sm)
Definition: Cuda.cpp:84
Expr * E
std::string Label
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:188
SourceManager & getSourceManager()
Definition: ASTContext.h:741
const LangOptions & getLangOpts() const
Definition: ASTContext.h:834
const clang::PrintingPolicy & getPrintingPolicy() const
Definition: ASTContext.h:733
static std::string getFunctionName(const Decl *D)
ASTContext & getASTContext() const
Represents a C++ base or member initializer.
Definition: DeclCXX.h:2318
FunctionDecl * getAsFunction() LLVM_READONLY
Returns the function itself, or the templated function if this is a function template.
Definition: DeclBase.cpp:246
Represents a member of a struct/union/class.
Definition: Decl.h:3033
Represents an implicit call event.
Definition: ProgramPoint.h:554
SourceLocation getLocation() const
Definition: ProgramPoint.h:562
const Decl * getDecl() const
Definition: ProgramPoint.h:561
It wraps the AnalysisDeclContext to represent both the call stack with the help of StackFrameContext ...
LLVM_ATTRIBUTE_RETURNS_NONNULL AnalysisDeclContext * getAnalysisDeclContext() const
std::string getQualifiedNameAsString() const
Definition: Decl.cpp:1668
Represents a point after we ran remove dead bindings AFTER processing the given statement.
Definition: ProgramPoint.h:484
Represents a point after we ran remove dead bindings BEFORE processing the given statement.
Definition: ProgramPoint.h:468
ProgramPoints can be "tagged" as representing points specific to a given analysis entity.
Definition: ProgramPoint.h:38
Kind getKind() const
Definition: ProgramPoint.h:156
static ProgramPoint getProgramPoint(const Stmt *S, ProgramPoint::Kind K, const LocationContext *LC, const ProgramPointTag *tag)
LLVM_DUMP_METHOD void dump() const
void printJson(llvm::raw_ostream &Out, const char *NL="\n") const
const LocationContext * getLocationContext() const
Definition: ProgramPoint.h:175
A (possibly-)qualified type.
Definition: Type.h:929
QualType getLocalUnqualifiedType() const
Return this type with all of the instance-specific qualifiers removed, but without removing any quali...
Definition: Type.h:1220
void print(raw_ostream &OS, const PrintingPolicy &Policy, const Twine &PlaceHolder=Twine(), unsigned Indentation=0) const
ReturnStmt - This represents a return, optionally of an expression: return; return 4;.
Definition: Stmt.h:3046
SimpleProgramPointTag(StringRef MsgProvider, StringRef Msg)
StringRef getTagDescription() const override
This class handles loading and caching of source files into memory.
Stmt - This represents one statement.
Definition: Stmt.h:84
The JSON file list parser is used to communicate input to InstallAPI.
void printSourceLocationAsJson(raw_ostream &Out, SourceLocation Loc, const SourceManager &SM, bool AddBraces=true)
Definition: JsonSupport.h:82
const FunctionProtoType * T
Describes how types, statements, expressions, and declarations should be printed.
Definition: PrettyPrinter.h:57