diff options
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 11 | ||||
| -rw-r--r-- | llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp | 11 | ||||
| -rw-r--r-- | llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp | 7 | ||||
| -rw-r--r-- | llvm/lib/Transforms/Utils/InlineFunction.cpp | 4 | 
4 files changed, 20 insertions, 13 deletions
| diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index ee6b51cf296..717a46eb82c 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp @@ -9200,12 +9200,11 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) {        if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource()))          if (GVSrc->isConstant()) {            Module *M = CI.getParent()->getParent()->getParent(); -          Intrinsic::ID MemCpyID; -          if (CI.getOperand(3)->getType() == Type::Int32Ty) -            MemCpyID = Intrinsic::memcpy_i32; -          else -            MemCpyID = Intrinsic::memcpy_i64; -          CI.setOperand(0, Intrinsic::getDeclaration(M, MemCpyID)); +          Intrinsic::ID MemCpyID = Intrinsic::memcpy; +          const Type *Tys[1]; +          Tys[0] = CI.getOperand(3)->getType(); +          CI.setOperand(0,  +                        Intrinsic::getDeclaration(M, MemCpyID, Tys, 1));            Changed = true;          } diff --git a/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp b/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp index 7ccca002398..6d27327991f 100644 --- a/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp +++ b/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp @@ -427,9 +427,12 @@ bool MemCpyOpt::processStore(StoreInst *SI, BasicBlock::iterator& BBI) {      // instruction needed by the start of the block.      BasicBlock::iterator InsertPt = BI; -    if (MemSetF == 0) +    if (MemSetF == 0) { +      const Type *Tys[] = {Type::Int64Ty};        MemSetF = Intrinsic::getDeclaration(SI->getParent()->getParent() -                                          ->getParent(), Intrinsic::memset_i64); +                                          ->getParent(), Intrinsic::memset, +                                          Tys, 1); +   }      // Get the starting pointer of the block.      StartPtr = Range.StartPtr; @@ -671,9 +674,11 @@ bool MemCpyOpt::processMemCpy(MemCpyInst* M) {      return false;    // If all checks passed, then we can transform these memcpy's +  const Type *Tys[1]; +  Tys[0] = M->getLength()->getType();    Function* MemCpyFun = Intrinsic::getDeclaration(                                   M->getParent()->getParent()->getParent(), -                                 M->getIntrinsicID()); +                                 M->getIntrinsicID(), Tys, 1);    std::vector<Value*> args;    args.push_back(M->getRawDest()); diff --git a/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp b/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp index 2fbc25e0bd9..89527477a80 100644 --- a/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp +++ b/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp @@ -130,9 +130,10 @@ Value *LibCallOptimization::EmitStrLen(Value *Ptr, IRBuilder<> &B) {  Value *LibCallOptimization::EmitMemCpy(Value *Dst, Value *Src, Value *Len,                                         unsigned Align, IRBuilder<> &B) {    Module *M = Caller->getParent(); -  Intrinsic::ID IID = Len->getType() == Type::Int32Ty ? -                           Intrinsic::memcpy_i32 : Intrinsic::memcpy_i64; -  Value *MemCpy = Intrinsic::getDeclaration(M, IID); +  Intrinsic::ID IID = Intrinsic::memcpy; +  const Type *Tys[1]; +  Tys[0] = Len->getType(); +  Value *MemCpy = Intrinsic::getDeclaration(M, IID, Tys, 1);    return B.CreateCall4(MemCpy, CastToCStr(Dst, B), CastToCStr(Src, B), Len,                         ConstantInt::get(Type::Int32Ty, Align));  } diff --git a/llvm/lib/Transforms/Utils/InlineFunction.cpp b/llvm/lib/Transforms/Utils/InlineFunction.cpp index 26b4de5d3b1..49131e8fd26 100644 --- a/llvm/lib/Transforms/Utils/InlineFunction.cpp +++ b/llvm/lib/Transforms/Utils/InlineFunction.cpp @@ -257,8 +257,10 @@ bool llvm::InlineFunction(CallSite CS, CallGraph *CG, const TargetData *TD) {          Value *NewAlloca = new AllocaInst(AggTy, 0, Align, I->getName(),                                            Caller->begin()->begin());          // Emit a memcpy. +        const Type *Tys[] = { Type::Int64Ty };          Function *MemCpyFn = Intrinsic::getDeclaration(Caller->getParent(), -                                                       Intrinsic::memcpy_i64); +                                                       Intrinsic::memcpy,  +                                                       Tys, 1);          Value *DestCast = new BitCastInst(NewAlloca, VoidPtrTy, "tmp", TheCall);          Value *SrcCast = new BitCastInst(*AI, VoidPtrTy, "tmp", TheCall); | 

