Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-opt-report/
H A DOptReport.cpp101 int InterleaveCount = 1; member
111 InterleaveCount = std::max(InterleaveCount, RHS.InterleaveCount); in operator |=()
134 else if (InterleaveCount < RHS.InterleaveCount) in operator <()
136 else if (InterleaveCount > RHS.InterleaveCount) in operator <()
198 int InterleaveCount = 1; in readLocationInfo() local
205 Arg.Val.getAsInteger(10, InterleaveCount); in readLocationInfo()
240 LI.InterleaveCount = InterleaveCount; in readLocationInfo()
293 unsigned ICDigits = llvm::utostr(MaxLI.InterleaveCount).size(); in writeReport()
387 RS << LLI.VectorizationFactor << "," << LLI.InterleaveCount; in writeReport()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGLoopInfo.cpp220 Attrs.InterleaveCount != 0 || Attrs.VectorizeWidth != 0 || in createLoopVectorizeMetadata()
287 if (Attrs.InterleaveCount > 0) { in createLoopVectorizeMetadata()
291 Attrs.InterleaveCount))}; in createLoopVectorizeMetadata()
452 VectorizeScalable(LoopAttributes::Unspecified), InterleaveCount(0), in LoopAttributes()
461 InterleaveCount = 0; in clear()
488 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 && in LoopInfo()
524 BeforeJam.InterleaveCount = Attrs.InterleaveCount; in finish()
566 BeforeJam.InterleaveCount != 0 || BeforeJam.VectorizeWidth != 0 || in finish()
668 case LoopHintAttr::InterleaveCount: in push()
695 case LoopHintAttr::InterleaveCount: in push()
[all …]
H A DCGLoopInfo.h65 unsigned InterleaveCount; member
269 void setInterleaveCount(unsigned C) { StagedAttrs.InterleaveCount = C; } in setInterleaveCount()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DWarnMissedTransforms.cpp53 Optional<int> InterleaveCount = in warnAboutLeftoverTransformations() local
64 else if (InterleaveCount.getValueOr(0) != 1) in warnAboutLeftoverTransformations()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmtAttr.cpp128 .Case("interleave_count", LoopHintAttr::InterleaveCount) in handleLoopHintAttr()
145 } else if (Option == LoopHintAttr::InterleaveCount || in handleLoopHintAttr()
291 case LoopHintAttr::InterleaveCount: in CheckForIncompatibleAttributes()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp469 Optional<int> InterleaveCount = in hasVectorizeTransformation() local
475 InterleaveCount == 1) 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",
3501 case InterleaveCount: return "interleave_count";