blob: 8361930e94437f6504edcada7213887eab6b6caa [file] [log] [blame]
Chris Lattner22ee3eb2002-05-24 20:42:13 +00001//===- FunctionResolution.cpp - Resolve declarations to implementations ---===//
John Criswellb576c942003-10-20 19:43:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner22ee3eb2002-05-24 20:42:13 +00009//
10// Loop over the functions that are in the module and look for functions that
11// have the same name. More often than not, there will be things like:
12//
13// declare void %foo(...)
14// void %foo(int, int) { ... }
15//
16// because of the way things are declared in C. If this is the case, patch
17// things up.
18//
19//===----------------------------------------------------------------------===//
20
Chris Lattnerff1be262002-07-23 22:04:02 +000021#include "llvm/Transforms/IPO.h"
Chris Lattner22ee3eb2002-05-24 20:42:13 +000022#include "llvm/Module.h"
Chris Lattner22ee3eb2002-05-24 20:42:13 +000023#include "llvm/DerivedTypes.h"
24#include "llvm/Pass.h"
25#include "llvm/iOther.h"
Chris Lattnera45ec542002-10-09 21:10:06 +000026#include "llvm/Constants.h"
Chris Lattner03fb8b22003-11-20 21:21:31 +000027#include "llvm/Support/CallSite.h"
Chris Lattnerefd47ba2003-10-22 03:35:34 +000028#include "llvm/Target/TargetData.h"
Chris Lattner250d91b2003-08-13 22:15:04 +000029#include "llvm/Assembly/Writer.h"
Chris Lattnera92f6962002-10-01 22:38:41 +000030#include "Support/Statistic.h"
Chris Lattner22ee3eb2002-05-24 20:42:13 +000031#include <algorithm>
Chris Lattner03fb8b22003-11-20 21:21:31 +000032using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000033
Chris Lattner22ee3eb2002-05-24 20:42:13 +000034namespace {
Chris Lattnera92f6962002-10-01 22:38:41 +000035 Statistic<>NumResolved("funcresolve", "Number of varargs functions resolved");
Chris Lattnera45ec542002-10-09 21:10:06 +000036 Statistic<> NumGlobals("funcresolve", "Number of global variables resolved");
Chris Lattner22ee3eb2002-05-24 20:42:13 +000037
38 struct FunctionResolvingPass : public Pass {
Chris Lattnerefd47ba2003-10-22 03:35:34 +000039 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
40 AU.addRequired<TargetData>();
41 }
42
Chris Lattner7e708292002-06-25 16:13:24 +000043 bool run(Module &M);
Chris Lattner22ee3eb2002-05-24 20:42:13 +000044 };
Chris Lattner1e435162002-07-26 21:12:44 +000045 RegisterOpt<FunctionResolvingPass> X("funcresolve", "Resolve Functions");
Chris Lattner22ee3eb2002-05-24 20:42:13 +000046}
47
Chris Lattner03fb8b22003-11-20 21:21:31 +000048Pass *llvm::createFunctionResolvingPass() {
Chris Lattner22ee3eb2002-05-24 20:42:13 +000049 return new FunctionResolvingPass();
50}
51
Chris Lattnerda902ba2003-01-30 18:22:32 +000052static bool ResolveFunctions(Module &M, std::vector<GlobalValue*> &Globals,
Chris Lattnera45ec542002-10-09 21:10:06 +000053 Function *Concrete) {
54 bool Changed = false;
55 for (unsigned i = 0; i != Globals.size(); ++i)
56 if (Globals[i] != Concrete) {
57 Function *Old = cast<Function>(Globals[i]);
58 const FunctionType *OldMT = Old->getFunctionType();
59 const FunctionType *ConcreteMT = Concrete->getFunctionType();
60
Chris Lattner1fd95af2003-04-28 01:23:29 +000061 if (OldMT->getParamTypes().size() > ConcreteMT->getParamTypes().size() &&
Chris Lattnerdde601d2003-03-03 19:57:46 +000062 !ConcreteMT->isVarArg())
Chris Lattner4e2fd752003-02-27 20:55:48 +000063 if (!Old->use_empty()) {
64 std::cerr << "WARNING: Linking function '" << Old->getName()
65 << "' is causing arguments to be dropped.\n";
66 std::cerr << "WARNING: Prototype: ";
67 WriteAsOperand(std::cerr, Old);
68 std::cerr << " resolved to ";
69 WriteAsOperand(std::cerr, Concrete);
70 std::cerr << "\n";
71 }
Chris Lattnera45ec542002-10-09 21:10:06 +000072
73 // Check to make sure that if there are specified types, that they
74 // match...
75 //
Chris Lattner4e2fd752003-02-27 20:55:48 +000076 unsigned NumArguments = std::min(OldMT->getParamTypes().size(),
77 ConcreteMT->getParamTypes().size());
78
Chris Lattnerdde601d2003-03-03 19:57:46 +000079 if (!Old->use_empty() && !Concrete->use_empty())
80 for (unsigned i = 0; i < NumArguments; ++i)
Chris Lattnera0f85e52003-08-23 20:03:05 +000081 if (OldMT->getParamTypes()[i] != ConcreteMT->getParamTypes()[i])
Chris Lattnerb29170f2003-08-20 23:50:38 +000082 if (OldMT->getParamTypes()[i]->getPrimitiveID() !=
Chris Lattnera0f85e52003-08-23 20:03:05 +000083 ConcreteMT->getParamTypes()[i]->getPrimitiveID()) {
84 std::cerr << "WARNING: Function [" << Old->getName()
Chris Lattner143df9a2003-11-20 18:19:35 +000085 << "]: Parameter types conflict for: '";
86 WriteTypeSymbolic(std::cerr, OldMT, &M);
87 std::cerr << "' and '";
88 WriteTypeSymbolic(std::cerr, ConcreteMT, &M);
89 std::cerr << "'\n";
Chris Lattnerb29170f2003-08-20 23:50:38 +000090 return Changed;
Chris Lattnera0f85e52003-08-23 20:03:05 +000091 }
Chris Lattnera45ec542002-10-09 21:10:06 +000092
Chris Lattner1fd95af2003-04-28 01:23:29 +000093 // Attempt to convert all of the uses of the old function to the concrete
94 // form of the function. If there is a use of the fn that we don't
95 // understand here we punt to avoid making a bad transformation.
Chris Lattnera45ec542002-10-09 21:10:06 +000096 //
Chris Lattner1fd95af2003-04-28 01:23:29 +000097 // At this point, we know that the return values are the same for our two
98 // functions and that the Old function has no varargs fns specified. In
99 // otherwords it's just <retty> (...)
Chris Lattnera45ec542002-10-09 21:10:06 +0000100 //
Chris Lattner1078d112003-07-23 22:03:18 +0000101 if (!Old->use_empty()) { // Avoid making the CPR unless we really need it
102 Value *Replacement = Concrete;
103 if (Concrete->getType() != Old->getType())
104 Replacement = ConstantExpr::getCast(ConstantPointerRef::get(Concrete),
105 Old->getType());
106 NumResolved += Old->use_size();
107 Old->replaceAllUsesWith(Replacement);
108 }
Chris Lattner12ce59d2003-05-31 21:08:45 +0000109
110 // Since there are no uses of Old anymore, remove it from the module.
111 M.getFunctionList().erase(Old);
Chris Lattnera45ec542002-10-09 21:10:06 +0000112 }
113 return Changed;
114}
115
116
Chris Lattnerda902ba2003-01-30 18:22:32 +0000117static bool ResolveGlobalVariables(Module &M,
118 std::vector<GlobalValue*> &Globals,
Chris Lattnera45ec542002-10-09 21:10:06 +0000119 GlobalVariable *Concrete) {
120 bool Changed = false;
Chris Lattnerea2294a2003-04-19 00:15:27 +0000121 Constant *CCPR = ConstantPointerRef::get(Concrete);
122
Chris Lattnera45ec542002-10-09 21:10:06 +0000123 for (unsigned i = 0; i != Globals.size(); ++i)
124 if (Globals[i] != Concrete) {
Chris Lattner5858e1e2003-10-21 23:17:56 +0000125 Constant *Cast = ConstantExpr::getCast(CCPR, Globals[i]->getType());
126 Globals[i]->replaceAllUsesWith(Cast);
Chris Lattnerea2294a2003-04-19 00:15:27 +0000127
Chris Lattnera45ec542002-10-09 21:10:06 +0000128 // Since there are no uses of Old anymore, remove it from the module.
Chris Lattner5858e1e2003-10-21 23:17:56 +0000129 M.getGlobalList().erase(cast<GlobalVariable>(Globals[i]));
Chris Lattnera45ec542002-10-09 21:10:06 +0000130
131 ++NumGlobals;
132 Changed = true;
133 }
134 return Changed;
135}
136
Chris Lattner03fb8b22003-11-20 21:21:31 +0000137// Check to see if all of the callers of F ignore the return value.
138static bool CallersAllIgnoreReturnValue(Function &F) {
139 if (F.getReturnType() == Type::VoidTy) return true;
140 for (Value::use_iterator I = F.use_begin(), E = F.use_end(); I != E; ++I) {
141 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(*I)) {
142 for (Value::use_iterator I = CPR->use_begin(), E = CPR->use_end();
143 I != E; ++I) {
144 CallSite CS = CallSite::get(*I);
145 if (!CS.getInstruction() || !CS.getInstruction()->use_empty())
146 return false;
147 }
148 } else {
149 CallSite CS = CallSite::get(*I);
150 if (!CS.getInstruction() || !CS.getInstruction()->use_empty())
151 return false;
152 }
153 }
154 return true;
155}
156
Chris Lattnerefd47ba2003-10-22 03:35:34 +0000157static bool ProcessGlobalsWithSameName(Module &M, TargetData &TD,
Chris Lattnerda902ba2003-01-30 18:22:32 +0000158 std::vector<GlobalValue*> &Globals) {
Chris Lattnera45ec542002-10-09 21:10:06 +0000159 assert(!Globals.empty() && "Globals list shouldn't be empty here!");
160
161 bool isFunction = isa<Function>(Globals[0]); // Is this group all functions?
Chris Lattnera45ec542002-10-09 21:10:06 +0000162 GlobalValue *Concrete = 0; // The most concrete implementation to resolve to
163
Chris Lattnera45ec542002-10-09 21:10:06 +0000164 for (unsigned i = 0; i != Globals.size(); ) {
165 if (isa<Function>(Globals[i]) != isFunction) {
166 std::cerr << "WARNING: Found function and global variable with the "
167 << "same name: '" << Globals[i]->getName() << "'.\n";
168 return false; // Don't know how to handle this, bail out!
169 }
170
Chris Lattnera2b8d7b2002-11-10 03:36:55 +0000171 if (isFunction) {
Chris Lattnera45ec542002-10-09 21:10:06 +0000172 // For functions, we look to merge functions definitions of "int (...)"
173 // to 'int (int)' or 'int ()' or whatever else is not completely generic.
174 //
175 Function *F = cast<Function>(Globals[i]);
Chris Lattner6f239632002-11-08 00:38:20 +0000176 if (!F->isExternal()) {
Chris Lattnera2b8d7b2002-11-10 03:36:55 +0000177 if (Concrete && !Concrete->isExternal())
Chris Lattnera45ec542002-10-09 21:10:06 +0000178 return false; // Found two different functions types. Can't choose!
179
180 Concrete = Globals[i];
Chris Lattnera2b8d7b2002-11-10 03:36:55 +0000181 } else if (Concrete) {
Chris Lattner03fb8b22003-11-20 21:21:31 +0000182 if (Concrete->isExternal()) // If we have multiple external symbols...
Chris Lattnera2b8d7b2002-11-10 03:36:55 +0000183 if (F->getFunctionType()->getNumParams() >
184 cast<Function>(Concrete)->getFunctionType()->getNumParams())
185 Concrete = F; // We are more concrete than "Concrete"!
186
187 } else {
188 Concrete = F;
Chris Lattnera45ec542002-10-09 21:10:06 +0000189 }
Chris Lattnera45ec542002-10-09 21:10:06 +0000190 } else {
Chris Lattnera45ec542002-10-09 21:10:06 +0000191 GlobalVariable *GV = cast<GlobalVariable>(Globals[i]);
Chris Lattner5858e1e2003-10-21 23:17:56 +0000192 if (!GV->isExternal()) {
193 if (Concrete) {
194 std::cerr << "WARNING: Two global variables with external linkage"
195 << " exist with the same name: '" << GV->getName()
196 << "'!\n";
197 return false;
Chris Lattnera45ec542002-10-09 21:10:06 +0000198 }
Chris Lattner5858e1e2003-10-21 23:17:56 +0000199 Concrete = GV;
Chris Lattnera45ec542002-10-09 21:10:06 +0000200 }
Chris Lattnera45ec542002-10-09 21:10:06 +0000201 }
Chris Lattnerea2294a2003-04-19 00:15:27 +0000202 ++i;
Chris Lattnera45ec542002-10-09 21:10:06 +0000203 }
204
205 if (Globals.size() > 1) { // Found a multiply defined global...
Chris Lattnerc16e6312003-05-31 21:57:06 +0000206 // If there are no external declarations, and there is at most one
207 // externally visible instance of the global, then there is nothing to do.
208 //
209 bool HasExternal = false;
210 unsigned NumInstancesWithExternalLinkage = 0;
211
212 for (unsigned i = 0, e = Globals.size(); i != e; ++i) {
213 if (Globals[i]->isExternal())
214 HasExternal = true;
215 else if (!Globals[i]->hasInternalLinkage())
216 NumInstancesWithExternalLinkage++;
217 }
218
219 if (!HasExternal && NumInstancesWithExternalLinkage <= 1)
220 return false; // Nothing to do? Must have multiple internal definitions.
221
Chris Lattnerce94319552003-10-22 23:03:38 +0000222 // There are a couple of special cases we don't want to print the warning
223 // for, check them now.
224 bool DontPrintWarning = false;
225 if (Concrete && Globals.size() == 2) {
226 GlobalValue *Other = Globals[Globals[0] == Concrete];
227 // If the non-concrete global is a function which takes (...) arguments,
Chris Lattner03fb8b22003-11-20 21:21:31 +0000228 // and the return values match (or was never used), do not warn.
Chris Lattnerce94319552003-10-22 23:03:38 +0000229 if (Function *ConcreteF = dyn_cast<Function>(Concrete))
230 if (Function *OtherF = dyn_cast<Function>(Other))
Chris Lattner03fb8b22003-11-20 21:21:31 +0000231 if ((ConcreteF->getReturnType() == OtherF->getReturnType() ||
232 CallersAllIgnoreReturnValue(*OtherF)) &&
Chris Lattnerce94319552003-10-22 23:03:38 +0000233 OtherF->getFunctionType()->isVarArg() &&
234 OtherF->getFunctionType()->getParamTypes().empty())
235 DontPrintWarning = true;
236
237 // Otherwise, if the non-concrete global is a global array variable with a
238 // size of 0, and the concrete global is an array with a real size, don't
239 // warn. This occurs due to declaring 'extern int A[];'.
240 if (GlobalVariable *ConcreteGV = dyn_cast<GlobalVariable>(Concrete))
241 if (GlobalVariable *OtherGV = dyn_cast<GlobalVariable>(Other))
242 if (const ArrayType *OtherAT =
243 dyn_cast<ArrayType>(OtherGV->getType()->getElementType()))
244 if (const ArrayType *ConcreteAT =
245 dyn_cast<ArrayType>(ConcreteGV->getType()->getElementType()))
246 if (OtherAT->getElementType() == ConcreteAT->getElementType() &&
247 OtherAT->getNumElements() == 0)
248 DontPrintWarning = true;
249 }
Chris Lattnerc16e6312003-05-31 21:57:06 +0000250
Chris Lattnerce94319552003-10-22 23:03:38 +0000251 if (!DontPrintWarning) {
252 std::cerr << "WARNING: Found global types that are not compatible:\n";
253 for (unsigned i = 0; i < Globals.size(); ++i) {
Chris Lattner143df9a2003-11-20 18:19:35 +0000254 std::cerr << "\t";
255 WriteTypeSymbolic(std::cerr, Globals[i]->getType(), &M);
256 std::cerr << " %" << Globals[i]->getName() << "\n";
Chris Lattnerce94319552003-10-22 23:03:38 +0000257 }
Chris Lattnera45ec542002-10-09 21:10:06 +0000258 }
259
Chris Lattner5858e1e2003-10-21 23:17:56 +0000260 if (!Concrete)
261 Concrete = Globals[0];
Chris Lattnerefd47ba2003-10-22 03:35:34 +0000262 else if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Concrete)) {
263 // Handle special case hack to change globals if it will make their types
264 // happier in the long run. The situation we do this is intentionally
265 // extremely limited.
266 if (GV->use_empty() && GV->hasInitializer() &&
267 GV->getInitializer()->isNullValue()) {
268 // Check to see if there is another (external) global with the same size
269 // and a non-empty use-list. If so, we will make IT be the real
270 // implementation.
271 unsigned TS = TD.getTypeSize(Concrete->getType()->getElementType());
272 for (unsigned i = 0, e = Globals.size(); i != e; ++i)
273 if (Globals[i] != Concrete && !Globals[i]->use_empty() &&
274 isa<GlobalVariable>(Globals[i]) &&
275 TD.getTypeSize(Globals[i]->getType()->getElementType()) == TS) {
276 // At this point we want to replace Concrete with Globals[i]. Make
277 // concrete external, and Globals[i] have an initializer.
278 GlobalVariable *NGV = cast<GlobalVariable>(Globals[i]);
279 const Type *ElTy = NGV->getType()->getElementType();
280 NGV->setInitializer(Constant::getNullValue(ElTy));
281 cast<GlobalVariable>(Concrete)->setInitializer(0);
282 Concrete = NGV;
283 break;
284 }
285 }
286 }
Chris Lattner5858e1e2003-10-21 23:17:56 +0000287
Chris Lattnera45ec542002-10-09 21:10:06 +0000288 if (isFunction)
Chris Lattnerea2294a2003-04-19 00:15:27 +0000289 return ResolveFunctions(M, Globals, cast<Function>(Concrete));
Chris Lattnera45ec542002-10-09 21:10:06 +0000290 else
Chris Lattnerea2294a2003-04-19 00:15:27 +0000291 return ResolveGlobalVariables(M, Globals,
292 cast<GlobalVariable>(Concrete));
Chris Lattnera45ec542002-10-09 21:10:06 +0000293 }
Chris Lattnerea2294a2003-04-19 00:15:27 +0000294 return false;
Chris Lattnera45ec542002-10-09 21:10:06 +0000295}
296
Chris Lattner7e708292002-06-25 16:13:24 +0000297bool FunctionResolvingPass::run(Module &M) {
Chris Lattnerda902ba2003-01-30 18:22:32 +0000298 std::map<std::string, std::vector<GlobalValue*> > Globals;
Chris Lattner22ee3eb2002-05-24 20:42:13 +0000299
Chris Lattner4cb766a2003-10-22 04:42:20 +0000300 // Loop over the globals, adding them to the Globals map. We use a two pass
301 // algorithm here to avoid problems with iterators getting invalidated if we
302 // did a one pass scheme.
Chris Lattner22ee3eb2002-05-24 20:42:13 +0000303 //
Chris Lattner6be5e562003-10-22 04:43:18 +0000304 bool Changed = false;
Chris Lattner4cb766a2003-10-22 04:42:20 +0000305 for (Module::iterator I = M.begin(), E = M.end(); I != E; ) {
306 Function *F = I++;
Chris Lattner6be5e562003-10-22 04:43:18 +0000307 if (F->use_empty() && F->isExternal()) {
Chris Lattner4cb766a2003-10-22 04:42:20 +0000308 M.getFunctionList().erase(F);
Chris Lattner6be5e562003-10-22 04:43:18 +0000309 Changed = true;
310 } else if (!F->hasInternalLinkage() && !F->getName().empty())
Chris Lattner4cb766a2003-10-22 04:42:20 +0000311 Globals[F->getName()].push_back(F);
312 }
313
314 for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ) {
315 GlobalVariable *GV = I++;
Chris Lattner6be5e562003-10-22 04:43:18 +0000316 if (GV->use_empty() && GV->isExternal()) {
Chris Lattner4cb766a2003-10-22 04:42:20 +0000317 M.getGlobalList().erase(GV);
Chris Lattner6be5e562003-10-22 04:43:18 +0000318 Changed = true;
319 } else if (!GV->hasInternalLinkage() && !GV->getName().empty())
Chris Lattner4cb766a2003-10-22 04:42:20 +0000320 Globals[GV->getName()].push_back(GV);
321 }
Chris Lattner22ee3eb2002-05-24 20:42:13 +0000322
Chris Lattnerefd47ba2003-10-22 03:35:34 +0000323 TargetData &TD = getAnalysis<TargetData>();
324
Chris Lattner22ee3eb2002-05-24 20:42:13 +0000325 // Now we have a list of all functions with a particular name. If there is
326 // more than one entry in a list, merge the functions together.
327 //
Chris Lattnerda902ba2003-01-30 18:22:32 +0000328 for (std::map<std::string, std::vector<GlobalValue*> >::iterator
329 I = Globals.begin(), E = Globals.end(); I != E; ++I)
Chris Lattnerefd47ba2003-10-22 03:35:34 +0000330 Changed |= ProcessGlobalsWithSameName(M, TD, I->second);
Chris Lattner22ee3eb2002-05-24 20:42:13 +0000331
Chris Lattnera2b8d7b2002-11-10 03:36:55 +0000332 // Now loop over all of the globals, checking to see if any are trivially
333 // dead. If so, remove them now.
334
335 for (Module::iterator I = M.begin(), E = M.end(); I != E; )
336 if (I->isExternal() && I->use_empty()) {
337 Function *F = I;
338 ++I;
339 M.getFunctionList().erase(F);
340 ++NumResolved;
341 Changed = true;
342 } else {
343 ++I;
344 }
345
346 for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; )
347 if (I->isExternal() && I->use_empty()) {
348 GlobalVariable *GV = I;
349 ++I;
350 M.getGlobalList().erase(GV);
351 ++NumGlobals;
352 Changed = true;
353 } else {
354 ++I;
355 }
356
Chris Lattner22ee3eb2002-05-24 20:42:13 +0000357 return Changed;
358}