| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | Stmt.cpp | 147 if (const auto *AS = dyn_cast_or_null<AttributedStmt>(S)) in getLikelihood() 201 if (auto AS = dyn_cast_or_null<AttributedStmt>(S)) in IgnoreContainers() 224 else if (const auto *AS = dyn_cast<AttributedStmt>(S)) in stripLabelLikeStatements() 403 else if (const auto *AS = dyn_cast<AttributedStmt>(S)) in getExprStmt() 416 AttributedStmt *AttributedStmt::Create(const ASTContext &C, SourceLocation Loc, in Create() 421 alignof(AttributedStmt)); in Create() 422 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt); in Create() 425 AttributedStmt *AttributedStmt::CreateEmpty(const ASTContext &C, in CreateEmpty() 429 alignof(AttributedStmt)); in CreateEmpty() 430 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs); in CreateEmpty()
|
| H A D | StmtProfile.cpp | 258 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) { in VisitAttributedStmt()
|
| H A D | StmtPrinter.cpp | 230 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { in VisitAttributedStmt()
|
| H A D | ASTImporter.cpp | 566 ExpectedStmt VisitAttributedStmt(AttributedStmt *S); 6311 ExpectedStmt ASTNodeImporter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 6323 return AttributedStmt::Create( in VisitAttributedStmt()
|
| H A D | ExprConstant.cpp | 5401 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(), in EvaluateStmt()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 76 SmallVector<AttributedStmt *, 4> MustTailStmts; 98 const Attr *GetMustTailAttr(AttributedStmt *AS); 593 AttributedStmt *AS = cast<AttributedStmt>(S); in BuildScopeInformation() 996 for (AttributedStmt *AS : MustTailStmts) { in VerifyMustTailStmts() 1006 const Attr *JumpScopeChecker::GetMustTailAttr(AttributedStmt *AS) { in GetMustTailAttr()
|
| H A D | AnalysisBasedWarnings.cpp | 1052 void markFallthroughVisited(const AttributedStmt *Stmt) { in markFallthroughVisited() 1058 typedef llvm::SmallPtrSet<const AttributedStmt*, 8> AttrStmts; 1122 if (const AttributedStmt *AS = asFallThroughAttr(CS->getStmt())) { in checkFallThroughIntoBlock() 1148 if (const AttributedStmt *AS = asFallThroughAttr(LastStmt)) { in checkFallThroughIntoBlock() 1169 bool VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 1194 static const AttributedStmt *asFallThroughAttr(const Stmt *S) { in asFallThroughAttr() 1195 if (const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(S)) { in asFallThroughAttr()
|
| H A D | SemaStmt.cpp | 579 return AttributedStmt::Create(Context, AttrsLoc, Attrs, SubStmt); in BuildAttributedStmt()
|
| H A D | SemaOpenMP.cpp | 13067 AttributedStmt *InnerUnrolled = in ActOnOpenMPUnrollDirective() 13068 AttributedStmt::Create(Context, StartLoc, {UnrollHintAttr}, InnerFor); in ActOnOpenMPUnrollDirective()
|
| H A D | TreeTransform.h | 7337 TreeTransform<Derived>::TransformAttributedStmt(AttributedStmt *S, in TransformAttributedStmt()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtDataCollectors.td | 236 class AttributedStmt {
|
| H A D | Stmt.h | 146 friend class AttributedStmt; in alignas() local 1845 class AttributedStmt final 1847 private llvm::TrailingObjects<AttributedStmt, const Attr *> { 1853 AttributedStmt(SourceLocation Loc, ArrayRef<const Attr *> Attrs, in AttributedStmt() function 1861 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs) in AttributedStmt() function 1874 static AttributedStmt *Create(const ASTContext &C, SourceLocation Loc, 1878 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
|
| H A D | ASTNodeTraverser.h | 676 void VisitAttributedStmt(const AttributedStmt *Node) { in VisitAttributedStmt()
|
| H A D | RecursiveASTVisitor.h | 2273 DEF_TRAVERSE_STMT(AttributedStmt, {})
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 32 def AttributedStmt : StmtNode<ValueStmt>;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 412 EmitAttributedStmt(cast<AttributedStmt>(*S)); in EmitSimpleStmt() 472 } else if (const auto *AS = dyn_cast<AttributedStmt>(ExprResult)) { in EmitCompoundStmtWithoutScope() 660 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) { in EmitAttributedStmt()
|
| H A D | CoverageMappingGen.cpp | 974 if (LastStmt && HasTerminateStmt && !dyn_cast<AttributedStmt>(Child)) { in VisitStmt()
|
| H A D | CGStmtOpenMP.cpp | 2054 const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(SS); in EmitOMPInnerLoop()
|
| H A D | CodeGenFunction.h | 3179 void EmitAttributedStmt(const AttributedStmt &S);
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 197 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 2741 S = AttributedStmt::CreateEmpty( in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 125 void ASTStmtWriter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt()
|