Home
last modified time | relevance | path

Searched refs:IsParallel (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/polly/lib/CodeGen/
H A DIRBuilder.cpp104 void ScopAnnotator::pushLoop(Loop *L, bool IsParallel) { in pushLoop() argument
107 if (IsParallel) { in pushLoop()
117 void ScopAnnotator::popLoop(bool IsParallel) { in popLoop() argument
120 if (IsParallel) { in popLoop()
131 void ScopAnnotator::annotateLoopLatch(BranchInst *B, Loop *L, bool IsParallel, in annotateLoopLatch() argument
156 if (IsParallel) { in annotateLoopLatch()
H A DIslAst.cpp255 Payload->IsParallel = astScheduleDimIsParallel(isl::manage_copy(Build), in astBuildBeforeFor()
261 Payload->IsParallel; in astBuildBeforeFor()
287 Payload->IsInnermost && (BuildInfo->InSIMD || Payload->IsParallel); in astBuildAfterFor()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGLoopInfo.h37 explicit LoopAttributes(bool IsParallel = false);
41 bool IsParallel; member
224 return hasInfo() ? getInfo().getAttributes().IsParallel : false; in getCurLoopParallel()
232 void setParallel(bool Enable = true) { StagedAttrs.IsParallel = Enable; }
H A DCGLoopInfo.cpp435 assert(!!AccGroup == Attrs.IsParallel && in createMetadata()
437 if (Attrs.IsParallel) { in createMetadata()
447 LoopAttributes::LoopAttributes(bool IsParallel) in LoopAttributes() argument
448 : IsParallel(IsParallel), VectorizeEnable(LoopAttributes::Unspecified), in LoopAttributes()
458 IsParallel = false; in clear()
480 if (Attrs.IsParallel) { in LoopInfo()
486 if (!Attrs.IsParallel && Attrs.VectorizeWidth == 0 && in LoopInfo()
520 BeforeJam.IsParallel = AfterJam.IsParallel = Attrs.IsParallel; in finish()
/llvm-project-15.0.7/polly/lib/Analysis/
H A DPolyhedralInfo.cpp72 bool IsParallel; in checkParallel() local
94 IsParallel = D.isParallel(Schedule, Deps, MinDepDistPtr); in checkParallel()
96 return IsParallel; in checkParallel()
H A DDependenceInfo.cpp716 bool IsParallel; in isParallel() local
742 IsParallel = isl_set_is_empty(Distance); in isParallel()
743 if (IsParallel || !MinDistancePtr) { in isParallel()
745 return IsParallel; in isParallel()
/llvm-project-15.0.7/polly/include/polly/CodeGen/
H A DIRBuilder.h53 void pushLoop(llvm::Loop *L, bool IsParallel);
62 void annotateLoopLatch(llvm::BranchInst *B, llvm::Loop *L, bool IsParallel,
H A DIslAst.h80 bool IsParallel = false; member