Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGLoopInfo.cpp22 if (!Attrs.IsParallel && Attrs.VectorizerWidth == 0 && in createMetadata()
65 LoopAttributes::LoopAttributes(bool IsParallel) in LoopAttributes() argument
66 : IsParallel(IsParallel), VectorizerEnable(LoopAttributes::VecUnspecified), in LoopAttributes()
70 IsParallel = false; in clear()
109 if (L.getAttributes().IsParallel && I->mayReadOrWriteMemory()) in InsertHelper()
H A DCGLoopInfo.h34 explicit LoopAttributes(bool IsParallel = false);
38 bool IsParallel; member
99 return hasInfo() ? getInfo().getAttributes().IsParallel : false; in getCurLoopParallel()
107 void setParallel(bool Enable = true) { StagedAttrs.IsParallel = Enable; }