Searched refs:InterleaveCount (Results 1 – 13 of 13) sorted by relevance
/external/clang/lib/CodeGen/ |
D | CGLoopInfo.cpp | 26 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 && in createMetadata() 51 if (Attrs.InterleaveCount > 0) { in createMetadata() 54 Type::getInt32Ty(Ctx), Attrs.InterleaveCount))}; in createMetadata() 105 InterleaveCount(0), UnrollCount(0), in LoopAttributes() 111 InterleaveCount = 0; in clear() 190 case LoopHintAttr::InterleaveCount: in push() 209 case LoopHintAttr::InterleaveCount: in push() 225 case LoopHintAttr::InterleaveCount: in push() 240 case LoopHintAttr::InterleaveCount: in push() 251 case LoopHintAttr::InterleaveCount: in push()
|
D | CGLoopInfo.h | 57 unsigned InterleaveCount; member 151 void setInterleaveCount(unsigned C) { StagedAttrs.InterleaveCount = C; } in setInterleaveCount()
|
/external/llvm-project/llvm/tools/llvm-opt-report/ |
D | OptReport.cpp | 101 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()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGLoopInfo.cpp | 220 Attrs.InterleaveCount != 0 || Attrs.VectorizeWidth != 0) in createLoopVectorizeMetadata() 278 if (Attrs.InterleaveCount > 0) { in createLoopVectorizeMetadata() 282 Attrs.InterleaveCount))}; in createLoopVectorizeMetadata() 436 InterleaveCount(0), UnrollCount(0), UnrollAndJamCount(0), in LoopAttributes() 443 InterleaveCount = 0; in clear() 469 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 && in LoopInfo() 504 BeforeJam.InterleaveCount = Attrs.InterleaveCount; in finish() 546 BeforeJam.InterleaveCount != 0 || BeforeJam.VectorizeWidth != 0) in finish() 646 case LoopHintAttr::InterleaveCount: in push() 673 case LoopHintAttr::InterleaveCount: in push() [all …]
|
D | CGLoopInfo.h | 62 unsigned InterleaveCount; member 262 void setInterleaveCount(unsigned C) { StagedAttrs.InterleaveCount = C; } in setInterleaveCount()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | WarnMissedTransforms.cpp | 52 Optional<int> InterleaveCount = in warnAboutLeftoverTransformations() local 63 else if (InterleaveCount.getValueOr(0) != 1) in warnAboutLeftoverTransformations()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | WarnMissedTransforms.cpp | 53 Optional<int> InterleaveCount = in warnAboutLeftoverTransformations() local 64 else if (InterleaveCount.getValueOr(0) != 1) in warnAboutLeftoverTransformations()
|
/external/clang/lib/Sema/ |
D | SemaStmtAttr.cpp | 107 .Case("interleave_count", LoopHintAttr::InterleaveCount) in handleLoopHintAttr() 113 Option == LoopHintAttr::InterleaveCount || in handleLoopHintAttr() 176 case LoopHintAttr::InterleaveCount: in CheckForIncompatibleAttributes()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaStmtAttr.cpp | 134 .Case("interleave_count", LoopHintAttr::InterleaveCount) in handleLoopHintAttr() 143 Option == LoopHintAttr::InterleaveCount || in handleLoopHintAttr() 273 case LoopHintAttr::InterleaveCount: in CheckForIncompatibleAttributes()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | LoopUtils.cpp | 439 Optional<int> InterleaveCount = in hasVectorizeTransformation() local 444 if (Enable == true && VectorizeWidth == 1 && InterleaveCount == 1) in hasVectorizeTransformation() 453 if (VectorizeWidth == 1 && InterleaveCount == 1) in hasVectorizeTransformation() 456 if (VectorizeWidth > 1 || InterleaveCount > 1) in hasVectorizeTransformation()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | LoopUtils.cpp | 470 Optional<int> InterleaveCount = in hasVectorizeTransformation() local 476 InterleaveCount == 1) in hasVectorizeTransformation() 485 if ((VectorizeWidth && VectorizeWidth->isScalar()) && InterleaveCount == 1) in hasVectorizeTransformation() 488 if ((VectorizeWidth && VectorizeWidth->isVector()) || InterleaveCount > 1) in hasVectorizeTransformation()
|
/external/clang/include/clang/Basic/ |
D | Attr.td | 2222 ["Vectorize", "VectorizeWidth", "Interleave", "InterleaveCount", 2235 case InterleaveCount: return "interleave_count";
|
/external/llvm-project/clang/include/clang/Basic/ |
D | Attr.td | 3338 ["Vectorize", "VectorizeWidth", "Interleave", "InterleaveCount", 3353 case InterleaveCount: return "interleave_count";
|