Home
last modified time | relevance | path

Searched refs:UnrollCount (Results 1 – 16 of 16) sorted by relevance

/external/eigen/Eigen/src/Core/
DBooleanRedux.h17 template<typename Derived, int UnrollCount>
22 col = (UnrollCount-1) / Traits::RowsAtCompileTime,
23 row = (UnrollCount-1) % Traits::RowsAtCompileTime
28 return all_unroller<Derived, UnrollCount-1>::run(mat) && mat.coeff(row, col); in run()
44 template<typename Derived, int UnrollCount>
49 col = (UnrollCount-1) / Traits::RowsAtCompileTime,
50 row = (UnrollCount-1) % Traits::RowsAtCompileTime
55 return any_unroller<Derived, UnrollCount-1>::run(mat) || mat.coeff(row, col);
DVisitor.h17 template<typename Visitor, typename Derived, int UnrollCount>
21 col = (UnrollCount-1) / Derived::RowsAtCompileTime,
22 row = (UnrollCount-1) % Derived::RowsAtCompileTime
28 visitor_impl<Visitor, Derived, UnrollCount-1>::run(mat, visitor); in run()
DTriangularMatrix.h727 template<typename Kernel, unsigned int Mode, int UnrollCount, bool ClearOpposite> struct triangular…
852 template<typename Kernel, unsigned int Mode, int UnrollCount, bool SetOpposite>
860 col = (UnrollCount-1) / DstXprType::RowsAtCompileTime,
861 row = (UnrollCount-1) % DstXprType::RowsAtCompileTime
869 triangular_assignment_loop<Kernel, Mode, UnrollCount-1, SetOpposite>::run(kernel);
/external/clang/lib/CodeGen/
DCGLoopInfo.cpp26 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 && in createMetadata()
59 if (Attrs.UnrollCount > 0) { in createMetadata()
62 Type::getInt32Ty(Ctx), Attrs.UnrollCount))}; in createMetadata()
105 InterleaveCount(0), UnrollCount(0), in LoopAttributes()
112 UnrollCount = 0; in clear()
158 Option = LoopHintAttr::UnrollCount; in push()
188 case LoopHintAttr::UnrollCount: in push()
207 case LoopHintAttr::UnrollCount: in push()
223 case LoopHintAttr::UnrollCount: in push()
238 case LoopHintAttr::UnrollCount: in push()
[all …]
DCGLoopInfo.h60 unsigned UnrollCount; member
154 void setUnrollCount(unsigned C) { StagedAttrs.UnrollCount = C; } in setUnrollCount()
/external/llvm-project/llvm/tools/llvm-opt-report/
DOptReport.cpp102 int UnrollCount = 1; member
112 UnrollCount = std::max(UnrollCount, RHS.UnrollCount); in operator |=()
138 else if (UnrollCount < RHS.UnrollCount) in operator <()
199 int UnrollCount = 1; in readLocationInfo() local
207 Arg.Val.getAsInteger(10, UnrollCount); in readLocationInfo()
234 LI.UnrollCount = UnrollCount; in readLocationInfo()
294 unsigned UCDigits = llvm::utostr(MaxLI.UnrollCount).size(); in writeReport()
374 RS << LLI.UnrollCount; in writeReport()
/external/llvm-project/clang/lib/CodeGen/
DCGLoopInfo.cpp91 Attrs.UnrollCount != 0) in createPartialUnrollMetadata()
118 if (Attrs.UnrollCount > 0) { in createPartialUnrollMetadata()
121 llvm::Type::getInt32Ty(Ctx), Attrs.UnrollCount))}; in createPartialUnrollMetadata()
436 InterleaveCount(0), UnrollCount(0), UnrollAndJamCount(0), in LoopAttributes()
444 UnrollCount = 0; in clear()
469 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 && in LoopInfo()
524 AfterJam.UnrollCount = Attrs.UnrollCount; in finish()
604 Option = LoopHintAttr::UnrollCount; in push()
643 case LoopHintAttr::UnrollCount: in push()
670 case LoopHintAttr::UnrollCount: in push()
[all …]
DCGLoopInfo.h65 unsigned UnrollCount; member
265 void setUnrollCount(unsigned C) { StagedAttrs.UnrollCount = C; } in setUnrollCount()
/external/clang/lib/Sema/
DSemaStmtAttr.cpp90 Option = LoopHintAttr::UnrollCount; in handleLoopHintAttr()
109 .Case("unroll_count", LoopHintAttr::UnrollCount) in handleLoopHintAttr()
114 Option == LoopHintAttr::UnrollCount) { in handleLoopHintAttr()
180 case LoopHintAttr::UnrollCount: in CheckForIncompatibleAttributes()
/external/llvm-project/clang/lib/Sema/
DSemaStmtAttr.cpp113 SetHints(LoopHintAttr::UnrollCount, LoopHintAttr::Numeric); in handleLoopHintAttr()
136 .Case("unroll_count", LoopHintAttr::UnrollCount) in handleLoopHintAttr()
144 Option == LoopHintAttr::UnrollCount || in handleLoopHintAttr()
277 case LoopHintAttr::UnrollCount: in CheckForIncompatibleAttributes()
/external/llvm-project/clang/lib/AST/
DAttrImpl.cpp65 (option == UnrollCount ? getValueString(Policy) : ""); in getDiagnosticName()
/external/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp64 static cl::opt<unsigned> UnrollCount( variable
704 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0; in computeUnrollCount()
706 UP.Count = UnrollCount; in computeUnrollCount()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp103 static cl::opt<unsigned> UnrollCount( variable
747 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0; in computeUnrollCount()
749 UP.Count = UnrollCount; in computeUnrollCount()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp110 static cl::opt<unsigned> UnrollCount( variable
754 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0; in computeUnrollCount()
756 UP.Count = UnrollCount; in computeUnrollCount()
/external/clang/include/clang/Basic/
DAttr.td2223 "Unroll", "UnrollCount", "Distribute"]>,
2237 case UnrollCount: return "unroll_count";
2284 return "#pragma unroll" + (option == UnrollCount ? getValueString(Policy) : "");
/external/llvm-project/clang/include/clang/Basic/
DAttr.td3339 "Unroll", "UnrollCount", "UnrollAndJam", "UnrollAndJamCount",
3355 case UnrollCount: return "unroll_count";