blob: b5d0195a298c5c4cc838f05d0fd0eed55fb903b3 [file] [log] [blame]
Andrew Lenhartha9cdcca2006-04-10 19:26:09 +00001//===-- IndMemRemoval.cpp - Remove indirect allocations and frees ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass finds places where memory allocation functions may escape into
11// indirect land. Some transforms are much easier (aka possible) only if free
12// or malloc are not called indirectly.
13// Thus find places where the address of memory functions are taken and construct
14// bounce functions with direct calls of those functions.
15//
16//===----------------------------------------------------------------------===//
17
18#include "llvm/Transforms/IPO.h"
19#include "llvm/Pass.h"
20#include "llvm/Module.h"
21#include "llvm/Function.h"
22#include "llvm/Instructions.h"
23#include "llvm/Type.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/ADT/Statistic.h"
26#include <fstream>
27#include <iostream>
28#include <set>
29using namespace llvm;
30
31namespace {
32 Statistic<> NumBounceSites("indmemrem", "Number of sites modified");
33 Statistic<> NumBounce ("indmemrem", "Number of bounce functions created");
34
35 class IndMemRemPass : public ModulePass {
36
37 public:
38 IndMemRemPass();
39 virtual bool runOnModule(Module &M);
40 };
41 RegisterOpt<IndMemRemPass> X("indmemrem", "Indirect Malloc and Free Removal");
42} // end anonymous namespace
43
44
45IndMemRemPass::IndMemRemPass()
46{
47}
48
49bool IndMemRemPass::runOnModule(Module &M) {
50 //in Theory, all direct calls of malloc and free should be promoted
51 //to intrinsics. Therefor, this goes through and finds where the
52 //address of free or malloc are taken and replaces those with bounce
53 //functions, ensuring that all malloc and free that might happen
Andrew Lenharth92cf71f2006-04-13 13:43:31 +000054 //happen through intrinsics.
Andrew Lenhartha9cdcca2006-04-10 19:26:09 +000055 bool changed = false;
56 if (Function* F = M.getNamedFunction("free")) {
57 assert(F->isExternal() && "free not external?");
Andrew Lenharth92cf71f2006-04-13 13:43:31 +000058 if (!F->use_empty()) {
Andrew Lenhartha9cdcca2006-04-10 19:26:09 +000059 Function* FN = new Function(F->getFunctionType(),
60 GlobalValue::LinkOnceLinkage,
61 "free_llvm_bounce", &M);
62 BasicBlock* bb = new BasicBlock("entry",FN);
63 Instruction* R = new ReturnInst(bb);
64 new FreeInst(FN->arg_begin(), R);
65 ++NumBounce;
66 NumBounceSites += F->getNumUses();
67 F->replaceAllUsesWith(FN);
68 changed = true;
69 }
70 }
71 if (Function* F = M.getNamedFunction("malloc")) {
72 assert(F->isExternal() && "malloc not external?");
Andrew Lenharth92cf71f2006-04-13 13:43:31 +000073 if (!F->use_empty()) {
Andrew Lenhartha9cdcca2006-04-10 19:26:09 +000074 Function* FN = new Function(F->getFunctionType(),
75 GlobalValue::LinkOnceLinkage,
76 "malloc_llvm_bounce", &M);
77 BasicBlock* bb = new BasicBlock("entry",FN);
78 Instruction* c = new CastInst(FN->arg_begin(), Type::UIntTy, "c", bb);
79 Instruction* a = new MallocInst(Type::SByteTy, c, "m", bb);
80 Instruction* R = new ReturnInst(a, bb);
81 ++NumBounce;
82 NumBounceSites += F->getNumUses();
83 F->replaceAllUsesWith(FN);
84 changed = true;
85 }
86 }
87 return changed;
88}
89
90ModulePass *llvm::createIndMemRemPass() {
91 return new IndMemRemPass();
92}