diff options
author | Hans Wennborg <hans@hanshq.net> | 2016-05-23 23:42:35 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2016-05-23 23:42:35 +0000 |
commit | 6951028b6189e4972d9afdca56fc0de01b6b2582 (patch) | |
tree | c6e94660b88be81cc02d04bc7f98043b43455380 /llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp | |
parent | aaad57440df03eb0375eb2b2125761357fdb0c87 (diff) | |
download | bcm5719-llvm-6951028b6189e4972d9afdca56fc0de01b6b2582.tar.gz bcm5719-llvm-6951028b6189e4972d9afdca56fc0de01b6b2582.zip |
Revert r270478 "[LoopUnroll] Enable advanced unrolling analysis by default."
This caused PR27847.
llvm-svn: 270512
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp b/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp index 8e65af9559e..d167c44c19c 100644 --- a/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp +++ b/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp @@ -45,18 +45,18 @@ static cl::opt<unsigned> cl::desc("The baseline cost threshold for loop unrolling")); static cl::opt<unsigned> UnrollPercentDynamicCostSavedThreshold( - "unroll-percent-dynamic-cost-saved-threshold", cl::init(50), cl::Hidden, + "unroll-percent-dynamic-cost-saved-threshold", cl::Hidden, cl::desc("The percentage of estimated dynamic cost which must be saved by " "unrolling to allow unrolling up to the max threshold.")); static cl::opt<unsigned> UnrollDynamicCostSavingsDiscount( - "unroll-dynamic-cost-savings-discount", cl::init(100), cl::Hidden, + "unroll-dynamic-cost-savings-discount", cl::Hidden, cl::desc("This is the amount discounted from the total unroll cost when " "the unrolled form has a high dynamic cost savings (triggered by " "the '-unroll-perecent-dynamic-cost-saved-threshold' flag).")); static cl::opt<unsigned> UnrollMaxIterationsCountToAnalyze( - "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden, + "unroll-max-iteration-count-to-analyze", cl::init(0), cl::Hidden, cl::desc("Don't allow loop unrolling to simulate more than this number of" "iterations when checking full unroll profitability")); |