Home
last modified time | relevance | path

Searched refs:AttributedStmt (Results 1 – 21 of 21) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmt.cpp147 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 DStmtProfile.cpp258 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) { in VisitAttributedStmt()
H A DStmtPrinter.cpp229 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { in VisitAttributedStmt()
H A DASTImporter.cpp548 ExpectedStmt VisitAttributedStmt(AttributedStmt *S);
6182 ExpectedStmt ASTNodeImporter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt()
6194 return AttributedStmt::Create( in VisitAttributedStmt()
H A DExprConstant.cpp5398 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(), in EvaluateStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DJumpDiagnostics.cpp76 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 DAnalysisBasedWarnings.cpp1052 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 DSemaStmt.cpp579 return AttributedStmt::Create(Context, AttrsLoc, Attrs, SubStmt); in BuildAttributedStmt()
H A DTreeTransform.h7314 TreeTransform<Derived>::TransformAttributedStmt(AttributedStmt *S, in TransformAttributedStmt()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h146 friend class AttributedStmt; variable
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 DStmtDataCollectors.td236 class AttributedStmt {
H A DASTNodeTraverser.h652 void VisitAttributedStmt(const AttributedStmt *Node) { in VisitAttributedStmt()
H A DRecursiveASTVisitor.h2259 DEF_TRAVERSE_STMT(AttributedStmt, {})
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td32 def AttributedStmt : StmtNode<ValueStmt>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp409 EmitAttributedStmt(cast<AttributedStmt>(*S)); in EmitSimpleStmt()
469 } else if (const auto *AS = dyn_cast<AttributedStmt>(ExprResult)) { in EmitCompoundStmtWithoutScope()
657 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) { in EmitAttributedStmt()
H A DCoverageMappingGen.cpp974 if (LastStmt && HasTerminateStmt && !dyn_cast<AttributedStmt>(Child)) { in VisitStmt()
H A DCGStmtOpenMP.cpp2046 const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(SS); in EmitOMPInnerLoop()
H A DCodeGenFunction.h3179 void EmitAttributedStmt(const AttributedStmt &S);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp197 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt()
2727 S = AttributedStmt::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp125 void ASTStmtWriter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt()
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DInternalsManual.rst3091 The ``clang::AttributedStmt`` object can be queried for the presence or absence