freebsd-dev/lib/Analysis/MemoryBuiltins.cpp

284 lines
9.8 KiB
C++
Raw Normal View History

2009-11-04 14:58:56 +00:00
//===------ MemoryBuiltins.cpp - Identify calls to memory builtins --------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This family of functions identifies calls to builtin functions that allocate
// or free memory.
//
//===----------------------------------------------------------------------===//
#include "llvm/Analysis/MemoryBuiltins.h"
#include "llvm/Constants.h"
#include "llvm/Instructions.h"
#include "llvm/Module.h"
#include "llvm/Analysis/ConstantFolding.h"
2009-11-05 17:17:44 +00:00
#include "llvm/Target/TargetData.h"
2009-11-04 14:58:56 +00:00
using namespace llvm;
//===----------------------------------------------------------------------===//
// malloc Call Utility Functions.
//
/// isMalloc - Returns true if the the value is either a malloc call or a
/// bitcast of the result of a malloc call.
bool llvm::isMalloc(const Value *I) {
return extractMallocCall(I) || extractMallocCallFromBitCast(I);
}
static bool isMallocCall(const CallInst *CI) {
if (!CI)
return false;
Function *Callee = CI->getCalledFunction();
if (Callee == 0 || !Callee->isDeclaration() || Callee->getName() != "malloc")
return false;
// Check malloc prototype.
// FIXME: workaround for PR5130, this will be obsolete when a nobuiltin
// attribute will exist.
const FunctionType *FTy = Callee->getFunctionType();
if (FTy->getNumParams() != 1)
return false;
if (IntegerType *ITy = dyn_cast<IntegerType>(FTy->param_begin()->get())) {
if (ITy->getBitWidth() != 32 && ITy->getBitWidth() != 64)
return false;
return true;
}
return false;
}
/// extractMallocCall - Returns the corresponding CallInst if the instruction
/// is a malloc call. Since CallInst::CreateMalloc() only creates calls, we
/// ignore InvokeInst here.
const CallInst *llvm::extractMallocCall(const Value *I) {
const CallInst *CI = dyn_cast<CallInst>(I);
return (isMallocCall(CI)) ? CI : NULL;
}
CallInst *llvm::extractMallocCall(Value *I) {
CallInst *CI = dyn_cast<CallInst>(I);
return (isMallocCall(CI)) ? CI : NULL;
}
static bool isBitCastOfMallocCall(const BitCastInst *BCI) {
if (!BCI)
return false;
return isMallocCall(dyn_cast<CallInst>(BCI->getOperand(0)));
}
/// extractMallocCallFromBitCast - Returns the corresponding CallInst if the
/// instruction is a bitcast of the result of a malloc call.
CallInst *llvm::extractMallocCallFromBitCast(Value *I) {
BitCastInst *BCI = dyn_cast<BitCastInst>(I);
return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
: NULL;
}
const CallInst *llvm::extractMallocCallFromBitCast(const Value *I) {
const BitCastInst *BCI = dyn_cast<BitCastInst>(I);
return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
: NULL;
}
/// isConstantOne - Return true only if val is constant int 1.
static bool isConstantOne(Value *val) {
return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
}
static Value *isArrayMallocHelper(const CallInst *CI, LLVMContext &Context,
const TargetData *TD) {
if (!CI)
return NULL;
2009-11-05 17:17:44 +00:00
// The size of the malloc's result type must be known to determine array size.
2009-11-04 14:58:56 +00:00
const Type *T = getMallocAllocatedType(CI);
2009-11-05 17:17:44 +00:00
if (!T || !T->isSized() || !TD)
2009-11-04 14:58:56 +00:00
return NULL;
Value *MallocArg = CI->getOperand(1);
2009-11-05 17:17:44 +00:00
const Type *ArgType = MallocArg->getType();
2009-11-04 14:58:56 +00:00
ConstantExpr *CO = dyn_cast<ConstantExpr>(MallocArg);
BinaryOperator *BO = dyn_cast<BinaryOperator>(MallocArg);
2009-11-05 17:17:44 +00:00
unsigned ElementSizeInt = TD->getTypeAllocSize(T);
if (const StructType *ST = dyn_cast<StructType>(T))
ElementSizeInt = TD->getStructLayout(ST)->getSizeInBytes();
Constant *ElementSize = ConstantInt::get(ArgType, ElementSizeInt);
2009-11-04 14:58:56 +00:00
// First, check if CI is a non-array malloc.
2009-11-05 17:17:44 +00:00
if (CO && CO == ElementSize)
2009-11-04 14:58:56 +00:00
// Match CreateMalloc's use of constant 1 array-size for non-array mallocs.
2009-11-05 17:17:44 +00:00
return ConstantInt::get(ArgType, 1);
2009-11-04 14:58:56 +00:00
// Second, check if CI is an array malloc whose array size can be determined.
2009-11-05 17:17:44 +00:00
if (isConstantOne(ElementSize))
2009-11-04 14:58:56 +00:00
return MallocArg;
2009-11-05 17:17:44 +00:00
if (ConstantInt *CInt = dyn_cast<ConstantInt>(MallocArg))
if (CInt->getZExtValue() % ElementSizeInt == 0)
return ConstantInt::get(ArgType, CInt->getZExtValue() / ElementSizeInt);
2009-11-04 14:58:56 +00:00
if (!CO && !BO)
return NULL;
Value *Op0 = NULL;
Value *Op1 = NULL;
unsigned Opcode = 0;
2009-11-05 17:17:44 +00:00
if (CO && ((CO->getOpcode() == Instruction::Mul) ||
2009-11-04 14:58:56 +00:00
(CO->getOpcode() == Instruction::Shl))) {
Op0 = CO->getOperand(0);
Op1 = CO->getOperand(1);
Opcode = CO->getOpcode();
}
2009-11-05 17:17:44 +00:00
if (BO && ((BO->getOpcode() == Instruction::Mul) ||
2009-11-04 14:58:56 +00:00
(BO->getOpcode() == Instruction::Shl))) {
Op0 = BO->getOperand(0);
Op1 = BO->getOperand(1);
Opcode = BO->getOpcode();
}
// Determine array size if malloc's argument is the product of a mul or shl.
if (Op0) {
if (Opcode == Instruction::Mul) {
2009-11-05 17:17:44 +00:00
if (Op1 == ElementSize)
2009-11-04 14:58:56 +00:00
// ArraySize * ElementSize
return Op0;
2009-11-05 17:17:44 +00:00
if (Op0 == ElementSize)
2009-11-04 14:58:56 +00:00
// ElementSize * ArraySize
return Op1;
}
if (Opcode == Instruction::Shl) {
ConstantInt *Op1CI = dyn_cast<ConstantInt>(Op1);
if (!Op1CI) return NULL;
APInt Op1Int = Op1CI->getValue();
uint64_t BitToSet = Op1Int.getLimitedValue(Op1Int.getBitWidth() - 1);
Value *Op1Pow = ConstantInt::get(Context,
APInt(Op1Int.getBitWidth(), 0).set(BitToSet));
2009-11-05 17:17:44 +00:00
if (Op0 == ElementSize)
2009-11-04 14:58:56 +00:00
// ArraySize << log2(ElementSize)
return Op1Pow;
2009-11-05 17:17:44 +00:00
if (Op1Pow == ElementSize)
2009-11-04 14:58:56 +00:00
// ElementSize << log2(ArraySize)
return Op0;
}
}
// We could not determine the malloc array size from MallocArg.
return NULL;
}
/// isArrayMalloc - Returns the corresponding CallInst if the instruction
/// is a call to malloc whose array size can be determined and the array size
/// is not constant 1. Otherwise, return NULL.
CallInst *llvm::isArrayMalloc(Value *I, LLVMContext &Context,
const TargetData *TD) {
CallInst *CI = extractMallocCall(I);
Value *ArraySize = isArrayMallocHelper(CI, Context, TD);
if (ArraySize &&
ArraySize != ConstantInt::get(CI->getOperand(1)->getType(), 1))
return CI;
// CI is a non-array malloc or we can't figure out that it is an array malloc.
return NULL;
}
const CallInst *llvm::isArrayMalloc(const Value *I, LLVMContext &Context,
const TargetData *TD) {
const CallInst *CI = extractMallocCall(I);
Value *ArraySize = isArrayMallocHelper(CI, Context, TD);
if (ArraySize &&
ArraySize != ConstantInt::get(CI->getOperand(1)->getType(), 1))
return CI;
// CI is a non-array malloc or we can't figure out that it is an array malloc.
return NULL;
}
/// getMallocType - Returns the PointerType resulting from the malloc call.
2009-11-05 17:17:44 +00:00
/// The PointerType depends on the number of bitcast uses of the malloc call:
/// 0: PointerType is the calls' return type.
/// 1: PointerType is the bitcast's result type.
/// >1: Unique PointerType cannot be determined, return NULL.
2009-11-04 14:58:56 +00:00
const PointerType *llvm::getMallocType(const CallInst *CI) {
assert(isMalloc(CI) && "GetMallocType and not malloc call");
2009-11-05 17:17:44 +00:00
const PointerType *MallocType = NULL;
unsigned NumOfBitCastUses = 0;
2009-11-04 14:58:56 +00:00
// Determine if CallInst has a bitcast use.
for (Value::use_const_iterator UI = CI->use_begin(), E = CI->use_end();
UI != E; )
2009-11-05 17:17:44 +00:00
if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) {
MallocType = cast<PointerType>(BCI->getDestTy());
NumOfBitCastUses++;
}
2009-11-04 14:58:56 +00:00
2009-11-05 17:17:44 +00:00
// Malloc call has 1 bitcast use, so type is the bitcast's destination type.
if (NumOfBitCastUses == 1)
return MallocType;
2009-11-04 14:58:56 +00:00
// Malloc call was not bitcast, so type is the malloc function's return type.
2009-11-05 17:17:44 +00:00
if (NumOfBitCastUses == 0)
2009-11-04 14:58:56 +00:00
return cast<PointerType>(CI->getType());
// Type could not be determined.
return NULL;
}
2009-11-05 17:17:44 +00:00
/// getMallocAllocatedType - Returns the Type allocated by malloc call.
/// The Type depends on the number of bitcast uses of the malloc call:
/// 0: PointerType is the malloc calls' return type.
/// 1: PointerType is the bitcast's result type.
/// >1: Unique PointerType cannot be determined, return NULL.
2009-11-04 14:58:56 +00:00
const Type *llvm::getMallocAllocatedType(const CallInst *CI) {
const PointerType *PT = getMallocType(CI);
return PT ? PT->getElementType() : NULL;
}
/// getMallocArraySize - Returns the array size of a malloc call. If the
/// argument passed to malloc is a multiple of the size of the malloced type,
/// then return that multiple. For non-array mallocs, the multiple is
/// constant 1. Otherwise, return NULL for mallocs whose array size cannot be
/// determined.
Value *llvm::getMallocArraySize(CallInst *CI, LLVMContext &Context,
const TargetData *TD) {
return isArrayMallocHelper(CI, Context, TD);
}
//===----------------------------------------------------------------------===//
// free Call Utility Functions.
//
/// isFreeCall - Returns true if the the value is a call to the builtin free()
bool llvm::isFreeCall(const Value *I) {
const CallInst *CI = dyn_cast<CallInst>(I);
if (!CI)
return false;
Function *Callee = CI->getCalledFunction();
if (Callee == 0 || !Callee->isDeclaration() || Callee->getName() != "free")
return false;
// Check free prototype.
// FIXME: workaround for PR5130, this will be obsolete when a nobuiltin
// attribute will exist.
const FunctionType *FTy = Callee->getFunctionType();
if (!FTy->getReturnType()->isVoidTy())
return false;
if (FTy->getNumParams() != 1)
return false;
if (FTy->param_begin()->get() != Type::getInt8PtrTy(Callee->getContext()))
return false;
return true;
}