Home
last modified time | relevance | path

Searched refs:AllowPartial (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Scalar/
H A DLoopUnrollPass.h62 std::optional<bool> AllowPartial; member
88 AllowPartial = Partial; in setPartial()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp1387 std::optional<bool> AllowPartial = std::nullopt, in LoopUnroll() argument
1395 ProvidedThreshold(Threshold), ProvidedAllowPartial(AllowPartial), in LoopUnroll()
1457 int AllowPartial, int Runtime, int UpperBound, in INITIALIZE_PASS_DEPENDENCY()
1466 AllowPartial == -1 ? std::nullopt : std::optional<bool>(AllowPartial), in INITIALIZE_PASS_DEPENDENCY()
1628 /*Threshold*/ std::nullopt, UnrollOpts.AllowPartial, in run()
1655 if (UnrollOpts.AllowPartial != std::nullopt) in printPipeline()
1656 OS << (*UnrollOpts.AllowPartial ? "" : "no-") << "partial;"; in printPipeline()
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/
H A DScalar.h178 int Count = -1, int AllowPartial = -1,