diff options
author | Arnold Schwaighofer <aschwaighofer@apple.com> | 2013-06-28 17:14:48 +0000 |
---|---|---|
committer | Arnold Schwaighofer <aschwaighofer@apple.com> | 2013-06-28 17:14:48 +0000 |
commit | 0ee20c9d801f8bec14460d6e3fb21d43dfa3918c (patch) | |
tree | b4504fc555c6c1ad6956854f7af37a97398b5b67 | |
parent | e528a2c21a63a06c5e3cdf929000d77c59ac0937 (diff) | |
download | external_llvm-0ee20c9d801f8bec14460d6e3fb21d43dfa3918c.zip external_llvm-0ee20c9d801f8bec14460d6e3fb21d43dfa3918c.tar.gz external_llvm-0ee20c9d801f8bec14460d6e3fb21d43dfa3918c.tar.bz2 |
LoopVectorize: Pull dyn_cast into setDebugLocFromInst
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185168 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Vectorize/LoopVectorize.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp index 5b3bfa1..d4be08d 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -347,8 +347,8 @@ static Instruction *getDebugLocFromInstOrOperands(Instruction *I) { /// \brief Set the debug location in the builder using the debug location in the /// instruction. -static void setDebugLocFromInst(IRBuilder<> &B, const Instruction *Inst) { - if (Inst) +static void setDebugLocFromInst(IRBuilder<> &B, const Value *Ptr) { + if (const Instruction *Inst = dyn_cast_or_null<Instruction>(Ptr)) B.SetCurrentDebugLocation(Inst->getDebugLoc()); else B.SetCurrentDebugLocation(DebugLoc()); @@ -1267,7 +1267,7 @@ void InnerLoopVectorizer::vectorizeMemoryInstruction(Instruction *Instr, } else { // Use the induction element ptr. assert(isa<PHINode>(Ptr) && "Invalid induction ptr"); - setDebugLocFromInst(Builder, cast<Instruction>(Ptr)); + setDebugLocFromInst(Builder, Ptr); VectorParts &PtrVal = getVectorValue(Ptr); Ptr = Builder.CreateExtractElement(PtrVal[0], Zero); } @@ -2046,8 +2046,7 @@ InnerLoopVectorizer::vectorizeLoop(LoopVectorizationLegality *Legal) { LoopVectorizationLegality::ReductionDescriptor RdxDesc = (*Legal->getReductionVars())[RdxPhi]; - setDebugLocFromInst(Builder, - dyn_cast<Instruction>((Value*)RdxDesc.StartValue)); + setDebugLocFromInst(Builder, RdxDesc.StartValue); // We need to generate a reduction vector from the incoming scalar. // To do so, we need to generate the 'identity' vector and overide @@ -2122,7 +2121,7 @@ InnerLoopVectorizer::vectorizeLoop(LoopVectorizationLegality *Legal) { // Reduce all of the unrolled parts into a single vector. Value *ReducedPartRdx = RdxParts[0]; unsigned Op = getReductionBinOp(RdxDesc.Kind); - setDebugLocFromInst(Builder, dyn_cast<Instruction>(ReducedPartRdx)); + setDebugLocFromInst(Builder, ReducedPartRdx); for (unsigned part = 1; part < UF; ++part) { if (Op != Instruction::ICmp && Op != Instruction::FCmp) ReducedPartRdx = Builder.CreateBinOp((Instruction::BinaryOps)Op, |