summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2008-09-04 18:51:26 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2008-09-04 18:51:26 +0000
commiteb50479714047c5b8d88e5e879089925156194f2 (patch)
tree8669571eef8cafe387425c5256649b245a6a3b2b /lib/Transforms/IPO
parent928e865d954433d67cfcac8d7243e13e12c287dc (diff)
downloadllvm-eb50479714047c5b8d88e5e879089925156194f2.tar.gz
llvm-eb50479714047c5b8d88e5e879089925156194f2.tar.bz2
llvm-eb50479714047c5b8d88e5e879089925156194f2.tar.xz
try to seperate the mechanism into something others can use
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55785 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO')
-rw-r--r--lib/Transforms/IPO/PartialSpecialization.cpp90
1 files changed, 70 insertions, 20 deletions
diff --git a/lib/Transforms/IPO/PartialSpecialization.cpp b/lib/Transforms/IPO/PartialSpecialization.cpp
index 949358e7bc..da127cb9f5 100644
--- a/lib/Transforms/IPO/PartialSpecialization.cpp
+++ b/lib/Transforms/IPO/PartialSpecialization.cpp
@@ -26,7 +26,9 @@
#include "llvm/Pass.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Transforms/Utils/Cloning.h"
+#include "llvm/Support/CallSite.h"
#include "llvm/Support/Compiler.h"
+#include "llvm/ADT/DenseSet.h"
#include <map>
using namespace llvm;
@@ -41,7 +43,6 @@ static const double ConstValPercent = .1;
namespace {
class VISIBILITY_HIDDEN PartSpec : public ModulePass {
void scanForInterest(Function&, SmallVector<int, 6>&);
- void replaceUsersFor(Function&, int, Constant*, Function*);
int scanDistribution(Function&, int, std::map<Constant*, int>&);
public :
static char ID; // Pass identification, replacement for typeid
@@ -54,6 +55,55 @@ char PartSpec::ID = 0;
static RegisterPass<PartSpec>
X("partialspecialization", "Partial Specialization");
+// Specialize F by replacing the arguments (keys) in replacements with the
+// constants (values). Replace all calls to F with those constants with
+// a call to the specialized function. Returns the specialized function
+static Function*
+SpecializeFunction(Function* F,
+ DenseMap<const Value*, Value*>& replacements) {
+ // arg numbers of deleted arguments
+ DenseSet<unsigned> deleted;
+ for (DenseMap<const Value*, Value*>::iterator
+ repb = replacements.begin(), repe = replacements.end();
+ repb != repe; ++ repb)
+ deleted.insert(cast<Argument>(repb->first)->getArgNo());
+
+ Function* NF = CloneFunction(F, replacements);
+ NF->setLinkage(GlobalValue::InternalLinkage);
+ F->getParent()->getFunctionList().push_back(NF);
+
+ for (Value::use_iterator ii = F->use_begin(), ee = F->use_end();
+ ii != ee; ) {
+ Value::use_iterator i = ii;;
+ ++ii;
+ if (isa<CallInst>(i) || isa<InvokeInst>(i)) {
+ CallSite CS(cast<Instruction>(i));
+ if (CS.getCalledFunction() == F) {
+
+ SmallVector<Value*, 6> args;
+ for (unsigned x = 0; x < CS.arg_size(); ++x)
+ if (!deleted.count(x))
+ args.push_back(CS.getArgument(x));
+ Value* NCall;
+ if (isa<CallInst>(i))
+ NCall = CallInst::Create(NF, args.begin(), args.end(),
+ CS.getInstruction()->getName(),
+ CS.getInstruction());
+ else
+ NCall = InvokeInst::Create(NF, cast<InvokeInst>(i)->getNormalDest(),
+ cast<InvokeInst>(i)->getUnwindDest(),
+ args.begin(), args.end(),
+ CS.getInstruction()->getName(),
+ CS.getInstruction());
+ CS.getInstruction()->replaceAllUsesWith(NCall);
+ CS.getInstruction()->eraseFromParent();
+ }
+ }
+ }
+ return NF;
+}
+
+
bool PartSpec::runOnModule(Module &M) {
bool Changed = false;
for (Module::iterator I = M.begin(); I != M.end(); ++I) {
@@ -74,10 +124,13 @@ bool PartSpec::runOnModule(Module &M) {
ee = distribution.end(); ii != ee; ++ii)
if (total > ii->second && ii->first &&
ii->second > total * ConstValPercent) {
- Function* NF = CloneFunction(&F);
- NF->setLinkage(GlobalValue::InternalLinkage);
- M.getFunctionList().push_back(NF);
- replaceUsersFor(F, interestingArgs[x], ii->first, NF);
+ DenseMap<const Value*, Value*> m;
+ Function::arg_iterator arg = F.arg_begin();
+ for (int y = 0; y < interestingArgs[x]; ++y)
+ ++arg;
+ m[&*arg] = ii->first;
+ SpecializeFunction(&F, m);
+ ++numSpecialized;
breakOuter = true;
Changed = true;
}
@@ -93,9 +146,18 @@ void PartSpec::scanForInterest(Function& F, SmallVector<int, 6>& args) {
ii != ee; ++ii) {
for(Value::use_iterator ui = ii->use_begin(), ue = ii->use_end();
ui != ue; ++ui) {
- // As an initial proxy for control flow, specialize on arguments
- // that are used in comparisons.
- if (isa<CmpInst>(ui)) {
+
+ bool interesting = false;
+
+ if (isa<CmpInst>(ui)) interesting = true;
+ else if (isa<CallInst>(ui))
+ interesting = ui->getOperand(0) == ii;
+ else if (isa<InvokeInst>(ui))
+ interesting = ui->getOperand(0) == ii;
+ else if (isa<SwitchInst>(ui)) interesting = true;
+ else if (isa<BranchInst>(ui)) interesting = true;
+
+ if (interesting) {
args.push_back(std::distance(F.arg_begin(), ii));
break;
}
@@ -103,18 +165,6 @@ void PartSpec::scanForInterest(Function& F, SmallVector<int, 6>& args) {
}
}
-/// replaceUsersFor - Replace direct calls to F with NF if the arg argnum is
-/// the constant val
-void PartSpec::replaceUsersFor(Function& F , int argnum, Constant* val,
- Function* NF) {
- ++numSpecialized;
- for(Value::use_iterator ii = F.use_begin(), ee = F.use_end();
- ii != ee; ++ii)
- if (CallInst* CI = dyn_cast<CallInst>(ii))
- if (CI->getOperand(0) == &F && CI->getOperand(argnum + 1) == val)
- CI->setOperand(0, NF);
-}
-
int PartSpec::scanDistribution(Function& F, int arg,
std::map<Constant*, int>& dist) {
bool hasIndirect = false;