Home
last modified time | relevance | path

Searched refs:OpenACCComputeConstruct (Results 1 – 13 of 13) sorted by relevance

/src/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenACC.cpp19 OpenACCComputeConstruct *
20 OpenACCComputeConstruct::CreateEmpty(const ASTContext &C, unsigned NumClauses) { in CreateEmpty()
22 OpenACCComputeConstruct::totalSizeToAlloc<const OpenACCClause *>( in CreateEmpty()
24 auto *Inst = new (Mem) OpenACCComputeConstruct(NumClauses); in CreateEmpty()
28 OpenACCComputeConstruct *OpenACCComputeConstruct::Create( in Create()
34 OpenACCComputeConstruct::totalSizeToAlloc<const OpenACCClause *>( in Create()
36 auto *Inst = new (Mem) OpenACCComputeConstruct(K, BeginLoc, DirLoc, EndLoc, in Create()
46 void OpenACCComputeConstruct::findAndSetChildLoops() { in findAndSetChildLoops()
48 OpenACCComputeConstruct *Construct = nullptr; in findAndSetChildLoops()
50 LoopConstructFinder(OpenACCComputeConstruct *Construct) in findAndSetChildLoops()
[all …]
H A DStmtProfile.cpp2618 const OpenACCComputeConstruct *S) { in VisitOpenACCComputeConstruct()
H A DStmtPrinter.cpp1156 void StmtPrinter::VisitOpenACCComputeConstruct(OpenACCComputeConstruct *S) { in VisitOpenACCComputeConstruct()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenACC.h129 class OpenACCComputeConstruct final
131 public llvm::TrailingObjects<OpenACCComputeConstruct,
136 OpenACCComputeConstruct(unsigned NumClauses) in OpenACCComputeConstruct() function
151 OpenACCComputeConstruct(OpenACCDirectiveKind K, SourceLocation Start, in OpenACCComputeConstruct() function
181 static OpenACCComputeConstruct *CreateEmpty(const ASTContext &C,
183 static OpenACCComputeConstruct *
191 return const_cast<OpenACCComputeConstruct *>(this)->getStructuredBlock(); in getStructuredBlock()
206 const OpenACCComputeConstruct *ParentComputeConstruct = nullptr;
211 friend class OpenACCComputeConstruct; variable
220 void setParentComputeConstruct(OpenACCComputeConstruct *CC) { in setParentComputeConstruct()
[all …]
H A DRecursiveASTVisitor.h4012 DEF_TRAVERSE_STMT(OpenACCComputeConstruct,
/src/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp611 OpenACCComputeConstruct *CC = cast<OpenACCComputeConstruct>(S); in BuildScopeInformation()
H A DSemaOpenACC.cpp1646 auto *ComputeConstruct = OpenACCComputeConstruct::Create( in ActOnEndStmtDirective()
H A DTreeTransform.h11656 OpenACCComputeConstruct *C) { in TransformOpenACCComputeConstruct()
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td307 def OpenACCComputeConstruct : StmtNode<OpenACCAssociatedStmtConstruct>;
/src/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2825 void ASTStmtReader::VisitOpenACCComputeConstruct(OpenACCComputeConstruct *S) { in VisitOpenACCComputeConstruct()
4276 S = OpenACCComputeConstruct::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2895 void ASTStmtWriter::VisitOpenACCComputeConstruct(OpenACCComputeConstruct *S) { in VisitOpenACCComputeConstruct()
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp450 EmitOpenACCComputeConstruct(cast<OpenACCComputeConstruct>(*S)); in EmitStmt()
H A DCodeGenFunction.h4073 void EmitOpenACCComputeConstruct(const OpenACCComputeConstruct &S) {