| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | APValue.h | 30 class AddrLabelExpr; variable 295 const AddrLabelExpr* LHSExpr; 296 const AddrLabelExpr* RHSExpr; 354 APValue(const AddrLabelExpr* LHSExpr, const AddrLabelExpr* RHSExpr) 571 const AddrLabelExpr* getAddrLabelDiffLHS() const { 575 const AddrLabelExpr* getAddrLabelDiffRHS() const { 617 void setAddrLabelDiff(const AddrLabelExpr* LHSExpr, 618 const AddrLabelExpr* RHSExpr) {
|
| H A D | PropertiesBase.td | 416 let Read = [{ const_cast<AddrLabelExpr *>(node.getAddrLabelDiffLHS()) }]; 419 let Read = [{ const_cast<AddrLabelExpr *>(node.getAddrLabelDiffRHS()) }]; 422 return APValue(cast<AddrLabelExpr>(lhs), cast<AddrLabelExpr>(rhs));
|
| H A D | StmtDataCollectors.td | 161 class AddrLabelExpr {
|
| H A D | TextNodeDumper.h | 271 void VisitAddrLabelExpr(const AddrLabelExpr *Node);
|
| H A D | JSONNodeDumper.h | 284 void VisitAddrLabelExpr(const AddrLabelExpr *ALE);
|
| H A D | Stmt.h | 53 class AddrLabelExpr; variable 3191 AddrLabelExpr *getLabelExpr(unsigned i) const; 3193 using labels_iterator = CastIterator<AddrLabelExpr>; 3194 using const_labels_iterator = ConstCastIterator<AddrLabelExpr>;
|
| H A D | Expr.h | 4304 class AddrLabelExpr : public Expr { 4308 AddrLabelExpr(SourceLocation AALoc, SourceLocation LLoc, LabelDecl *L, in AddrLabelExpr() function 4316 explicit AddrLabelExpr(EmptyShell Empty) in AddrLabelExpr() function
|
| /llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SValBuilder.h | 364 loc::GotoLabel makeLoc(const AddrLabelExpr *expr) { in makeLoc()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Stmt.cpp | 526 AddrLabelExpr *GCCAsmStmt::getLabelExpr(unsigned i) const { in getLabelExpr() 527 return cast<AddrLabelExpr>(Exprs[i + NumOutputs + NumInputs]); in getLabelExpr() 1181 if (auto *E = dyn_cast<AddrLabelExpr>(getTarget()->IgnoreParenImpCasts())) in getConstantTarget()
|
| H A D | ASTStructuralEquivalence.cpp | 168 bool IsStmtEquivalent(const AddrLabelExpr *E1, const AddrLabelExpr *E2) { in IsStmtEquivalent()
|
| H A D | ExprConstant.cpp | 8720 bool VisitAddrLabelExpr(const AddrLabelExpr *E) in VisitAddrLabelExpr() 12664 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); in VisitBinOp() 12665 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr); in VisitBinOp() 13175 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); in VisitBinaryOperator() 13176 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr); in VisitBinaryOperator()
|
| H A D | JSONNodeDumper.cpp | 1325 void JSONNodeDumper::VisitAddrLabelExpr(const AddrLabelExpr *ALE) { in VisitAddrLabelExpr()
|
| H A D | TextNodeDumper.cpp | 1175 void TextNodeDumper::VisitAddrLabelExpr(const AddrLabelExpr *Node) { in VisitAddrLabelExpr()
|
| H A D | StmtProfile.cpp | 1450 void StmtProfiler::VisitAddrLabelExpr(const AddrLabelExpr *S) { in VisitAddrLabelExpr()
|
| H A D | ASTImporter.cpp | 636 ExpectedStmt VisitAddrLabelExpr(AddrLabelExpr *E); 7108 ExpectedStmt ASTNodeImporter::VisitAddrLabelExpr(AddrLabelExpr *E) { in VisitAddrLabelExpr() 7117 return new (Importer.getToContext()) AddrLabelExpr( in VisitAddrLabelExpr() 9712 Result.setAddrLabelDiff(cast<AddrLabelExpr>(ImpLHS), in ImportAPValue() 9713 cast<AddrLabelExpr>(ImpRHS)); in ImportAPValue()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 1815 ConstantLValue VisitAddrLabelExpr(const AddrLabelExpr *E); 2012 ConstantLValueEmitter::VisitAddrLabelExpr(const AddrLabelExpr *E) { in VisitAddrLabelExpr() 2137 const AddrLabelExpr *LHSExpr = Value.getAddrLabelDiffLHS(); in tryEmitPrivate() 2138 const AddrLabelExpr *RHSExpr = Value.getAddrLabelDiffRHS(); in tryEmitPrivate()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 111 def AddrLabelExpr : StmtNode<Expr>;
|
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | UninitializedValues.cpp | 603 [&](const AddrLabelExpr *label) { in getUninitUse()
|
| H A D | CFG.cpp | 543 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc); 2149 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc); in Visit() 2395 CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, in VisitAddrLabelExpr()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 318 IndirectJumpTargets.push_back(cast<AddrLabelExpr>(S)->getLabel()); in BuildScopeInformation()
|
| /llvm-project-15.0.7/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersInternal.h | 1139 bool matchesSpecialized(const AddrLabelExpr &Node, 1218 ElaboratedType, InjectedClassNameType, LabelStmt, AddrLabelExpr,
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | SValBuilder.cpp | 329 return makeLoc(cast<AddrLabelExpr>(E)); in getConstantVal()
|
| /llvm-project-15.0.7/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 906 const internal::VariadicDynCastAllOfMatcher<Stmt, AddrLabelExpr> addrLabelExpr;
|
| /llvm-project-15.0.7/clang/unittests/AST/ |
| H A D | StructuralEquivalenceTest.cpp | 1832 TEST_F(StructuralEquivalenceStmtTest, AddrLabelExpr) { in TEST_F() argument
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1292 void ASTStmtReader::VisitAddrLabelExpr(AddrLabelExpr *E) { in VisitAddrLabelExpr() 3065 S = new (Context) AddrLabelExpr(Empty); in ReadStmtFromStream()
|