diff options
| author | Nuno Lopes <nunoplopes@sapo.pt> | 2012-05-03 21:19:58 +0000 |
|---|---|---|
| committer | Nuno Lopes <nunoplopes@sapo.pt> | 2012-05-03 21:19:58 +0000 |
| commit | d2b71e7fa9ff1cfd889a16bbf583bdce200236f9 (patch) | |
| tree | e29c3fc369f5d0cab4c735f7b9c7dbef39cd4390 /llvm/lib | |
| parent | 64e7ead1d817540a4ba4887da6c8a049788beee7 (diff) | |
| download | bcm5719-llvm-d2b71e7fa9ff1cfd889a16bbf583bdce200236f9.tar.gz bcm5719-llvm-d2b71e7fa9ff1cfd889a16bbf583bdce200236f9.zip | |
add support for calloc to objectsize lowering
llvm-svn: 156102
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Analysis/MemoryBuiltins.cpp | 40 | ||||
| -rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp | 22 |
2 files changed, 57 insertions, 5 deletions
diff --git a/llvm/lib/Analysis/MemoryBuiltins.cpp b/llvm/lib/Analysis/MemoryBuiltins.cpp index b145650b0f0..347a7ea7a8b 100644 --- a/llvm/lib/Analysis/MemoryBuiltins.cpp +++ b/llvm/lib/Analysis/MemoryBuiltins.cpp @@ -180,6 +180,46 @@ Value *llvm::getMallocArraySize(CallInst *CI, const TargetData *TD, return computeArraySize(CI, TD, LookThroughSExt); } + +//===----------------------------------------------------------------------===// +// clloc Call Utility Functions. +// + +static bool isCallocCall(const CallInst *CI) { + if (!CI) + return false; + + Function *Callee = CI->getCalledFunction(); + if (Callee == 0 || !Callee->isDeclaration()) + return false; + if (Callee->getName() != "calloc") + return false; + + // Check malloc prototype. + // FIXME: workaround for PR5130, this will be obsolete when a nobuiltin + // attribute will exist. + FunctionType *FTy = Callee->getFunctionType(); + return FTy->getReturnType() == Type::getInt8PtrTy(FTy->getContext()) && + FTy->getNumParams() == 2 && + ((FTy->getParamType(0)->isIntegerTy(32) && + FTy->getParamType(1)->isIntegerTy(32)) || + (FTy->getParamType(0)->isIntegerTy(64) && + FTy->getParamType(1)->isIntegerTy(64))); +} + +/// extractCallocCall - Returns the corresponding CallInst if the instruction +/// is a calloc call. +const CallInst *llvm::extractCallocCall(const Value *I) { + const CallInst *CI = dyn_cast<CallInst>(I); + return isCallocCall(CI) ? CI : 0; +} + +CallInst *llvm::extractCallocCall(Value *I) { + CallInst *CI = dyn_cast<CallInst>(I); + return isCallocCall(CI) ? CI : 0; +} + + //===----------------------------------------------------------------------===// // free Call Utility Functions. // diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp index 5be7997367f..4196ca6cf79 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp @@ -300,11 +300,23 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) { } } else if (CallInst *MI = extractMallocCall(Op1)) { // Get allocation size. - Type* MallocType = getMallocAllocatedType(MI); - if (MallocType && MallocType->isSized()) - if (Value *NElems = getMallocArraySize(MI, TD, true)) - if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems)) - Size = NElements->getZExtValue() * TD->getTypeAllocSize(MallocType); + Value *Arg = MI->getArgOperand(0); + if (ConstantInt *CI = dyn_cast<ConstantInt>(Arg)) + Size = CI->getZExtValue(); + + } else if (CallInst *MI = extractCallocCall(Op1)) { + // Get allocation size. + Value *Arg1 = MI->getArgOperand(0); + Value *Arg2 = MI->getArgOperand(1); + if (ConstantInt *CI1 = dyn_cast<ConstantInt>(Arg1)) + if (ConstantInt *CI2 = dyn_cast<ConstantInt>(Arg2)) { + bool overflow; + APInt SizeAP = CI1->getValue().umul_ov(CI2->getValue(), overflow); + if (!overflow) + Size = SizeAP.getZExtValue(); + else + return ReplaceInstUsesWith(CI, ConstantInt::get(ReturnTy, DontKnow)); + } } // Do not return "I don't know" here. Later optimization passes could |

