2002-05-24 20:42:13 +00:00
|
|
|
//===- FunctionResolution.cpp - Resolve declarations to implementations ---===//
|
2003-10-20 19:43:21 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2002-05-24 20:42:13 +00:00
|
|
|
//
|
|
|
|
// Loop over the functions that are in the module and look for functions that
|
|
|
|
// have the same name. More often than not, there will be things like:
|
|
|
|
//
|
|
|
|
// declare void %foo(...)
|
|
|
|
// void %foo(int, int) { ... }
|
|
|
|
//
|
|
|
|
// because of the way things are declared in C. If this is the case, patch
|
|
|
|
// things up.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-07-23 22:04:02 +00:00
|
|
|
#include "llvm/Transforms/IPO.h"
|
2002-05-24 20:42:13 +00:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/iOther.h"
|
2002-10-09 21:10:06 +00:00
|
|
|
#include "llvm/Constants.h"
|
2003-10-22 03:35:34 +00:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2003-08-13 22:15:04 +00:00
|
|
|
#include "llvm/Assembly/Writer.h"
|
2002-10-01 22:38:41 +00:00
|
|
|
#include "Support/Statistic.h"
|
2002-05-24 20:42:13 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
namespace {
|
2002-10-01 22:38:41 +00:00
|
|
|
Statistic<>NumResolved("funcresolve", "Number of varargs functions resolved");
|
2002-10-09 21:10:06 +00:00
|
|
|
Statistic<> NumGlobals("funcresolve", "Number of global variables resolved");
|
2002-05-24 20:42:13 +00:00
|
|
|
|
|
|
|
struct FunctionResolvingPass : public Pass {
|
2003-10-22 03:35:34 +00:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequired<TargetData>();
|
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
bool run(Module &M);
|
2002-05-24 20:42:13 +00:00
|
|
|
};
|
2002-07-26 21:12:44 +00:00
|
|
|
RegisterOpt<FunctionResolvingPass> X("funcresolve", "Resolve Functions");
|
2002-05-24 20:42:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Pass *createFunctionResolvingPass() {
|
|
|
|
return new FunctionResolvingPass();
|
|
|
|
}
|
|
|
|
|
2003-01-30 18:22:32 +00:00
|
|
|
static bool ResolveFunctions(Module &M, std::vector<GlobalValue*> &Globals,
|
2002-10-09 21:10:06 +00:00
|
|
|
Function *Concrete) {
|
|
|
|
bool Changed = false;
|
|
|
|
for (unsigned i = 0; i != Globals.size(); ++i)
|
|
|
|
if (Globals[i] != Concrete) {
|
|
|
|
Function *Old = cast<Function>(Globals[i]);
|
|
|
|
const FunctionType *OldMT = Old->getFunctionType();
|
|
|
|
const FunctionType *ConcreteMT = Concrete->getFunctionType();
|
|
|
|
|
2003-04-28 01:23:29 +00:00
|
|
|
if (OldMT->getParamTypes().size() > ConcreteMT->getParamTypes().size() &&
|
2003-03-03 19:57:46 +00:00
|
|
|
!ConcreteMT->isVarArg())
|
2003-02-27 20:55:48 +00:00
|
|
|
if (!Old->use_empty()) {
|
|
|
|
std::cerr << "WARNING: Linking function '" << Old->getName()
|
|
|
|
<< "' is causing arguments to be dropped.\n";
|
|
|
|
std::cerr << "WARNING: Prototype: ";
|
|
|
|
WriteAsOperand(std::cerr, Old);
|
|
|
|
std::cerr << " resolved to ";
|
|
|
|
WriteAsOperand(std::cerr, Concrete);
|
|
|
|
std::cerr << "\n";
|
|
|
|
}
|
2002-10-09 21:10:06 +00:00
|
|
|
|
|
|
|
// Check to make sure that if there are specified types, that they
|
|
|
|
// match...
|
|
|
|
//
|
2003-02-27 20:55:48 +00:00
|
|
|
unsigned NumArguments = std::min(OldMT->getParamTypes().size(),
|
|
|
|
ConcreteMT->getParamTypes().size());
|
|
|
|
|
2003-03-03 19:57:46 +00:00
|
|
|
if (!Old->use_empty() && !Concrete->use_empty())
|
|
|
|
for (unsigned i = 0; i < NumArguments; ++i)
|
2003-08-23 20:03:05 +00:00
|
|
|
if (OldMT->getParamTypes()[i] != ConcreteMT->getParamTypes()[i])
|
2003-08-20 23:50:38 +00:00
|
|
|
if (OldMT->getParamTypes()[i]->getPrimitiveID() !=
|
2003-08-23 20:03:05 +00:00
|
|
|
ConcreteMT->getParamTypes()[i]->getPrimitiveID()) {
|
|
|
|
std::cerr << "WARNING: Function [" << Old->getName()
|
|
|
|
<< "]: Parameter types conflict for: '" << OldMT
|
|
|
|
<< "' and '" << ConcreteMT << "'\n";
|
2003-08-20 23:50:38 +00:00
|
|
|
return Changed;
|
2003-08-23 20:03:05 +00:00
|
|
|
}
|
2002-10-09 21:10:06 +00:00
|
|
|
|
2003-04-28 01:23:29 +00:00
|
|
|
// Attempt to convert all of the uses of the old function to the concrete
|
|
|
|
// form of the function. If there is a use of the fn that we don't
|
|
|
|
// understand here we punt to avoid making a bad transformation.
|
2002-10-09 21:10:06 +00:00
|
|
|
//
|
2003-04-28 01:23:29 +00:00
|
|
|
// At this point, we know that the return values are the same for our two
|
|
|
|
// functions and that the Old function has no varargs fns specified. In
|
|
|
|
// otherwords it's just <retty> (...)
|
2002-10-09 21:10:06 +00:00
|
|
|
//
|
2003-07-23 22:03:18 +00:00
|
|
|
if (!Old->use_empty()) { // Avoid making the CPR unless we really need it
|
|
|
|
Value *Replacement = Concrete;
|
|
|
|
if (Concrete->getType() != Old->getType())
|
|
|
|
Replacement = ConstantExpr::getCast(ConstantPointerRef::get(Concrete),
|
|
|
|
Old->getType());
|
|
|
|
NumResolved += Old->use_size();
|
|
|
|
Old->replaceAllUsesWith(Replacement);
|
|
|
|
}
|
2003-05-31 21:08:45 +00:00
|
|
|
|
|
|
|
// Since there are no uses of Old anymore, remove it from the module.
|
|
|
|
M.getFunctionList().erase(Old);
|
2002-10-09 21:10:06 +00:00
|
|
|
}
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-01-30 18:22:32 +00:00
|
|
|
static bool ResolveGlobalVariables(Module &M,
|
|
|
|
std::vector<GlobalValue*> &Globals,
|
2002-10-09 21:10:06 +00:00
|
|
|
GlobalVariable *Concrete) {
|
|
|
|
bool Changed = false;
|
2003-04-19 00:15:27 +00:00
|
|
|
Constant *CCPR = ConstantPointerRef::get(Concrete);
|
|
|
|
|
2002-10-09 21:10:06 +00:00
|
|
|
for (unsigned i = 0; i != Globals.size(); ++i)
|
|
|
|
if (Globals[i] != Concrete) {
|
2003-10-21 23:17:56 +00:00
|
|
|
Constant *Cast = ConstantExpr::getCast(CCPR, Globals[i]->getType());
|
|
|
|
Globals[i]->replaceAllUsesWith(Cast);
|
2003-04-19 00:15:27 +00:00
|
|
|
|
2002-10-09 21:10:06 +00:00
|
|
|
// Since there are no uses of Old anymore, remove it from the module.
|
2003-10-21 23:17:56 +00:00
|
|
|
M.getGlobalList().erase(cast<GlobalVariable>(Globals[i]));
|
2002-10-09 21:10:06 +00:00
|
|
|
|
|
|
|
++NumGlobals;
|
|
|
|
Changed = true;
|
|
|
|
}
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
2003-10-22 03:35:34 +00:00
|
|
|
static bool ProcessGlobalsWithSameName(Module &M, TargetData &TD,
|
2003-01-30 18:22:32 +00:00
|
|
|
std::vector<GlobalValue*> &Globals) {
|
2002-10-09 21:10:06 +00:00
|
|
|
assert(!Globals.empty() && "Globals list shouldn't be empty here!");
|
|
|
|
|
|
|
|
bool isFunction = isa<Function>(Globals[0]); // Is this group all functions?
|
|
|
|
GlobalValue *Concrete = 0; // The most concrete implementation to resolve to
|
|
|
|
|
|
|
|
for (unsigned i = 0; i != Globals.size(); ) {
|
|
|
|
if (isa<Function>(Globals[i]) != isFunction) {
|
|
|
|
std::cerr << "WARNING: Found function and global variable with the "
|
|
|
|
<< "same name: '" << Globals[i]->getName() << "'.\n";
|
|
|
|
return false; // Don't know how to handle this, bail out!
|
|
|
|
}
|
|
|
|
|
2002-11-10 03:36:55 +00:00
|
|
|
if (isFunction) {
|
2002-10-09 21:10:06 +00:00
|
|
|
// For functions, we look to merge functions definitions of "int (...)"
|
|
|
|
// to 'int (int)' or 'int ()' or whatever else is not completely generic.
|
|
|
|
//
|
|
|
|
Function *F = cast<Function>(Globals[i]);
|
2002-11-08 00:38:20 +00:00
|
|
|
if (!F->isExternal()) {
|
2002-11-10 03:36:55 +00:00
|
|
|
if (Concrete && !Concrete->isExternal())
|
2002-10-09 21:10:06 +00:00
|
|
|
return false; // Found two different functions types. Can't choose!
|
|
|
|
|
|
|
|
Concrete = Globals[i];
|
2002-11-10 03:36:55 +00:00
|
|
|
} else if (Concrete) {
|
|
|
|
if (Concrete->isExternal()) // If we have multiple external symbols...x
|
|
|
|
if (F->getFunctionType()->getNumParams() >
|
|
|
|
cast<Function>(Concrete)->getFunctionType()->getNumParams())
|
|
|
|
Concrete = F; // We are more concrete than "Concrete"!
|
|
|
|
|
|
|
|
} else {
|
|
|
|
Concrete = F;
|
2002-10-09 21:10:06 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
GlobalVariable *GV = cast<GlobalVariable>(Globals[i]);
|
2003-10-21 23:17:56 +00:00
|
|
|
if (!GV->isExternal()) {
|
|
|
|
if (Concrete) {
|
|
|
|
std::cerr << "WARNING: Two global variables with external linkage"
|
|
|
|
<< " exist with the same name: '" << GV->getName()
|
|
|
|
<< "'!\n";
|
|
|
|
return false;
|
2002-10-09 21:10:06 +00:00
|
|
|
}
|
2003-10-21 23:17:56 +00:00
|
|
|
Concrete = GV;
|
2002-10-09 21:10:06 +00:00
|
|
|
}
|
|
|
|
}
|
2003-04-19 00:15:27 +00:00
|
|
|
++i;
|
2002-10-09 21:10:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Globals.size() > 1) { // Found a multiply defined global...
|
2003-05-31 21:57:06 +00:00
|
|
|
// If there are no external declarations, and there is at most one
|
|
|
|
// externally visible instance of the global, then there is nothing to do.
|
|
|
|
//
|
|
|
|
bool HasExternal = false;
|
|
|
|
unsigned NumInstancesWithExternalLinkage = 0;
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = Globals.size(); i != e; ++i) {
|
|
|
|
if (Globals[i]->isExternal())
|
|
|
|
HasExternal = true;
|
|
|
|
else if (!Globals[i]->hasInternalLinkage())
|
|
|
|
NumInstancesWithExternalLinkage++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!HasExternal && NumInstancesWithExternalLinkage <= 1)
|
|
|
|
return false; // Nothing to do? Must have multiple internal definitions.
|
|
|
|
|
2003-10-22 23:03:38 +00:00
|
|
|
// There are a couple of special cases we don't want to print the warning
|
|
|
|
// for, check them now.
|
|
|
|
bool DontPrintWarning = false;
|
|
|
|
if (Concrete && Globals.size() == 2) {
|
|
|
|
GlobalValue *Other = Globals[Globals[0] == Concrete];
|
|
|
|
// If the non-concrete global is a function which takes (...) arguments,
|
|
|
|
// and the return values match, do not warn.
|
|
|
|
if (Function *ConcreteF = dyn_cast<Function>(Concrete))
|
|
|
|
if (Function *OtherF = dyn_cast<Function>(Other))
|
|
|
|
if (ConcreteF->getReturnType() == OtherF->getReturnType() &&
|
|
|
|
OtherF->getFunctionType()->isVarArg() &&
|
|
|
|
OtherF->getFunctionType()->getParamTypes().empty())
|
|
|
|
DontPrintWarning = true;
|
|
|
|
|
|
|
|
// Otherwise, if the non-concrete global is a global array variable with a
|
|
|
|
// size of 0, and the concrete global is an array with a real size, don't
|
|
|
|
// warn. This occurs due to declaring 'extern int A[];'.
|
|
|
|
if (GlobalVariable *ConcreteGV = dyn_cast<GlobalVariable>(Concrete))
|
|
|
|
if (GlobalVariable *OtherGV = dyn_cast<GlobalVariable>(Other))
|
|
|
|
if (const ArrayType *OtherAT =
|
|
|
|
dyn_cast<ArrayType>(OtherGV->getType()->getElementType()))
|
|
|
|
if (const ArrayType *ConcreteAT =
|
|
|
|
dyn_cast<ArrayType>(ConcreteGV->getType()->getElementType()))
|
|
|
|
if (OtherAT->getElementType() == ConcreteAT->getElementType() &&
|
|
|
|
OtherAT->getNumElements() == 0)
|
|
|
|
DontPrintWarning = true;
|
|
|
|
}
|
2003-05-31 21:57:06 +00:00
|
|
|
|
2003-10-22 23:03:38 +00:00
|
|
|
if (!DontPrintWarning) {
|
|
|
|
std::cerr << "WARNING: Found global types that are not compatible:\n";
|
|
|
|
for (unsigned i = 0; i < Globals.size(); ++i) {
|
|
|
|
std::cerr << "\t" << *Globals[i]->getType() << " %"
|
|
|
|
<< Globals[i]->getName() << "\n";
|
|
|
|
}
|
2002-10-09 21:10:06 +00:00
|
|
|
}
|
|
|
|
|
2003-10-21 23:17:56 +00:00
|
|
|
if (!Concrete)
|
|
|
|
Concrete = Globals[0];
|
2003-10-22 03:35:34 +00:00
|
|
|
else if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Concrete)) {
|
|
|
|
// Handle special case hack to change globals if it will make their types
|
|
|
|
// happier in the long run. The situation we do this is intentionally
|
|
|
|
// extremely limited.
|
|
|
|
if (GV->use_empty() && GV->hasInitializer() &&
|
|
|
|
GV->getInitializer()->isNullValue()) {
|
|
|
|
// Check to see if there is another (external) global with the same size
|
|
|
|
// and a non-empty use-list. If so, we will make IT be the real
|
|
|
|
// implementation.
|
|
|
|
unsigned TS = TD.getTypeSize(Concrete->getType()->getElementType());
|
|
|
|
for (unsigned i = 0, e = Globals.size(); i != e; ++i)
|
|
|
|
if (Globals[i] != Concrete && !Globals[i]->use_empty() &&
|
|
|
|
isa<GlobalVariable>(Globals[i]) &&
|
|
|
|
TD.getTypeSize(Globals[i]->getType()->getElementType()) == TS) {
|
|
|
|
// At this point we want to replace Concrete with Globals[i]. Make
|
|
|
|
// concrete external, and Globals[i] have an initializer.
|
|
|
|
GlobalVariable *NGV = cast<GlobalVariable>(Globals[i]);
|
|
|
|
const Type *ElTy = NGV->getType()->getElementType();
|
|
|
|
NGV->setInitializer(Constant::getNullValue(ElTy));
|
|
|
|
cast<GlobalVariable>(Concrete)->setInitializer(0);
|
|
|
|
Concrete = NGV;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-10-21 23:17:56 +00:00
|
|
|
|
2002-10-09 21:10:06 +00:00
|
|
|
if (isFunction)
|
2003-04-19 00:15:27 +00:00
|
|
|
return ResolveFunctions(M, Globals, cast<Function>(Concrete));
|
2002-10-09 21:10:06 +00:00
|
|
|
else
|
2003-04-19 00:15:27 +00:00
|
|
|
return ResolveGlobalVariables(M, Globals,
|
|
|
|
cast<GlobalVariable>(Concrete));
|
2002-10-09 21:10:06 +00:00
|
|
|
}
|
2003-04-19 00:15:27 +00:00
|
|
|
return false;
|
2002-10-09 21:10:06 +00:00
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
bool FunctionResolvingPass::run(Module &M) {
|
2003-01-30 18:22:32 +00:00
|
|
|
std::map<std::string, std::vector<GlobalValue*> > Globals;
|
2002-05-24 20:42:13 +00:00
|
|
|
|
2003-10-22 04:42:20 +00:00
|
|
|
// Loop over the globals, adding them to the Globals map. We use a two pass
|
|
|
|
// algorithm here to avoid problems with iterators getting invalidated if we
|
|
|
|
// did a one pass scheme.
|
2002-05-24 20:42:13 +00:00
|
|
|
//
|
2003-10-22 04:43:18 +00:00
|
|
|
bool Changed = false;
|
2003-10-22 04:42:20 +00:00
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ) {
|
|
|
|
Function *F = I++;
|
2003-10-22 04:43:18 +00:00
|
|
|
if (F->use_empty() && F->isExternal()) {
|
2003-10-22 04:42:20 +00:00
|
|
|
M.getFunctionList().erase(F);
|
2003-10-22 04:43:18 +00:00
|
|
|
Changed = true;
|
|
|
|
} else if (!F->hasInternalLinkage() && !F->getName().empty())
|
2003-10-22 04:42:20 +00:00
|
|
|
Globals[F->getName()].push_back(F);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ) {
|
|
|
|
GlobalVariable *GV = I++;
|
2003-10-22 04:43:18 +00:00
|
|
|
if (GV->use_empty() && GV->isExternal()) {
|
2003-10-22 04:42:20 +00:00
|
|
|
M.getGlobalList().erase(GV);
|
2003-10-22 04:43:18 +00:00
|
|
|
Changed = true;
|
|
|
|
} else if (!GV->hasInternalLinkage() && !GV->getName().empty())
|
2003-10-22 04:42:20 +00:00
|
|
|
Globals[GV->getName()].push_back(GV);
|
|
|
|
}
|
2002-05-24 20:42:13 +00:00
|
|
|
|
2003-10-22 03:35:34 +00:00
|
|
|
TargetData &TD = getAnalysis<TargetData>();
|
|
|
|
|
2002-05-24 20:42:13 +00:00
|
|
|
// Now we have a list of all functions with a particular name. If there is
|
|
|
|
// more than one entry in a list, merge the functions together.
|
|
|
|
//
|
2003-01-30 18:22:32 +00:00
|
|
|
for (std::map<std::string, std::vector<GlobalValue*> >::iterator
|
|
|
|
I = Globals.begin(), E = Globals.end(); I != E; ++I)
|
2003-10-22 03:35:34 +00:00
|
|
|
Changed |= ProcessGlobalsWithSameName(M, TD, I->second);
|
2002-05-24 20:42:13 +00:00
|
|
|
|
2002-11-10 03:36:55 +00:00
|
|
|
// Now loop over all of the globals, checking to see if any are trivially
|
|
|
|
// dead. If so, remove them now.
|
|
|
|
|
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; )
|
|
|
|
if (I->isExternal() && I->use_empty()) {
|
|
|
|
Function *F = I;
|
|
|
|
++I;
|
|
|
|
M.getFunctionList().erase(F);
|
|
|
|
++NumResolved;
|
|
|
|
Changed = true;
|
|
|
|
} else {
|
|
|
|
++I;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; )
|
|
|
|
if (I->isExternal() && I->use_empty()) {
|
|
|
|
GlobalVariable *GV = I;
|
|
|
|
++I;
|
|
|
|
M.getGlobalList().erase(GV);
|
|
|
|
++NumGlobals;
|
|
|
|
Changed = true;
|
|
|
|
} else {
|
|
|
|
++I;
|
|
|
|
}
|
|
|
|
|
2002-05-24 20:42:13 +00:00
|
|
|
return Changed;
|
|
|
|
}
|