| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | Stmt.cpp | 148 if (const auto *AS = dyn_cast_or_null<AttributedStmt>(S)) in getLikelihood() 202 if (auto AS = dyn_cast_or_null<AttributedStmt>(S)) in IgnoreContainers() 225 else if (const auto *AS = dyn_cast<AttributedStmt>(S)) in stripLabelLikeStatements() 411 else if (const auto *AS = dyn_cast<AttributedStmt>(S)) in getExprStmt() 424 AttributedStmt *AttributedStmt::Create(const ASTContext &C, SourceLocation Loc, in Create() 429 alignof(AttributedStmt)); in Create() 430 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt); in Create() 433 AttributedStmt *AttributedStmt::CreateEmpty(const ASTContext &C, in CreateEmpty() 437 alignof(AttributedStmt)); in CreateEmpty() 438 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs); in CreateEmpty()
|
| H A D | StmtProfile.cpp | 262 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) { in VisitAttributedStmt()
|
| H A D | StmtPrinter.cpp | 293 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { in VisitAttributedStmt()
|
| H A D | ASTImporter.cpp | 583 ExpectedStmt VisitAttributedStmt(AttributedStmt *S); 6558 ExpectedStmt ASTNodeImporter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 6570 return AttributedStmt::Create( in VisitAttributedStmt()
|
| H A D | ExprConstant.cpp | 5489 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(), in EvaluateStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 76 SmallVector<AttributedStmt *, 4> MustTailStmts; 98 const Attr *GetMustTailAttr(AttributedStmt *AS); 598 AttributedStmt *AS = cast<AttributedStmt>(S); in BuildScopeInformation() 1001 for (AttributedStmt *AS : MustTailStmts) { in VerifyMustTailStmts() 1011 const Attr *JumpScopeChecker::GetMustTailAttr(AttributedStmt *AS) { in GetMustTailAttr()
|
| H A D | AnalysisBasedWarnings.cpp | 1055 void markFallthroughVisited(const AttributedStmt *Stmt) { in markFallthroughVisited() 1061 typedef llvm::SmallPtrSet<const AttributedStmt*, 8> AttrStmts; 1121 if (const AttributedStmt *AS = asFallThroughAttr(CS->getStmt())) { in checkFallThroughIntoBlock() 1147 if (const AttributedStmt *AS = asFallThroughAttr(LastStmt)) { in checkFallThroughIntoBlock() 1168 bool VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 1193 static const AttributedStmt *asFallThroughAttr(const Stmt *S) { in asFallThroughAttr() 1194 if (const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(S)) { in asFallThroughAttr()
|
| H A D | SemaStmt.cpp | 596 return AttributedStmt::Create(Context, AttrsLoc, Attrs, SubStmt); in BuildAttributedStmt()
|
| H A D | SemaOpenMP.cpp | 15122 AttributedStmt *InnerUnrolled = in ActOnOpenMPUnrollDirective() 15123 AttributedStmt::Create(Context, StartLoc, {UnrollHintAttr}, InnerFor); in ActOnOpenMPUnrollDirective()
|
| H A D | TreeTransform.h | 7548 TreeTransform<Derived>::TransformAttributedStmt(AttributedStmt *S, in TransformAttributedStmt()
|
| H A D | SemaDeclCXX.cpp | 2102 SemaRef, Dcl, cast<AttributedStmt>(S)->getSubStmt(), ReturnStmts, in CheckConstexprFunctionStmt()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | StmtDataCollectors.td | 236 class AttributedStmt {
|
| H A D | Stmt.h | 151 friend class AttributedStmt; variable 1890 class AttributedStmt final 1892 private llvm::TrailingObjects<AttributedStmt, const Attr *> { 1898 AttributedStmt(SourceLocation Loc, ArrayRef<const Attr *> Attrs, in AttributedStmt() function 1906 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs) in AttributedStmt() function 1919 static AttributedStmt *Create(const ASTContext &C, SourceLocation Loc, 1923 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
|
| H A D | ASTNodeTraverser.h | 696 void VisitAttributedStmt(const AttributedStmt *Node) { in VisitAttributedStmt()
|
| H A D | RecursiveASTVisitor.h | 2396 DEF_TRAVERSE_STMT(AttributedStmt, {})
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 32 def AttributedStmt : StmtNode<ValueStmt>;
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 451 EmitAttributedStmt(cast<AttributedStmt>(*S)); in EmitSimpleStmt() 511 } else if (const auto *AS = dyn_cast<AttributedStmt>(ExprResult)) { in EmitCompoundStmtWithoutScope() 698 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) { in EmitAttributedStmt()
|
| H A D | CoverageMappingGen.cpp | 984 if (LastStmt && HasTerminateStmt && !isa<AttributedStmt>(Child)) { in VisitStmt()
|
| H A D | CodeGenFunction.h | 3239 void EmitAttributedStmt(const AttributedStmt &S);
|
| H A D | CGStmtOpenMP.cpp | 2096 const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(SS); in EmitOMPInnerLoop()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | CFG.cpp | 548 CFGBlock *VisitAttributedStmt(AttributedStmt *A, AddStmtChoice asc); 2206 return VisitAttributedStmt(cast<AttributedStmt>(S), asc); in Visit() 2467 static bool isFallthroughStatement(const AttributedStmt *A) { in isFallthroughStatement() 2474 CFGBlock *CFGBuilder::VisitAttributedStmt(AttributedStmt *A, in VisitAttributedStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 202 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 2842 S = AttributedStmt::CreateEmpty( in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 128 void ASTStmtWriter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1620 if (const auto *Outer = dyn_cast_or_null<AttributedStmt>(S)) in ParseIfStatement()
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | InternalsManual.rst | 3094 The ``clang::AttributedStmt`` object can be queried for the presence or absence
|