Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGLoopInfo.cpp269 if (Attrs.VectorizeWidth > 0) { in createLoopVectorizeMetadata()
306 Attrs.VectorizeWidth > 1 || in createLoopVectorizeMetadata()
309 Attrs.VectorizeWidth != 1)) { in createLoopVectorizeMetadata()
468 VectorizeWidth = 0; in clear()
532 BeforeJam.VectorizeWidth = Attrs.VectorizeWidth; in finish()
677 case LoopHintAttr::VectorizeWidth: in push()
704 case LoopHintAttr::VectorizeWidth: in push()
725 case LoopHintAttr::VectorizeWidth: in push()
746 case LoopHintAttr::VectorizeWidth: in push()
759 case LoopHintAttr::VectorizeWidth: in push()
[all …]
H A DCGLoopInfo.h59 unsigned VectorizeWidth; member
265 void setVectorizeWidth(unsigned W) { StagedAttrs.VectorizeWidth = W; } in setVectorizeWidth()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DWarnMissedTransforms.cpp50 std::optional<ElementCount> VectorizeWidth = in warnAboutLeftoverTransformations() local
55 if (!VectorizeWidth || VectorizeWidth->isVector()) in warnAboutLeftoverTransformations()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp398 std::optional<ElementCount> VectorizeWidth = in hasVectorizeTransformation() local
405 if (Enable == true && VectorizeWidth && VectorizeWidth->isScalar() && in hasVectorizeTransformation()
415 if ((VectorizeWidth && VectorizeWidth->isScalar()) && InterleaveCount == 1) in hasVectorizeTransformation()
418 if ((VectorizeWidth && VectorizeWidth->isVector()) || InterleaveCount > 1) in hasVectorizeTransformation()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAttr.cpp131 .Case("vectorize_width", LoopHintAttr::VectorizeWidth) in handleLoopHintAttr()
142 if (Option == LoopHintAttr::VectorizeWidth) { in handleLoopHintAttr()
469 case LoopHintAttr::VectorizeWidth: in CheckForIncompatibleAttributes()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp3728 ConstantInt *VectorizeWidth = Simdlen == nullptr ? Safelen : Simdlen; in applySimd() local
3731 ConstantAsMetadata::get(VectorizeWidth)})); in applySimd()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td3938 ["Vectorize", "VectorizeWidth", "Interleave", "InterleaveCount",
3953 case VectorizeWidth: return "vectorize_width";