Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/clang/include/clang/AST/
H A DAPValue.h30 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 DPropertiesBase.td416 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 DStmtDataCollectors.td161 class AddrLabelExpr {
H A DTextNodeDumper.h271 void VisitAddrLabelExpr(const AddrLabelExpr *Node);
H A DJSONNodeDumper.h284 void VisitAddrLabelExpr(const AddrLabelExpr *ALE);
H A DStmt.h53 class AddrLabelExpr; variable
3191 AddrLabelExpr *getLabelExpr(unsigned i) const;
3193 using labels_iterator = CastIterator<AddrLabelExpr>;
3194 using const_labels_iterator = ConstCastIterator<AddrLabelExpr>;
H A DExpr.h4304 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 DSValBuilder.h364 loc::GotoLabel makeLoc(const AddrLabelExpr *expr) { in makeLoc()
/llvm-project-15.0.7/clang/lib/AST/
H A DStmt.cpp526 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 DASTStructuralEquivalence.cpp168 bool IsStmtEquivalent(const AddrLabelExpr *E1, const AddrLabelExpr *E2) { in IsStmtEquivalent()
H A DExprConstant.cpp8720 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 DJSONNodeDumper.cpp1325 void JSONNodeDumper::VisitAddrLabelExpr(const AddrLabelExpr *ALE) { in VisitAddrLabelExpr()
H A DTextNodeDumper.cpp1175 void TextNodeDumper::VisitAddrLabelExpr(const AddrLabelExpr *Node) { in VisitAddrLabelExpr()
H A DStmtProfile.cpp1450 void StmtProfiler::VisitAddrLabelExpr(const AddrLabelExpr *S) { in VisitAddrLabelExpr()
H A DASTImporter.cpp636 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 DCGExprConstant.cpp1815 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 DStmtNodes.td111 def AddrLabelExpr : StmtNode<Expr>;
/llvm-project-15.0.7/clang/lib/Analysis/
H A DUninitializedValues.cpp603 [&](const AddrLabelExpr *label) { in getUninitUse()
H A DCFG.cpp543 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 DJumpDiagnostics.cpp318 IndirectJumpTargets.push_back(cast<AddrLabelExpr>(S)->getLabel()); in BuildScopeInformation()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1139 bool matchesSpecialized(const AddrLabelExpr &Node,
1218 ElaboratedType, InjectedClassNameType, LabelStmt, AddrLabelExpr,
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp329 return makeLoc(cast<AddrLabelExpr>(E)); in getConstantVal()
/llvm-project-15.0.7/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp906 const internal::VariadicDynCastAllOfMatcher<Stmt, AddrLabelExpr> addrLabelExpr;
/llvm-project-15.0.7/clang/unittests/AST/
H A DStructuralEquivalenceTest.cpp1832 TEST_F(StructuralEquivalenceStmtTest, AddrLabelExpr) { in TEST_F() argument
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp1292 void ASTStmtReader::VisitAddrLabelExpr(AddrLabelExpr *E) { in VisitAddrLabelExpr()
3065 S = new (Context) AddrLabelExpr(Empty); in ReadStmtFromStream()

12