2007-08-27 16:11:48 +00:00
|
|
|
//===- RaiseAllocations.cpp - Convert @malloc & @free calls to insts ------===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-05-07 19:02:48 +00:00
|
|
|
//
|
2002-05-07 19:04:39 +00:00
|
|
|
// This file defines the RaiseAllocations pass which convert malloc and free
|
|
|
|
// calls to malloc and free instructions.
|
2002-05-07 19:02:48 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-12-19 22:09:18 +00:00
|
|
|
#define DEBUG_TYPE "raiseallocs"
|
2003-09-01 03:14:56 +00:00
|
|
|
#include "llvm/Transforms/IPO.h"
|
2003-12-07 01:42:08 +00:00
|
|
|
#include "llvm/Constants.h"
|
2002-05-07 19:02:48 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2003-12-07 01:42:08 +00:00
|
|
|
#include "llvm/Module.h"
|
2004-07-29 17:30:56 +00:00
|
|
|
#include "llvm/Instructions.h"
|
2002-05-07 19:02:48 +00:00
|
|
|
#include "llvm/Pass.h"
|
2003-09-01 03:14:56 +00:00
|
|
|
#include "llvm/Support/CallSite.h"
|
2007-02-05 23:32:05 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2007-03-05 00:00:42 +00:00
|
|
|
#include <algorithm>
|
2003-11-21 21:54:22 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2006-12-19 22:09:18 +00:00
|
|
|
STATISTIC(NumRaised, "Number of allocations raised");
|
2002-05-07 19:02:48 +00:00
|
|
|
|
2006-12-19 22:09:18 +00:00
|
|
|
namespace {
|
2007-08-27 16:11:48 +00:00
|
|
|
// RaiseAllocations - Turn @malloc and @free calls into the appropriate
|
2002-10-01 22:38:41 +00:00
|
|
|
// instruction.
|
2002-05-07 19:02:48 +00:00
|
|
|
//
|
2007-02-05 23:32:05 +00:00
|
|
|
class VISIBILITY_HIDDEN RaiseAllocations : public ModulePass {
|
2002-10-01 22:38:41 +00:00
|
|
|
Function *MallocFunc; // Functions in the module we are processing
|
|
|
|
Function *FreeFunc; // Initialized by doPassInitializationVirt
|
|
|
|
public:
|
2007-05-06 13:37:16 +00:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2007-05-01 21:15:47 +00:00
|
|
|
RaiseAllocations()
|
|
|
|
: ModulePass((intptr_t)&ID), MallocFunc(0), FreeFunc(0) {}
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2002-10-01 22:38:41 +00:00
|
|
|
// doPassInitialization - For the raise allocations pass, this finds a
|
|
|
|
// declaration for malloc and free if they exist.
|
|
|
|
//
|
2003-09-01 03:14:56 +00:00
|
|
|
void doInitialization(Module &M);
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-09-01 03:14:56 +00:00
|
|
|
// run - This method does the actual work of converting instructions over.
|
2002-10-01 22:38:41 +00:00
|
|
|
//
|
2004-09-20 04:48:05 +00:00
|
|
|
bool runOnModule(Module &M);
|
2002-10-01 22:38:41 +00:00
|
|
|
};
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char RaiseAllocations::ID = 0;
|
2006-08-27 22:42:52 +00:00
|
|
|
RegisterPass<RaiseAllocations>
|
2002-07-26 21:12:46 +00:00
|
|
|
X("raiseallocs", "Raise allocations from calls to instructions");
|
2002-05-07 19:02:48 +00:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
|
|
|
|
// createRaiseAllocationsPass - The interface to this file...
|
2004-09-20 04:48:05 +00:00
|
|
|
ModulePass *llvm::createRaiseAllocationsPass() {
|
2002-05-07 19:02:48 +00:00
|
|
|
return new RaiseAllocations();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-01 03:14:56 +00:00
|
|
|
// If the module has a symbol table, they might be referring to the malloc and
|
|
|
|
// free functions. If this is the case, grab the method pointers that the
|
|
|
|
// module is using.
|
|
|
|
//
|
2007-08-27 16:11:48 +00:00
|
|
|
// Lookup @malloc and @free in the symbol table, for later use. If they don't
|
2003-09-01 03:14:56 +00:00
|
|
|
// exist, or are not external, we do not worry about converting calls to that
|
|
|
|
// function into the appropriate instruction.
|
|
|
|
//
|
|
|
|
void RaiseAllocations::doInitialization(Module &M) {
|
2002-05-07 19:02:48 +00:00
|
|
|
|
2002-07-18 00:18:01 +00:00
|
|
|
// Get Malloc and free prototypes if they exist!
|
2007-02-05 20:47:22 +00:00
|
|
|
MallocFunc = M.getFunction("malloc");
|
|
|
|
if (MallocFunc) {
|
|
|
|
const FunctionType* TyWeHave = MallocFunc->getFunctionType();
|
|
|
|
|
|
|
|
// Get the expected prototype for malloc
|
|
|
|
const FunctionType *Malloc1Type =
|
2007-12-17 01:12:55 +00:00
|
|
|
FunctionType::get(PointerType::getUnqual(Type::Int8Ty),
|
2007-02-05 20:47:22 +00:00
|
|
|
std::vector<const Type*>(1, Type::Int64Ty), false);
|
|
|
|
|
|
|
|
// Chck to see if we got the expected malloc
|
|
|
|
if (TyWeHave != Malloc1Type) {
|
|
|
|
// Check to see if the prototype is wrong, giving us sbyte*(uint) * malloc
|
|
|
|
// This handles the common declaration of: 'void *malloc(unsigned);'
|
|
|
|
const FunctionType *Malloc2Type =
|
2007-12-17 01:12:55 +00:00
|
|
|
FunctionType::get(PointerType::getUnqual(Type::Int8Ty),
|
2007-02-05 20:47:22 +00:00
|
|
|
std::vector<const Type*>(1, Type::Int32Ty), false);
|
|
|
|
if (TyWeHave != Malloc2Type) {
|
|
|
|
// Check to see if the prototype is missing, giving us
|
|
|
|
// sbyte*(...) * malloc
|
|
|
|
// This handles the common declaration of: 'void *malloc();'
|
|
|
|
const FunctionType *Malloc3Type =
|
2007-12-17 01:12:55 +00:00
|
|
|
FunctionType::get(PointerType::getUnqual(Type::Int8Ty),
|
2007-02-05 20:47:22 +00:00
|
|
|
std::vector<const Type*>(), true);
|
|
|
|
if (TyWeHave != Malloc3Type)
|
|
|
|
// Give up
|
|
|
|
MallocFunc = 0;
|
|
|
|
}
|
|
|
|
}
|
2002-05-24 20:29:18 +00:00
|
|
|
}
|
|
|
|
|
2007-02-05 20:47:22 +00:00
|
|
|
FreeFunc = M.getFunction("free");
|
|
|
|
if (FreeFunc) {
|
|
|
|
const FunctionType* TyWeHave = FreeFunc->getFunctionType();
|
|
|
|
|
|
|
|
// Get the expected prototype for void free(i8*)
|
|
|
|
const FunctionType *Free1Type = FunctionType::get(Type::VoidTy,
|
2007-12-17 01:12:55 +00:00
|
|
|
std::vector<const Type*>(1, PointerType::getUnqual(Type::Int8Ty)), false);
|
2007-02-05 20:47:22 +00:00
|
|
|
|
|
|
|
if (TyWeHave != Free1Type) {
|
|
|
|
// Check to see if the prototype was forgotten, giving us
|
|
|
|
// void (...) * free
|
|
|
|
// This handles the common forward declaration of: 'void free();'
|
|
|
|
const FunctionType* Free2Type = FunctionType::get(Type::VoidTy,
|
|
|
|
std::vector<const Type*>(),true);
|
|
|
|
|
|
|
|
if (TyWeHave != Free2Type) {
|
|
|
|
// One last try, check to see if we can find free as
|
|
|
|
// int (...)* free. This handles the case where NOTHING was declared.
|
|
|
|
const FunctionType* Free3Type = FunctionType::get(Type::Int32Ty,
|
|
|
|
std::vector<const Type*>(),true);
|
|
|
|
|
|
|
|
if (TyWeHave != Free3Type) {
|
|
|
|
// Give up.
|
|
|
|
FreeFunc = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-08-11 15:05:08 +00:00
|
|
|
}
|
|
|
|
|
2002-05-07 19:02:48 +00:00
|
|
|
// Don't mess with locally defined versions of these functions...
|
2007-01-30 20:08:39 +00:00
|
|
|
if (MallocFunc && !MallocFunc->isDeclaration()) MallocFunc = 0;
|
|
|
|
if (FreeFunc && !FreeFunc->isDeclaration()) FreeFunc = 0;
|
2002-05-07 19:02:48 +00:00
|
|
|
}
|
|
|
|
|
2003-09-01 03:14:56 +00:00
|
|
|
// run - Transform calls into instructions...
|
2002-05-07 19:02:48 +00:00
|
|
|
//
|
2004-09-20 04:48:05 +00:00
|
|
|
bool RaiseAllocations::runOnModule(Module &M) {
|
2003-09-01 03:14:56 +00:00
|
|
|
// Find the malloc/free prototypes...
|
|
|
|
doInitialization(M);
|
|
|
|
|
2002-05-07 19:02:48 +00:00
|
|
|
bool Changed = false;
|
2003-09-01 03:14:56 +00:00
|
|
|
|
|
|
|
// First, process all of the malloc calls...
|
|
|
|
if (MallocFunc) {
|
|
|
|
std::vector<User*> Users(MallocFunc->use_begin(), MallocFunc->use_end());
|
2003-12-07 01:42:08 +00:00
|
|
|
std::vector<Value*> EqPointers; // Values equal to MallocFunc
|
2003-09-01 03:14:56 +00:00
|
|
|
while (!Users.empty()) {
|
2003-12-07 01:42:08 +00:00
|
|
|
User *U = Users.back();
|
|
|
|
Users.pop_back();
|
|
|
|
|
|
|
|
if (Instruction *I = dyn_cast<Instruction>(U)) {
|
2003-09-01 03:14:56 +00:00
|
|
|
CallSite CS = CallSite::get(I);
|
2007-10-03 19:26:29 +00:00
|
|
|
if (CS.getInstruction() && !CS.arg_empty() &&
|
2003-12-07 01:42:08 +00:00
|
|
|
(CS.getCalledFunction() == MallocFunc ||
|
|
|
|
std::find(EqPointers.begin(), EqPointers.end(),
|
|
|
|
CS.getCalledValue()) != EqPointers.end())) {
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-09-01 03:14:56 +00:00
|
|
|
Value *Source = *CS.arg_begin();
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-09-01 03:14:56 +00:00
|
|
|
// If no prototype was provided for malloc, we may need to cast the
|
|
|
|
// source size.
|
2006-12-31 05:48:39 +00:00
|
|
|
if (Source->getType() != Type::Int32Ty)
|
2006-11-27 01:05:10 +00:00
|
|
|
Source =
|
2006-12-31 05:48:39 +00:00
|
|
|
CastInst::createIntegerCast(Source, Type::Int32Ty, false/*ZExt*/,
|
2006-12-13 00:50:17 +00:00
|
|
|
"MallocAmtCast", I);
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2007-02-11 01:08:35 +00:00
|
|
|
MallocInst *MI = new MallocInst(Type::Int8Ty, Source, "", I);
|
|
|
|
MI->takeName(I);
|
2003-09-01 03:14:56 +00:00
|
|
|
I->replaceAllUsesWith(MI);
|
2003-09-16 19:42:21 +00:00
|
|
|
|
|
|
|
// If the old instruction was an invoke, add an unconditional branch
|
|
|
|
// before the invoke, which will become the new terminator.
|
|
|
|
if (InvokeInst *II = dyn_cast<InvokeInst>(I))
|
|
|
|
new BranchInst(II->getNormalDest(), I);
|
|
|
|
|
|
|
|
// Delete the old call site
|
2003-09-01 03:14:56 +00:00
|
|
|
MI->getParent()->getInstList().erase(I);
|
|
|
|
Changed = true;
|
|
|
|
++NumRaised;
|
|
|
|
}
|
2004-07-18 00:44:37 +00:00
|
|
|
} else if (GlobalValue *GV = dyn_cast<GlobalValue>(U)) {
|
|
|
|
Users.insert(Users.end(), GV->use_begin(), GV->use_end());
|
|
|
|
EqPointers.push_back(GV);
|
2003-12-07 01:42:08 +00:00
|
|
|
} else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
|
2006-11-27 01:05:10 +00:00
|
|
|
if (CE->isCast()) {
|
2003-12-07 01:42:08 +00:00
|
|
|
Users.insert(Users.end(), CE->use_begin(), CE->use_end());
|
|
|
|
EqPointers.push_back(CE);
|
|
|
|
}
|
2003-09-01 03:14:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next, process all free calls...
|
|
|
|
if (FreeFunc) {
|
|
|
|
std::vector<User*> Users(FreeFunc->use_begin(), FreeFunc->use_end());
|
2003-12-07 01:42:08 +00:00
|
|
|
std::vector<Value*> EqPointers; // Values equal to FreeFunc
|
2003-09-01 03:14:56 +00:00
|
|
|
|
|
|
|
while (!Users.empty()) {
|
2003-12-07 01:42:08 +00:00
|
|
|
User *U = Users.back();
|
|
|
|
Users.pop_back();
|
|
|
|
|
|
|
|
if (Instruction *I = dyn_cast<Instruction>(U)) {
|
2007-10-17 20:12:58 +00:00
|
|
|
if (isa<InvokeInst>(I))
|
|
|
|
continue;
|
2003-09-01 03:14:56 +00:00
|
|
|
CallSite CS = CallSite::get(I);
|
2007-10-03 19:26:29 +00:00
|
|
|
if (CS.getInstruction() && !CS.arg_empty() &&
|
2003-12-07 01:42:08 +00:00
|
|
|
(CS.getCalledFunction() == FreeFunc ||
|
|
|
|
std::find(EqPointers.begin(), EqPointers.end(),
|
|
|
|
CS.getCalledValue()) != EqPointers.end())) {
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-09-01 03:14:56 +00:00
|
|
|
// If no prototype was provided for free, we may need to cast the
|
|
|
|
// source pointer. This should be really uncommon, but it's necessary
|
2005-02-27 06:18:25 +00:00
|
|
|
// just in case we are dealing with weird code like this:
|
2003-09-01 03:14:56 +00:00
|
|
|
// free((long)ptr);
|
|
|
|
//
|
|
|
|
Value *Source = *CS.arg_begin();
|
|
|
|
if (!isa<PointerType>(Source->getType()))
|
2007-12-17 01:12:55 +00:00
|
|
|
Source = new IntToPtrInst(Source,
|
|
|
|
PointerType::getUnqual(Type::Int8Ty),
|
2006-12-13 00:50:17 +00:00
|
|
|
"FreePtrCast", I);
|
2003-09-01 03:14:56 +00:00
|
|
|
new FreeInst(Source, I);
|
2003-09-16 19:42:21 +00:00
|
|
|
|
|
|
|
// If the old instruction was an invoke, add an unconditional branch
|
|
|
|
// before the invoke, which will become the new terminator.
|
|
|
|
if (InvokeInst *II = dyn_cast<InvokeInst>(I))
|
|
|
|
new BranchInst(II->getNormalDest(), I);
|
|
|
|
|
|
|
|
// Delete the old call site
|
2004-11-09 05:10:56 +00:00
|
|
|
if (I->getType() != Type::VoidTy)
|
|
|
|
I->replaceAllUsesWith(UndefValue::get(I->getType()));
|
|
|
|
I->eraseFromParent();
|
2003-09-01 03:14:56 +00:00
|
|
|
Changed = true;
|
|
|
|
++NumRaised;
|
|
|
|
}
|
2004-07-18 00:44:37 +00:00
|
|
|
} else if (GlobalValue *GV = dyn_cast<GlobalValue>(U)) {
|
|
|
|
Users.insert(Users.end(), GV->use_begin(), GV->use_end());
|
|
|
|
EqPointers.push_back(GV);
|
2003-12-07 01:42:08 +00:00
|
|
|
} else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
|
2006-11-27 01:05:10 +00:00
|
|
|
if (CE->isCast()) {
|
2003-12-07 01:42:08 +00:00
|
|
|
Users.insert(Users.end(), CE->use_begin(), CE->use_end());
|
|
|
|
EqPointers.push_back(CE);
|
|
|
|
}
|
2002-05-07 19:02:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|