| /netbsd-src/external/apache2/llvm/dist/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 | 413 let Read = [{ const_cast<AddrLabelExpr *>(node.getAddrLabelDiffLHS()) }]; 416 let Read = [{ const_cast<AddrLabelExpr *>(node.getAddrLabelDiffRHS()) }]; 419 return APValue(cast<AddrLabelExpr>(lhs), cast<AddrLabelExpr>(rhs));
|
| H A D | StmtDataCollectors.td | 161 class AddrLabelExpr {
|
| H A D | TextNodeDumper.h | 266 void VisitAddrLabelExpr(const AddrLabelExpr *Node);
|
| H A D | JSONNodeDumper.h | 280 void VisitAddrLabelExpr(const AddrLabelExpr *ALE);
|
| H A D | Stmt.h | 51 class AddrLabelExpr; variable 3130 AddrLabelExpr *getLabelExpr(unsigned i) const; 3132 using labels_iterator = CastIterator<AddrLabelExpr>; 3133 using const_labels_iterator = ConstCastIterator<AddrLabelExpr>;
|
| H A D | Expr.h | 4226 class AddrLabelExpr : public Expr { 4230 AddrLabelExpr(SourceLocation AALoc, SourceLocation LLoc, LabelDecl *L, in AddrLabelExpr() function 4238 explicit AddrLabelExpr(EmptyShell Empty) in AddrLabelExpr() function
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | Stmt.cpp | 519 AddrLabelExpr *GCCAsmStmt::getLabelExpr(unsigned i) const { in getLabelExpr() 520 return cast<AddrLabelExpr>(Exprs[i + NumOutputs + NumInputs]); in getLabelExpr() 1169 if (auto *E = dyn_cast<AddrLabelExpr>(getTarget()->IgnoreParenImpCasts())) in getConstantTarget()
|
| H A D | ASTStructuralEquivalence.cpp | 167 bool IsStmtEquivalent(const AddrLabelExpr *E1, const AddrLabelExpr *E2) { in IsStmtEquivalent()
|
| H A D | ExprConstant.cpp | 8612 bool VisitAddrLabelExpr(const AddrLabelExpr *E) in VisitAddrLabelExpr() 12401 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); in VisitBinOp() 12402 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr); in VisitBinOp() 12912 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); in VisitBinaryOperator() 12913 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr); in VisitBinaryOperator()
|
| H A D | JSONNodeDumper.cpp | 1273 void JSONNodeDumper::VisitAddrLabelExpr(const AddrLabelExpr *ALE) { in VisitAddrLabelExpr()
|
| H A D | TextNodeDumper.cpp | 1114 void TextNodeDumper::VisitAddrLabelExpr(const AddrLabelExpr *Node) { in VisitAddrLabelExpr()
|
| H A D | ASTImporter.cpp | 597 ExpectedStmt VisitAddrLabelExpr(AddrLabelExpr *E); 6849 ExpectedStmt ASTNodeImporter::VisitAddrLabelExpr(AddrLabelExpr *E) { in VisitAddrLabelExpr() 6858 return new (Importer.getToContext()) AddrLabelExpr( in VisitAddrLabelExpr() 9200 Result.setAddrLabelDiff(cast<AddrLabelExpr>(ImpLHS), in ImportAPValue() 9201 cast<AddrLabelExpr>(ImpRHS)); in ImportAPValue()
|
| H A D | StmtProfile.cpp | 1358 void StmtProfiler::VisitAddrLabelExpr(const AddrLabelExpr *S) { in VisitAddrLabelExpr()
|
| H A D | StmtPrinter.cpp | 1486 void StmtPrinter::VisitAddrLabelExpr(AddrLabelExpr *Node) { in VisitAddrLabelExpr()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SValBuilder.h | 375 Loc makeLoc(const AddrLabelExpr *expr) { in makeLoc()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 1784 ConstantLValue VisitAddrLabelExpr(const AddrLabelExpr *E); 1978 ConstantLValueEmitter::VisitAddrLabelExpr(const AddrLabelExpr *E) { in VisitAddrLabelExpr() 2100 const AddrLabelExpr *LHSExpr = Value.getAddrLabelDiffLHS(); in tryEmitPrivate() 2101 const AddrLabelExpr *RHSExpr = Value.getAddrLabelDiffRHS(); in tryEmitPrivate()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 110 def AddrLabelExpr : StmtNode<Expr>;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | UninitializedValues.cpp | 603 [&](const AddrLabelExpr *label) { in getUninitUse()
|
| H A D | CFG.cpp | 544 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc); 2146 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc); in Visit() 2382 CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, in VisitAddrLabelExpr()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersInternal.h | 1142 bool matchesSpecialized(const AddrLabelExpr &Node, 1220 ElaboratedType, InjectedClassNameType, LabelStmt, AddrLabelExpr,
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | SValBuilder.cpp | 293 return makeLoc(cast<AddrLabelExpr>(E)); in getConstantVal()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 318 IndirectJumpTargets.push_back(cast<AddrLabelExpr>(S)->getLabel()); in BuildScopeInformation()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 891 const internal::VariadicDynCastAllOfMatcher<Stmt, AddrLabelExpr> addrLabelExpr;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1297 void ASTStmtReader::VisitAddrLabelExpr(AddrLabelExpr *E) { in VisitAddrLabelExpr() 2993 S = new (Context) AddrLabelExpr(Empty); in ReadStmtFromStream()
|