blob: 037189e949a4c43fc5a1bb91158803ed3408e086 [file] [log] [blame]
Andrew Lenharthcf996d42008-09-03 21:00:28 +00001//===-- PartialSpecialization.cpp - Specialize for common constants--------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass finds function arguments that are often a common constant and
11// specializes a version of the called function for that constant.
12//
Andrew Lenharthef780322008-09-04 14:34:22 +000013// This pass simply does the cloning for functions it specializes. It depends
14// on IPSCCP and DAE to clean up the results.
15//
16// The initial heuristic favors constant arguments that are used in control
17// flow.
Andrew Lenharthcf996d42008-09-03 21:00:28 +000018//
19//===----------------------------------------------------------------------===//
20
21#define DEBUG_TYPE "partialspecialization"
22#include "llvm/Transforms/IPO.h"
23#include "llvm/Constant.h"
24#include "llvm/Instructions.h"
25#include "llvm/Module.h"
26#include "llvm/Pass.h"
27#include "llvm/ADT/Statistic.h"
Kenneth Uildriks74fa7322010-10-09 22:06:36 +000028#include "llvm/Analysis/InlineCost.h"
Andrew Lenharthcf996d42008-09-03 21:00:28 +000029#include "llvm/Transforms/Utils/Cloning.h"
Andrew Lenhartheb504792008-09-04 18:51:26 +000030#include "llvm/Support/CallSite.h"
Andrew Lenhartheb504792008-09-04 18:51:26 +000031#include "llvm/ADT/DenseSet.h"
Andrew Lenharthcf996d42008-09-03 21:00:28 +000032#include <map>
Andrew Lenharthcf996d42008-09-03 21:00:28 +000033using namespace llvm;
34
35STATISTIC(numSpecialized, "Number of specialized functions created");
Kenneth Uildriks3a4340d2010-06-05 14:50:21 +000036STATISTIC(numReplaced, "Number of callers replaced by specialization");
37
38// Maximum number of arguments markable interested
39static const int MaxInterests = 6;
Andrew Lenharthcf996d42008-09-03 21:00:28 +000040
Andrew Lenharthcf996d42008-09-03 21:00:28 +000041namespace {
Kenneth Uildriks3a4340d2010-06-05 14:50:21 +000042 typedef SmallVector<int, MaxInterests> InterestingArgVector;
Nick Lewycky6726b6d2009-10-25 06:33:48 +000043 class PartSpec : public ModulePass {
Kenneth Uildriks3a4340d2010-06-05 14:50:21 +000044 void scanForInterest(Function&, InterestingArgVector&);
Andrew Lenharthcf996d42008-09-03 21:00:28 +000045 int scanDistribution(Function&, int, std::map<Constant*, int>&);
Kenneth Uildriks74fa7322010-10-09 22:06:36 +000046 InlineCostAnalyzer CA;
Andrew Lenharthcf996d42008-09-03 21:00:28 +000047 public :
48 static char ID; // Pass identification, replacement for typeid
Owen Anderson90c579d2010-08-06 18:33:48 +000049 PartSpec() : ModulePass(ID) {}
Andrew Lenharthcf996d42008-09-03 21:00:28 +000050 bool runOnModule(Module &M);
51 };
52}
53
54char PartSpec::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +000055INITIALIZE_PASS(PartSpec, "partialspecialization",
Owen Andersonce665bd2010-10-07 22:25:06 +000056 "Partial Specialization", false, false)
Andrew Lenharthcf996d42008-09-03 21:00:28 +000057
Andrew Lenhartheb504792008-09-04 18:51:26 +000058// Specialize F by replacing the arguments (keys) in replacements with the
59// constants (values). Replace all calls to F with those constants with
60// a call to the specialized function. Returns the specialized function
61static Function*
62SpecializeFunction(Function* F,
Devang Patele9916a32010-06-24 00:33:28 +000063 ValueMap<const Value*, Value*>& replacements) {
Andrew Lenhartheb504792008-09-04 18:51:26 +000064 // arg numbers of deleted arguments
Kenneth Uildriks3a4340d2010-06-05 14:50:21 +000065 DenseMap<unsigned, const Argument*> deleted;
Devang Patele9916a32010-06-24 00:33:28 +000066 for (ValueMap<const Value*, Value*>::iterator
Andrew Lenhartheb504792008-09-04 18:51:26 +000067 repb = replacements.begin(), repe = replacements.end();
Kenneth Uildriks3a4340d2010-06-05 14:50:21 +000068 repb != repe; ++repb) {
69 Argument const *arg = cast<const Argument>(repb->first);
70 deleted[arg->getArgNo()] = arg;
71 }
Andrew Lenhartheb504792008-09-04 18:51:26 +000072
Dan Gohman6cb8c232010-08-26 15:41:53 +000073 Function* NF = CloneFunction(F, replacements,
74 /*ModuleLevelChanges=*/false);
Andrew Lenhartheb504792008-09-04 18:51:26 +000075 NF->setLinkage(GlobalValue::InternalLinkage);
76 F->getParent()->getFunctionList().push_back(NF);
77
Kenneth Uildriks74fa7322010-10-09 22:06:36 +000078 // FIXME: Specialized versions getting the same constants should also get
79 // the same name. That way, specializations for public functions can be
80 // marked linkonce_odr and reused across modules.
81
Andrew Lenhartheb504792008-09-04 18:51:26 +000082 for (Value::use_iterator ii = F->use_begin(), ee = F->use_end();
83 ii != ee; ) {
Nick Lewyckyd694a782009-03-08 19:02:17 +000084 Value::use_iterator i = ii;
Andrew Lenhartheb504792008-09-04 18:51:26 +000085 ++ii;
Gabor Greifefdf0392010-07-22 13:04:32 +000086 User *U = *i;
Gabor Greif945f1ab2010-07-22 13:07:39 +000087 CallSite CS(U);
88 if (CS) {
Andrew Lenhartheb504792008-09-04 18:51:26 +000089 if (CS.getCalledFunction() == F) {
Andrew Lenhartheb504792008-09-04 18:51:26 +000090 SmallVector<Value*, 6> args;
Kenneth Uildriks3a4340d2010-06-05 14:50:21 +000091 // Assemble the non-specialized arguments for the updated callsite.
92 // In the process, make sure that the specialized arguments are
93 // constant and match the specialization. If that's not the case,
94 // this callsite needs to call the original or some other
95 // specialization; don't change it here.
96 CallSite::arg_iterator as = CS.arg_begin(), ae = CS.arg_end();
97 for (CallSite::arg_iterator ai = as; ai != ae; ++ai) {
98 DenseMap<unsigned, const Argument*>::iterator delit = deleted.find(
99 std::distance(as, ai));
100 if (delit == deleted.end())
101 args.push_back(cast<Value>(ai));
102 else {
103 Constant *ci = dyn_cast<Constant>(ai);
104 if (!(ci && ci == replacements[delit->second]))
105 goto next_use;
106 }
107 }
Andrew Lenhartheb504792008-09-04 18:51:26 +0000108 Value* NCall;
Gabor Greifefdf0392010-07-22 13:04:32 +0000109 if (CallInst *CI = dyn_cast<CallInst>(U)) {
Andrew Lenhartheb504792008-09-04 18:51:26 +0000110 NCall = CallInst::Create(NF, args.begin(), args.end(),
Nick Lewyckyd694a782009-03-08 19:02:17 +0000111 CI->getName(), CI);
112 cast<CallInst>(NCall)->setTailCall(CI->isTailCall());
113 cast<CallInst>(NCall)->setCallingConv(CI->getCallingConv());
114 } else {
Gabor Greifefdf0392010-07-22 13:04:32 +0000115 InvokeInst *II = cast<InvokeInst>(U);
Nick Lewyckyd694a782009-03-08 19:02:17 +0000116 NCall = InvokeInst::Create(NF, II->getNormalDest(),
117 II->getUnwindDest(),
Andrew Lenhartheb504792008-09-04 18:51:26 +0000118 args.begin(), args.end(),
Nick Lewyckyd694a782009-03-08 19:02:17 +0000119 II->getName(), II);
120 cast<InvokeInst>(NCall)->setCallingConv(II->getCallingConv());
121 }
Andrew Lenhartheb504792008-09-04 18:51:26 +0000122 CS.getInstruction()->replaceAllUsesWith(NCall);
123 CS.getInstruction()->eraseFromParent();
Kenneth Uildriks3a4340d2010-06-05 14:50:21 +0000124 ++numReplaced;
Andrew Lenhartheb504792008-09-04 18:51:26 +0000125 }
126 }
Gabor Greifefdf0392010-07-22 13:04:32 +0000127 next_use:;
Andrew Lenhartheb504792008-09-04 18:51:26 +0000128 }
129 return NF;
130}
131
132
Andrew Lenharthcf996d42008-09-03 21:00:28 +0000133bool PartSpec::runOnModule(Module &M) {
134 bool Changed = false;
135 for (Module::iterator I = M.begin(); I != M.end(); ++I) {
136 Function &F = *I;
Nuno Lopes7a85a622008-10-08 18:45:59 +0000137 if (F.isDeclaration() || F.mayBeOverridden()) continue;
Kenneth Uildriks3a4340d2010-06-05 14:50:21 +0000138 InterestingArgVector interestingArgs;
Andrew Lenharthef780322008-09-04 14:34:22 +0000139 scanForInterest(F, interestingArgs);
140
141 // Find the first interesting Argument that we can specialize on
142 // If there are multiple interesting Arguments, then those will be found
143 // when processing the cloned function.
144 bool breakOuter = false;
145 for (unsigned int x = 0; !breakOuter && x < interestingArgs.size(); ++x) {
146 std::map<Constant*, int> distribution;
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000147 scanDistribution(F, interestingArgs[x], distribution);
148 for (std::map<Constant*, int>::iterator ii = distribution.begin(),
149 ee = distribution.end(); ii != ee; ++ii) {
150 // The distribution map might have an entry for NULL (i.e., one or more
151 // callsites were passing a non-constant there). We allow that to
152 // happen so that we can see whether any callsites pass a non-constant;
153 // if none do and the function is internal, we might have an opportunity
154 // to kill the original function.
155 if (!ii->first) continue;
156 int bonus = ii->second;
157 SmallVector<unsigned, 1> argnos;
158 argnos.push_back(interestingArgs[x]);
159 InlineCost cost = CA.getSpecializationCost(&F, argnos);
160 // FIXME: If this is the last constant entry, and no non-constant
161 // entries exist, and the target function is internal, the cost should
162 // be reduced by the original size of the target function, almost
163 // certainly making it negative and causing a specialization that will
164 // leave the original function dead and removable.
165 if (cost.isAlways() ||
166 (cost.isVariable() && cost.getValue() < bonus)) {
167 ValueMap<const Value*, Value*> m;
168 Function::arg_iterator arg = F.arg_begin();
169 for (int y = 0; y < interestingArgs[x]; ++y)
170 ++arg;
171 m[&*arg] = ii->first;
172 SpecializeFunction(&F, m);
173 ++numSpecialized;
174 breakOuter = true;
175 Changed = true;
176 }
177 }
Andrew Lenharthcf996d42008-09-03 21:00:28 +0000178 }
179 }
180 return Changed;
181}
182
183/// scanForInterest - This function decides which arguments would be worth
Andrew Lenharthef780322008-09-04 14:34:22 +0000184/// specializing on.
Kenneth Uildriks3a4340d2010-06-05 14:50:21 +0000185void PartSpec::scanForInterest(Function& F, InterestingArgVector& args) {
Andrew Lenharthcf996d42008-09-03 21:00:28 +0000186 for(Function::arg_iterator ii = F.arg_begin(), ee = F.arg_end();
187 ii != ee; ++ii) {
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000188 int argno = std::distance(F.arg_begin(), ii);
189 SmallVector<unsigned, 1> argnos;
190 argnos.push_back(argno);
191 int bonus = CA.getSpecializationBonus(&F, argnos);
192 if (bonus > 0) {
193 args.push_back(argno);
Andrew Lenharthcf996d42008-09-03 21:00:28 +0000194 }
195 }
196}
197
Andrew Lenharth06a12422008-11-03 19:29:29 +0000198/// scanDistribution - Construct a histogram of constants for arg of F at arg.
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000199/// For each distinct constant, we'll compute the total of the specialization
200/// bonus across all callsites passing that constant; if that total exceeds
201/// the specialization cost, we will create the specialization.
Andrew Lenharthcf996d42008-09-03 21:00:28 +0000202int PartSpec::scanDistribution(Function& F, int arg,
203 std::map<Constant*, int>& dist) {
Andrew Lenharthef780322008-09-04 14:34:22 +0000204 bool hasIndirect = false;
Andrew Lenharthcf996d42008-09-03 21:00:28 +0000205 int total = 0;
Gabor Greifefdf0392010-07-22 13:04:32 +0000206 for (Value::use_iterator ii = F.use_begin(), ee = F.use_end();
207 ii != ee; ++ii) {
208 User *U = *ii;
209 CallSite CS(U);
210 if (CS && CS.getCalledFunction() == &F) {
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000211 SmallVector<unsigned, 1> argnos;
212 argnos.push_back(arg);
213 dist[dyn_cast<Constant>(CS.getArgument(arg))] +=
214 CA.getSpecializationBonus(&F, argnos);
Andrew Lenharthcf996d42008-09-03 21:00:28 +0000215 ++total;
216 } else
Andrew Lenharthef780322008-09-04 14:34:22 +0000217 hasIndirect = true;
Gabor Greifefdf0392010-07-22 13:04:32 +0000218 }
Andrew Lenharthef780322008-09-04 14:34:22 +0000219
220 // Preserve the original address taken function even if all other uses
221 // will be specialized.
222 if (hasIndirect) ++total;
Andrew Lenharthcf996d42008-09-03 21:00:28 +0000223 return total;
224}
225
226ModulePass* llvm::createPartialSpecializationPass() { return new PartSpec(); }