Home
last modified time | relevance | path

Searched refs:OMPCopyinClause (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/
H A DOpenMPClause.cpp643 void OMPCopyinClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
650 void OMPCopyinClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
657 void OMPCopyinClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
665 OMPCopyinClause *OMPCopyinClause::Create( in Create()
670 OMPCopyinClause *Clause = in Create()
671 new (Mem) OMPCopyinClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
679 OMPCopyinClause *OMPCopyinClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty()
681 return new (Mem) OMPCopyinClause(N); in CreateEmpty()
2151 void OMPClausePrinter::VisitOMPCopyinClause(OMPCopyinClause *Node) { in VisitOMPCopyinClause()
H A DStmtProfile.cpp763 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DOpenMPClause.h4237 class OMPCopyinClause final
4238 : public OMPVarListClause<OMPCopyinClause>,
4239 private llvm::TrailingObjects<OMPCopyinClause, Expr *> {
4263 OMPCopyinClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPCopyinClause() function
4265 : OMPVarListClause<OMPCopyinClause>(llvm::omp::OMPC_copyin, StartLoc, in OMPCopyinClause()
4271 explicit OMPCopyinClause(unsigned N) in OMPCopyinClause() function
4272 : OMPVarListClause<OMPCopyinClause>(llvm::omp::OMPC_copyin, in OMPCopyinClause()
4338 static OMPCopyinClause *
4347 static OMPCopyinClause *CreateEmpty(const ASTContext &C, unsigned N);
4390 auto Children = const_cast<OMPCopyinClause *>(this)->children(); in children()
H A DRecursiveASTVisitor.h3544 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) {
/llvm-project-15.0.7/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td98 let clangClass = "OMPCopyinClause";
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReader.cpp11653 C = OMPCopyinClause::CreateEmpty(Context, Record.readInt()); in readClause()
12263 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
H A DASTWriter.cpp6554 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2608 void OMPClauseEnqueue::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp977 for (const auto *C : D.getClausesOfKind<OMPCopyinClause>()) { in EmitOMPCopyinClause()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h10027 TreeTransform<Derived>::TransformOMPCopyinClause(OMPCopyinClause *C) { in TransformOMPCopyinClause()
H A DSemaOpenMP.cpp20036 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars, in ActOnOpenMPCopyinClause()