minor cleanups

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169048 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nadav Rotem 2012-11-30 22:37:11 +00:00
parent 999d8bc38e
commit d6964741f5

View File

@ -712,7 +712,7 @@ SingleBlockLoopVectorizer::addRuntimeCheck(LoopVectorizationLegality *Legal,
const SCEV *Sc = SE->getSCEV(Ptr); const SCEV *Sc = SE->getSCEV(Ptr);
if (SE->isLoopInvariant(Sc, OrigLoop)) { if (SE->isLoopInvariant(Sc, OrigLoop)) {
DEBUG(dbgs() << "LV1: Adding RT check for a loop invariant ptr:" << DEBUG(dbgs() << "LV: Adding RT check for a loop invariant ptr:" <<
*Ptr <<"\n"); *Ptr <<"\n");
Starts.push_back(Ptr); Starts.push_back(Ptr);
Ends.push_back(Ptr); Ends.push_back(Ptr);
@ -1423,11 +1423,7 @@ void SingleBlockLoopVectorizer::updateAnalysis() {
} }
bool LoopVectorizationLegality::canVectorize() { bool LoopVectorizationLegality::canVectorize() {
if (!TheLoop->getLoopPreheader()) { assert(TheLoop->getLoopPreheader() && "No preheader!!");
assert(false && "No preheader!!");
DEBUG(dbgs() << "LV: Loop not normalized." << "\n");
return false;
}
// We can only vectorize single basic block loops. // We can only vectorize single basic block loops.
unsigned NumBlocks = TheLoop->getNumBlocks(); unsigned NumBlocks = TheLoop->getNumBlocks();
@ -2008,9 +2004,8 @@ LoopVectorizationCostModel::getInstructionCost(Instruction *I, unsigned VF) {
case Instruction::AShr: case Instruction::AShr:
case Instruction::And: case Instruction::And:
case Instruction::Or: case Instruction::Or:
case Instruction::Xor: { case Instruction::Xor:
return VTTI->getArithmeticInstrCost(I->getOpcode(), VectorTy); return VTTI->getArithmeticInstrCost(I->getOpcode(), VectorTy);
}
case Instruction::Select: { case Instruction::Select: {
SelectInst *SI = cast<SelectInst>(I); SelectInst *SI = cast<SelectInst>(I);
const SCEV *CondSCEV = SE->getSCEV(SI->getCondition()); const SCEV *CondSCEV = SE->getSCEV(SI->getCondition());