Home
last modified time | relevance | path

Searched refs:IsTargetSync (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenMPKinds.h228 OMPInteropInfo(bool IsTarget = false, bool IsTargetSync = false)
229 : IsTarget(IsTarget), IsTargetSync(IsTargetSync) {} in IsTarget()
231 bool IsTargetSync; member
H A DAttr.td4116 if (I->IsTarget && I->IsTargetSync)
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp3570 bool IsTargetSync = false; in ParseOMPInteropInfo() local
3576 !IsTargetSync; in ParseOMPInteropInfo()
3586 if (IsTargetSync) in ParseOMPInteropInfo()
3588 IsTargetSync = true; in ParseOMPInteropInfo()
3627 if (!HasError && !IsTarget && !IsTargetSync) { in ParseOMPInteropInfo()
3633 if (Tok.isNot(tok::colon) && (IsTarget || IsTargetSync)) in ParseOMPInteropInfo()
3642 InteropInfo.IsTargetSync = IsTargetSync; in ParseOMPInteropInfo()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h7926 bool IsTargetSync = false; variable
7932 void setIsTargetSync(bool V) { IsTargetSync = V; } in setIsTargetSync()
7946 OMPInitClause(bool IsTarget, bool IsTargetSync, SourceLocation StartLoc, in OMPInitClause() argument
7951 VarLoc(VarLoc), IsTarget(IsTarget), IsTargetSync(IsTargetSync) {} in OMPInitClause()
7992 bool getIsTargetSync() const { return IsTargetSync; } in getIsTargetSync()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1655 InteropInfo.IsTarget, InteropInfo.IsTargetSync, StartLoc, LParenLoc, in Create()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp17842 bool IsTargetSync = false; in ActOnOpenMPInteropDirective() local
17844 if (IsTargetSync) in ActOnOpenMPInteropDirective()
17849 IsTargetSync = true; in ActOnOpenMPInteropDirective()
17854 if (DependClause && HasInitClause && !IsTargetSync) { in ActOnOpenMPInteropDirective()
H A DSemaTemplateInstantiateDecl.cpp538 AppendArgs.emplace_back(II.IsTarget, II.IsTargetSync); in instantiateOMPDeclareVariantAttr()