Home | History | Annotate | Download | only in Scalar

Lines Matching defs:Old

587   // FIXME: What about debug intrinsics? This matches old behavior, but
1531 /// \brief Test whether we can convert a value from the old to the new type.
1874 static Value *insertInteger(const DataLayout &DL, IRBuilderTy &IRB, Value *Old,
1876 IntegerType *IntTy = cast<IntegerType>(Old->getType());
1897 Old = IRB.CreateAnd(Old, Mask, Name + ".mask");
1898 DEBUG(dbgs() << " masked: " << *Old << "\n");
1899 V = IRB.CreateOr(Old, V, Name + ".insert");
1933 static Value *insertVector(IRBuilderTy &IRB, Value *Old, Value *V,
1935 VectorType *VecTy = cast<VectorType>(Old->getType());
1941 V = IRB.CreateInsertElement(Old, V, IRB.getInt32(BeginIndex),
1975 V = IRB.CreateSelect(ConstantVector::get(Mask), V, Old, Name + "blend");
2272 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2274 V = insertVector(IRB, Old, V, BeginIndex, "vec");
2288 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2290 Old = convertValue(DL, IRB, Old, IntTy);
2293 V = insertInteger(DL, IRB, Old, SI.getValueOperand(), Offset,
2452 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2454 V = insertVector(IRB, Old, Splat, BeginIndex, "vec");
2465 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2467 Old = convertValue(DL, IRB, Old, IntTy);
2469 V = insertInteger(DL, IRB, Old, V, Offset, "insert");
2647 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2649 Src = insertVector(IRB, Old, Src, BeginIndex, "vec");
2651 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2653 Old = convertValue(DL, IRB, Old, IntTy);
2655 Src = insertInteger(DL, IRB, Old, Src, Offset, "insert");
2697 // the old pointer, which necessarily must be in the right position to
2704 // Replace the operands which were using the old pointer.
2725 // Replace the operands which were using the old pointer.
2838 assert(Indices.size() == OldSize && "Did not return to the old size");
2853 assert(Indices.size() == OldSize && "Did not return to the old size");
3103 /// rewrite the uses of the old alloca to point at the new one and have the
3333 old split uses.