Home
last modified time | relevance | path

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

/llvm-project-15.0.7/openmp/libomptarget/DeviceRTL/include/
H A DInterface.h291 void __kmpc_push_proc_bind(IdentTy *Loc, uint32_t TId, int ProcBind);
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.h190 llvm::omp::ProcBindKind ProcBind,
H A DCGOpenMPRuntime.h1275 llvm::omp::ProcBindKind ProcBind,
2168 llvm::omp::ProcBindKind ProcBind,
H A DCGOpenMPRuntimeGPU.cpp1220 ProcBindKind ProcBind, in emitProcBindClause() argument
1226 CGOpenMPRuntime::emitProcBindClause(CGF, ProcBind, Loc); in emitProcBindClause()
H A DCGStmtOpenMP.cpp1729 ProcBindKind ProcBind = OMP_PROC_BIND_default; in EmitOMPParallelDirective() local
1731 ProcBind = ProcBindClause->getProcBindKind(); in EmitOMPParallelDirective()
1769 IfCond, NumThreads, ProcBind, S.hasCancel())); in EmitOMPParallelDirective()
H A DCGOpenMPRuntime.cpp2900 ProcBindKind ProcBind, in emitProcBindClause() argument
2904 assert(ProcBind != OMP_PROC_BIND_unknown && "Unsupported proc_bind value."); in emitProcBindClause()
2908 llvm::ConstantInt::get(CGM.IntTy, unsigned(ProcBind), /*isSigned=*/true)}; in emitProcBindClause()
12895 ProcBindKind ProcBind, in emitProcBindClause() argument
/llvm-project-15.0.7/flang/lib/Lower/
H A DOpenMP.cpp580 const Fortran::parser::OmpClause::ProcBind *procBindClause) { in genProcBindKindAttr()
644 std::get_if<Fortran::parser::OmpClause::ProcBind>( in createCombinedParallelOp()
694 std::get_if<Fortran::parser::OmpClause::ProcBind>( in genOMP()
/llvm-project-15.0.7/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h256 Value *NumThreads, omp::ProcBindKind ProcBind,
/llvm-project-15.0.7/flang/lib/Parser/
H A Dopenmp-parsers.cpp245 "PROC_BIND" >> construct<OmpClause>(construct<OmpClause::ProcBind>(
/llvm-project-15.0.7/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp869 omp::ProcBindKind ProcBind, bool IsCancellable) { in createParallel() argument
889 if (ProcBind != OMP_PROC_BIND_default) { in createParallel()
893 ConstantInt::get(Int32, unsigned(ProcBind), /*isSigned=*/true)}; in createParallel()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-omp-structure.cpp1839 CHECK_SIMPLE_CLAUSE(ProcBind, OMPC_proc_bind) in CHECK_SIMPLE_CLAUSE()