Home
last modified time | relevance | path

Searched refs:AddrLabelExpr (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DPropertiesBase.td420 let Read = [{ const_cast<AddrLabelExpr *>(node.getAddrLabelDiffLHS()) }];
423 let Read = [{ const_cast<AddrLabelExpr *>(node.getAddrLabelDiffRHS()) }];
426 return APValue(cast<AddrLabelExpr>(lhs), cast<AddrLabelExpr>(rhs));
H A DStmtDataCollectors.td161 class AddrLabelExpr {
H A DTextNodeDumper.h289 void VisitAddrLabelExpr(const AddrLabelExpr *Node);
H A DJSONNodeDumper.h301 void VisitAddrLabelExpr(const AddrLabelExpr *ALE);
H A DStmt.h60 class AddrLabelExpr; variable
3421 AddrLabelExpr *getLabelExpr(unsigned i) const;
3423 using labels_iterator = CastIterator<AddrLabelExpr>;
3424 using const_labels_iterator = ConstCastIterator<AddrLabelExpr>;
H A DExpr.h4362 class AddrLabelExpr : public Expr {
4366 AddrLabelExpr(SourceLocation AALoc, SourceLocation LLoc, LabelDecl *L, in AddrLabelExpr() function
4374 explicit AddrLabelExpr(EmptyShell Empty) in AddrLabelExpr() function
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp318 IndirectJumpTargets.push_back(cast<AddrLabelExpr>(S)->getLabel()); in BuildScopeInformation()
688 for (AddrLabelExpr *L : G->labels()) { in VerifyJumps()
H A DCheckExprLifetime.cpp904 Visit(Path, Local(cast<AddrLabelExpr>(Init)), RK_ReferenceBinding); in visitLocalsRetainedByInitializer()
1206 } else if (isa<AddrLabelExpr>(L)) { in checkExprLifetimeImpl()
H A DSemaCoroutine.cpp1134 for (AddrLabelExpr *ALE : Fn->AddrLabels) in CheckCompletedCoroutineBody()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSValBuilder.h385 loc::GotoLabel makeLoc(const AddrLabelExpr *expr) { in makeLoc()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp528 AddrLabelExpr *GCCAsmStmt::getLabelExpr(unsigned i) const { in getLabelExpr()
529 return cast<AddrLabelExpr>(Exprs[i + NumOutputs + NumInputs]); in getLabelExpr()
1184 if (auto *E = dyn_cast<AddrLabelExpr>(getTarget()->IgnoreParenImpCasts())) in getConstantTarget()
H A DASTStructuralEquivalence.cpp173 bool IsStmtEquivalent(const AddrLabelExpr *E1, const AddrLabelExpr *E2) { in IsStmtEquivalent()
H A DExprConstant.cpp9107 bool VisitAddrLabelExpr(const AddrLabelExpr *E) in VisitAddrLabelExpr()
13438 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); in VisitBinOp()
13439 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr); in VisitBinOp()
13985 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); in VisitBinaryOperator()
13986 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr); in VisitBinaryOperator()
H A DJSONNodeDumper.cpp1464 void JSONNodeDumper::VisitAddrLabelExpr(const AddrLabelExpr *ALE) { in VisitAddrLabelExpr()
H A DStmtProfile.cpp1515 void StmtProfiler::VisitAddrLabelExpr(const AddrLabelExpr *S) { in VisitAddrLabelExpr()
H A DASTImporter.cpp590 ExpectedStmt VisitAddrLabelExpr(AddrLabelExpr *E);
7631 ExpectedStmt ASTNodeImporter::VisitAddrLabelExpr(AddrLabelExpr *E) { in VisitAddrLabelExpr()
7640 return new (Importer.getToContext()) AddrLabelExpr( in VisitAddrLabelExpr()
10300 Result.setAddrLabelDiff(cast<AddrLabelExpr>(ImpLHS), in ImportAPValue()
10301 cast<AddrLabelExpr>(ImpRHS)); in ImportAPValue()
H A DStmtPrinter.cpp1719 void StmtPrinter::VisitAddrLabelExpr(AddrLabelExpr *Node) { in VisitAddrLabelExpr()
H A DTextNodeDumper.cpp1521 void TextNodeDumper::VisitAddrLabelExpr(const AddrLabelExpr *Node) { in VisitAddrLabelExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h246 llvm::SmallVector<AddrLabelExpr *, 4> AddrLabels;
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td111 def AddrLabelExpr : StmtNode<Expr>;
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp2002 ConstantLValue VisitAddrLabelExpr(const AddrLabelExpr *E);
2215 ConstantLValueEmitter::VisitAddrLabelExpr(const AddrLabelExpr *E) { in VisitAddrLabelExpr()
2396 const AddrLabelExpr *LHSExpr = Value.getAddrLabelDiffLHS(); in tryEmitPrivate()
2397 const AddrLabelExpr *RHSExpr = Value.getAddrLabelDiffRHS(); in tryEmitPrivate()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DCompiler.h187 bool VisitAddrLabelExpr(const AddrLabelExpr *E);
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1134 bool matchesSpecialized(const AddrLabelExpr &Node,
1213 ElaboratedType, InjectedClassNameType, LabelStmt, AddrLabelExpr,
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp560 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc);
2214 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc); in Visit()
2459 CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, in VisitAddrLabelExpr()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1333 void ASTStmtReader::VisitAddrLabelExpr(AddrLabelExpr *E) { in VisitAddrLabelExpr()
3256 S = new (Context) AddrLabelExpr(Empty); in ReadStmtFromStream()

12