From: Evan Cheng Date: Wed, 19 Mar 2008 22:02:26 +0000 (+0000) Subject: Remove dead options. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=55e641b766a18878b51551d626d5a566102e487e;p=oota-llvm.git Remove dead options. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48556 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/CodeGenPrepare.cpp b/lib/Transforms/Scalar/CodeGenPrepare.cpp index d8b82b374dc..8762d3dd1bc 100644 --- a/lib/Transforms/Scalar/CodeGenPrepare.cpp +++ b/lib/Transforms/Scalar/CodeGenPrepare.cpp @@ -30,17 +30,11 @@ #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallSet.h" #include "llvm/Support/CallSite.h" -#include "llvm/Support/CommandLine.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/Debug.h" #include "llvm/Support/GetElementPtrTypeIterator.h" using namespace llvm; -namespace { - cl::opt OptExtUses("optimize-ext-uses", - cl::init(true), cl::Hidden); -} - namespace { class VISIBILITY_HIDDEN CodeGenPrepare : public FunctionPass { /// TLI - Keep a pointer of a TargetLowering to consult for determining @@ -1098,7 +1092,7 @@ bool CodeGenPrepare::OptimizeBlock(BasicBlock &BB) { MadeChange |= Change; } - if (OptExtUses && !Change && (isa(I) || isa(I))) + if (!Change && (isa(I) || isa(I))) MadeChange |= OptimizeExtUses(I); } else if (CmpInst *CI = dyn_cast(I)) { MadeChange |= OptimizeCmpExpression(CI); diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index 5d80b75a274..c6f02e8978c 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -34,7 +34,6 @@ #include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/Statistic.h" #include "llvm/Support/Debug.h" -#include "llvm/Support/CommandLine.h" #include "llvm/Support/Compiler.h" #include "llvm/Target/TargetLowering.h" #include @@ -46,12 +45,6 @@ STATISTIC(NumInserted, "Number of PHIs inserted"); STATISTIC(NumVariable, "Number of PHIs with variable strides"); STATISTIC(NumEliminated , "Number of strides eliminated"); -namespace { - // Hidden options for help debugging. - cl::opt AllowPHIIVReuse("lsr-allow-phi-iv-reuse", - cl::init(true), cl::Hidden); -} - namespace { struct BasedUser; @@ -997,11 +990,8 @@ bool LoopStrengthReduce::ValidStride(bool HasBaseReg, AccessTy = SI->getOperand(0)->getType(); else if (LoadInst *LI = dyn_cast(UsersToProcess[i].Inst)) AccessTy = LI->getType(); - else if (isa(UsersToProcess[i].Inst)) { - if (AllowPHIIVReuse) - continue; - return false; - } + else if (isa(UsersToProcess[i].Inst)) + continue; TargetLowering::AddrMode AM; if (SCEVConstant *SC = dyn_cast(UsersToProcess[i].Imm)) @@ -1189,7 +1179,7 @@ SCEVHandle LoopStrengthReduce::CollectIVUsers(const SCEVHandle &Stride, } // If this use isn't an address, then not all uses are addresses. - if (!isAddress && !(AllowPHIIVReuse && isPHI)) + if (!isAddress && !isPHI) AllUsesAreAddresses = false; MoveImmediateValues(TLI, UsersToProcess[i].Inst, UsersToProcess[i].Base,