Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-opt-report/
H A DOptReport.cpp103 int InterleaveCount = 1; member
113 InterleaveCount = std::max(InterleaveCount, RHS.InterleaveCount); in operator |=()
136 else if (InterleaveCount < RHS.InterleaveCount) in operator <()
138 else if (InterleaveCount > RHS.InterleaveCount) in operator <()
200 int InterleaveCount = 1; in readLocationInfo() local
207 Arg.Val.getAsInteger(10, InterleaveCount); in readLocationInfo()
242 LI.InterleaveCount = InterleaveCount; in readLocationInfo()
295 unsigned ICDigits = llvm::utostr(MaxLI.InterleaveCount).size(); in writeReport()
389 RS << LLI.VectorizationFactor << "," << LLI.InterleaveCount; in writeReport()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGLoopInfo.cpp221 Attrs.InterleaveCount != 0 || Attrs.VectorizeWidth != 0 || in createLoopVectorizeMetadata()
288 if (Attrs.InterleaveCount > 0) { in createLoopVectorizeMetadata()
292 Attrs.InterleaveCount))}; in createLoopVectorizeMetadata()
453 VectorizeScalable(LoopAttributes::Unspecified), InterleaveCount(0), in LoopAttributes()
462 InterleaveCount = 0; in clear()
489 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 && in LoopInfo()
525 BeforeJam.InterleaveCount = Attrs.InterleaveCount; in finish()
567 BeforeJam.InterleaveCount != 0 || BeforeJam.VectorizeWidth != 0 || in finish()
669 case LoopHintAttr::InterleaveCount: in push()
696 case LoopHintAttr::InterleaveCount: in push()
[all …]
H A DCGLoopInfo.h65 unsigned InterleaveCount; member
269 void setInterleaveCount(unsigned C) { StagedAttrs.InterleaveCount = C; } in setInterleaveCount()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DWarnMissedTransforms.cpp53 std::optional<int> InterleaveCount = in warnAboutLeftoverTransformations() local
64 else if (InterleaveCount.value_or(0) != 1) in warnAboutLeftoverTransformations()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaStmtAttr.cpp129 .Case("interleave_count", LoopHintAttr::InterleaveCount) in handleLoopHintAttr()
146 } else if (Option == LoopHintAttr::InterleaveCount || in handleLoopHintAttr()
353 case LoopHintAttr::InterleaveCount: in CheckForIncompatibleAttributes()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp400 std::optional<int> InterleaveCount = in hasVectorizeTransformation() local
406 InterleaveCount == 1) in hasVectorizeTransformation()
415 if ((VectorizeWidth && VectorizeWidth->isScalar()) && InterleaveCount == 1) in hasVectorizeTransformation()
418 if ((VectorizeWidth && VectorizeWidth->isVector()) || InterleaveCount > 1) in hasVectorizeTransformation()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td3664 ["Vectorize", "VectorizeWidth", "Interleave", "InterleaveCount",
3681 case InterleaveCount: return "interleave_count";