Home
last modified time | relevance | path

Searched refs:VectorizeWidth (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGLoopInfo.cpp220 Attrs.InterleaveCount != 0 || Attrs.VectorizeWidth != 0 || in createLoopVectorizeMetadata()
268 if (Attrs.VectorizeWidth > 0) { in createLoopVectorizeMetadata()
272 Attrs.VectorizeWidth))}; in createLoopVectorizeMetadata()
304 (IsVectorPredicateEnabled && Attrs.VectorizeWidth != 1) || in createLoopVectorizeMetadata()
305 Attrs.VectorizeWidth > 1 || in createLoopVectorizeMetadata()
308 Attrs.VectorizeWidth != 1)) { in createLoopVectorizeMetadata()
451 VectorizePredicateEnable(LoopAttributes::Unspecified), VectorizeWidth(0), in LoopAttributes()
459 VectorizeWidth = 0; in clear()
486 if (!Attrs.IsParallel && Attrs.VectorizeWidth == 0 && in LoopInfo()
522 BeforeJam.VectorizeWidth = Attrs.VectorizeWidth; in finish()
[all …]
H A DCGLoopInfo.h59 unsigned VectorizeWidth; member
262 void setVectorizeWidth(unsigned W) { StagedAttrs.VectorizeWidth = W; } in setVectorizeWidth()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DWarnMissedTransforms.cpp51 Optional<ElementCount> VectorizeWidth = in warnAboutLeftoverTransformations() local
56 if (!VectorizeWidth || VectorizeWidth->isVector()) in warnAboutLeftoverTransformations()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmtAttr.cpp125 .Case("vectorize_width", LoopHintAttr::VectorizeWidth) in handleLoopHintAttr()
136 if (Option == LoopHintAttr::VectorizeWidth) { in handleLoopHintAttr()
287 case LoopHintAttr::VectorizeWidth: in CheckForIncompatibleAttributes()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp467 Optional<ElementCount> VectorizeWidth = in hasVectorizeTransformation() local
474 if (Enable == true && VectorizeWidth && VectorizeWidth->isScalar() && in hasVectorizeTransformation()
484 if ((VectorizeWidth && VectorizeWidth->isScalar()) && InterleaveCount == 1) in hasVectorizeTransformation()
487 if ((VectorizeWidth && VectorizeWidth->isVector()) || InterleaveCount > 1) in hasVectorizeTransformation()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DAttr.td3484 ["Vectorize", "VectorizeWidth", "Interleave", "InterleaveCount",
3499 case VectorizeWidth: return "vectorize_width";