2002-05-24 22:42:13 +02:00
|
|
|
//===- FunctionResolution.cpp - Resolve declarations to implementations ---===//
|
|
|
|
//
|
|
|
|
// 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-24 00:04:02 +02:00
|
|
|
#include "llvm/Transforms/IPO.h"
|
2002-05-24 22:42:13 +02:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/SymbolTable.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/iOther.h"
|
2002-10-09 23:10:06 +02:00
|
|
|
#include "llvm/Constants.h"
|
2003-01-30 19:22:32 +01:00
|
|
|
#include "llvm/Assembly/Writer.h" // FIXME: remove when varargs implemented
|
2002-10-02 00:38:41 +02:00
|
|
|
#include "Support/Statistic.h"
|
2002-05-24 22:42:13 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
namespace {
|
2002-10-02 00:38:41 +02:00
|
|
|
Statistic<>NumResolved("funcresolve", "Number of varargs functions resolved");
|
2002-10-09 23:10:06 +02:00
|
|
|
Statistic<> NumGlobals("funcresolve", "Number of global variables resolved");
|
2002-05-24 22:42:13 +02:00
|
|
|
|
|
|
|
struct FunctionResolvingPass : public Pass {
|
2002-06-25 18:13:24 +02:00
|
|
|
bool run(Module &M);
|
2002-05-24 22:42:13 +02:00
|
|
|
};
|
2002-07-26 23:12:44 +02:00
|
|
|
RegisterOpt<FunctionResolvingPass> X("funcresolve", "Resolve Functions");
|
2002-05-24 22:42:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Pass *createFunctionResolvingPass() {
|
|
|
|
return new FunctionResolvingPass();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConvertCallTo - Convert a call to a varargs function with no arg types
|
|
|
|
// specified to a concrete nonvarargs function.
|
|
|
|
//
|
|
|
|
static void ConvertCallTo(CallInst *CI, Function *Dest) {
|
|
|
|
const FunctionType::ParamTypes &ParamTys =
|
|
|
|
Dest->getFunctionType()->getParamTypes();
|
|
|
|
BasicBlock *BB = CI->getParent();
|
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
// Keep an iterator to where we want to insert cast instructions if the
|
2002-05-24 22:42:13 +02:00
|
|
|
// argument types don't agree.
|
|
|
|
//
|
2003-01-30 23:38:44 +01:00
|
|
|
unsigned NumArgsToCopy = CI->getNumOperands()-1;
|
2003-02-14 20:12:29 +01:00
|
|
|
if (NumArgsToCopy != ParamTys.size() &&
|
|
|
|
!(NumArgsToCopy > ParamTys.size() &&
|
2003-01-30 23:38:44 +01:00
|
|
|
Dest->getFunctionType()->isVarArg())) {
|
2003-01-30 19:22:32 +01:00
|
|
|
std::cerr << "WARNING: Call arguments do not match expected number of"
|
|
|
|
<< " parameters.\n";
|
|
|
|
std::cerr << "WARNING: In function '"
|
|
|
|
<< CI->getParent()->getParent()->getName() << "': call: " << *CI;
|
|
|
|
std::cerr << "Function resolved to: ";
|
|
|
|
WriteAsOperand(std::cerr, Dest);
|
|
|
|
std::cerr << "\n";
|
2003-02-14 20:12:29 +01:00
|
|
|
if (NumArgsToCopy > ParamTys.size())
|
|
|
|
NumArgsToCopy = ParamTys.size();
|
2003-01-30 19:22:32 +01:00
|
|
|
}
|
2002-05-24 22:42:13 +02:00
|
|
|
|
2003-01-30 19:22:32 +01:00
|
|
|
std::vector<Value*> Params;
|
2002-05-24 22:42:13 +02:00
|
|
|
|
|
|
|
// Convert all of the call arguments over... inserting cast instructions if
|
|
|
|
// the types are not compatible.
|
2003-01-30 23:38:44 +01:00
|
|
|
for (unsigned i = 1; i <= NumArgsToCopy; ++i) {
|
2002-05-24 22:42:13 +02:00
|
|
|
Value *V = CI->getOperand(i);
|
|
|
|
|
2003-01-30 23:38:44 +01:00
|
|
|
if (i-1 < ParamTys.size() && V->getType() != ParamTys[i-1]) {
|
|
|
|
// Must insert a cast...
|
2003-02-27 21:55:48 +01:00
|
|
|
V = new CastInst(V, ParamTys[i-1], "argcast", CI);
|
2003-01-30 23:38:44 +01:00
|
|
|
}
|
2002-05-24 22:42:13 +02:00
|
|
|
|
|
|
|
Params.push_back(V);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replace the old call instruction with a new call instruction that calls
|
|
|
|
// the real function.
|
|
|
|
//
|
2003-02-27 21:55:48 +01:00
|
|
|
Instruction *NewCall = new CallInst(Dest, Params, "", CI);
|
|
|
|
std::string Name = CI->getName(); CI->setName("");
|
2002-05-24 23:33:26 +02:00
|
|
|
|
2002-07-30 02:50:49 +02:00
|
|
|
// Transfer the name over...
|
2002-07-30 04:42:49 +02:00
|
|
|
if (NewCall->getType() != Type::VoidTy)
|
2003-02-27 21:55:48 +01:00
|
|
|
NewCall->setName(Name);
|
2002-07-30 02:50:49 +02:00
|
|
|
|
2002-05-24 23:33:26 +02:00
|
|
|
// Replace uses of the old instruction with the appropriate values...
|
|
|
|
//
|
|
|
|
if (NewCall->getType() == CI->getType()) {
|
|
|
|
CI->replaceAllUsesWith(NewCall);
|
2003-02-27 21:55:48 +01:00
|
|
|
NewCall->setName(Name);
|
2002-05-24 23:33:26 +02:00
|
|
|
|
|
|
|
} else if (NewCall->getType() == Type::VoidTy) {
|
|
|
|
// Resolved function does not return a value but the prototype does. This
|
|
|
|
// often occurs because undefined functions default to returning integers.
|
|
|
|
// Just replace uses of the call (which are broken anyway) with dummy
|
|
|
|
// values.
|
|
|
|
CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
|
|
|
|
} else if (CI->getType() == Type::VoidTy) {
|
|
|
|
// If we are gaining a new return value, we don't have to do anything
|
2002-07-30 02:50:49 +02:00
|
|
|
// special here, because it will automatically be ignored.
|
2002-05-24 23:33:26 +02:00
|
|
|
} else {
|
2002-07-30 02:50:49 +02:00
|
|
|
// Insert a cast instruction to convert the return value of the function
|
|
|
|
// into it's new type. Of course we only need to do this if the return
|
|
|
|
// value of the function is actually USED.
|
|
|
|
//
|
|
|
|
if (!CI->use_empty()) {
|
2002-09-10 19:03:06 +02:00
|
|
|
// Insert the new cast instruction...
|
2003-02-27 21:55:48 +01:00
|
|
|
CastInst *NewCast = new CastInst(NewCall, CI->getType(), Name, CI);
|
2002-07-30 02:50:49 +02:00
|
|
|
CI->replaceAllUsesWith(NewCast);
|
|
|
|
}
|
2002-05-24 23:33:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// The old instruction is no longer needed, destroy it!
|
2003-02-27 21:55:48 +01:00
|
|
|
BB->getInstList().erase(CI);
|
2002-05-24 22:42:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-01-30 19:22:32 +01:00
|
|
|
static bool ResolveFunctions(Module &M, std::vector<GlobalValue*> &Globals,
|
2002-10-09 23:10:06 +02: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-02-27 21:55:48 +01:00
|
|
|
if (OldMT->getParamTypes().size() <= ConcreteMT->getParamTypes().size())
|
|
|
|
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 23:10:06 +02:00
|
|
|
|
|
|
|
// Check to make sure that if there are specified types, that they
|
|
|
|
// match...
|
|
|
|
//
|
2003-02-27 21:55:48 +01:00
|
|
|
unsigned NumArguments = std::min(OldMT->getParamTypes().size(),
|
|
|
|
ConcreteMT->getParamTypes().size());
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < NumArguments; ++i)
|
2002-10-09 23:10:06 +02:00
|
|
|
if (OldMT->getParamTypes()[i] != ConcreteMT->getParamTypes()[i]) {
|
2003-01-30 22:33:07 +01:00
|
|
|
std::cerr << "funcresolve: Function [" << Old->getName()
|
|
|
|
<< "]: Parameter types conflict for: '" << OldMT
|
2003-01-30 19:22:32 +01:00
|
|
|
<< "' and '" << ConcreteMT << "'\n";
|
2002-10-09 23:10:06 +02:00
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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> (...)
|
|
|
|
//
|
|
|
|
for (unsigned i = 0; i < Old->use_size(); ) {
|
|
|
|
User *U = *(Old->use_begin()+i);
|
|
|
|
if (CastInst *CI = dyn_cast<CastInst>(U)) {
|
|
|
|
// Convert casts directly
|
|
|
|
assert(CI->getOperand(0) == Old);
|
|
|
|
CI->setOperand(0, Concrete);
|
|
|
|
Changed = true;
|
|
|
|
++NumResolved;
|
|
|
|
} else if (CallInst *CI = dyn_cast<CallInst>(U)) {
|
|
|
|
// Can only fix up calls TO the argument, not args passed in.
|
|
|
|
if (CI->getCalledValue() == Old) {
|
|
|
|
ConvertCallTo(CI, Concrete);
|
|
|
|
Changed = true;
|
|
|
|
++NumResolved;
|
|
|
|
} else {
|
2003-01-30 19:22:32 +01:00
|
|
|
std::cerr << "Couldn't cleanup this function call, must be an"
|
|
|
|
<< " argument or something!" << CI;
|
2002-10-09 23:10:06 +02:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
} else {
|
2003-01-30 19:22:32 +01:00
|
|
|
std::cerr << "Cannot convert use of function: " << U << "\n";
|
2002-10-09 23:10:06 +02:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-01-30 19:22:32 +01:00
|
|
|
static bool ResolveGlobalVariables(Module &M,
|
|
|
|
std::vector<GlobalValue*> &Globals,
|
2002-10-09 23:10:06 +02:00
|
|
|
GlobalVariable *Concrete) {
|
|
|
|
bool Changed = false;
|
|
|
|
assert(isa<ArrayType>(Concrete->getType()->getElementType()) &&
|
|
|
|
"Concrete version should be an array type!");
|
|
|
|
|
|
|
|
// Get the type of the things that may be resolved to us...
|
|
|
|
const Type *AETy =
|
|
|
|
cast<ArrayType>(Concrete->getType()->getElementType())->getElementType();
|
|
|
|
|
|
|
|
std::vector<Constant*> Args;
|
|
|
|
Args.push_back(Constant::getNullValue(Type::LongTy));
|
|
|
|
Args.push_back(Constant::getNullValue(Type::LongTy));
|
|
|
|
ConstantExpr *Replacement =
|
|
|
|
ConstantExpr::getGetElementPtr(ConstantPointerRef::get(Concrete), Args);
|
|
|
|
|
|
|
|
for (unsigned i = 0; i != Globals.size(); ++i)
|
|
|
|
if (Globals[i] != Concrete) {
|
|
|
|
GlobalVariable *Old = cast<GlobalVariable>(Globals[i]);
|
|
|
|
if (Old->getType()->getElementType() != AETy) {
|
|
|
|
std::cerr << "WARNING: Two global variables exist with the same name "
|
|
|
|
<< "that cannot be resolved!\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// In this case, Old is a pointer to T, Concrete is a pointer to array of
|
|
|
|
// T. Because of this, replace all uses of Old with a constantexpr
|
|
|
|
// getelementptr that returns the address of the first element of the
|
|
|
|
// array.
|
|
|
|
//
|
|
|
|
Old->replaceAllUsesWith(Replacement);
|
|
|
|
// Since there are no uses of Old anymore, remove it from the module.
|
|
|
|
M.getGlobalList().erase(Old);
|
|
|
|
|
|
|
|
++NumGlobals;
|
|
|
|
Changed = true;
|
|
|
|
}
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool ProcessGlobalsWithSameName(Module &M,
|
2003-01-30 19:22:32 +01:00
|
|
|
std::vector<GlobalValue*> &Globals) {
|
2002-10-09 23:10:06 +02:00
|
|
|
assert(!Globals.empty() && "Globals list shouldn't be empty here!");
|
|
|
|
|
|
|
|
bool isFunction = isa<Function>(Globals[0]); // Is this group all functions?
|
|
|
|
bool Changed = false;
|
|
|
|
GlobalValue *Concrete = 0; // The most concrete implementation to resolve to
|
|
|
|
|
|
|
|
assert((isFunction ^ isa<GlobalVariable>(Globals[0])) &&
|
|
|
|
"Should either be function or gvar!");
|
|
|
|
|
|
|
|
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 04:36:55 +01:00
|
|
|
if (isFunction) {
|
2002-10-09 23:10:06 +02: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 01:38:20 +01:00
|
|
|
if (!F->isExternal()) {
|
2002-11-10 04:36:55 +01:00
|
|
|
if (Concrete && !Concrete->isExternal())
|
2002-10-09 23:10:06 +02:00
|
|
|
return false; // Found two different functions types. Can't choose!
|
|
|
|
|
|
|
|
Concrete = Globals[i];
|
2002-11-10 04:36:55 +01: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 23:10:06 +02:00
|
|
|
}
|
|
|
|
++i;
|
|
|
|
} else {
|
|
|
|
// For global variables, we have to merge C definitions int A[][4] with
|
|
|
|
// int[6][4]
|
|
|
|
GlobalVariable *GV = cast<GlobalVariable>(Globals[i]);
|
|
|
|
if (Concrete == 0) {
|
|
|
|
if (isa<ArrayType>(GV->getType()->getElementType()))
|
|
|
|
Concrete = GV;
|
|
|
|
} else { // Must have different types... one is an array of the other?
|
|
|
|
const ArrayType *AT =
|
|
|
|
dyn_cast<ArrayType>(GV->getType()->getElementType());
|
|
|
|
|
|
|
|
// If GV is an array of Concrete, then GV is the array.
|
|
|
|
if (AT && AT->getElementType() == Concrete->getType()->getElementType())
|
|
|
|
Concrete = GV;
|
|
|
|
else {
|
|
|
|
// Concrete must be an array type, check to see if the element type of
|
|
|
|
// concrete is already GV.
|
|
|
|
AT = cast<ArrayType>(Concrete->getType()->getElementType());
|
|
|
|
if (AT->getElementType() != GV->getType()->getElementType())
|
|
|
|
Concrete = 0; // Don't know how to handle it!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Globals.size() > 1) { // Found a multiply defined global...
|
|
|
|
// We should find exactly one concrete function definition, which is
|
|
|
|
// probably the implementation. Change all of the function definitions and
|
|
|
|
// uses to use it instead.
|
|
|
|
//
|
|
|
|
if (!Concrete) {
|
2003-01-30 19:22:32 +01:00
|
|
|
std::cerr << "WARNING: Found function types that are not compatible:\n";
|
2002-10-09 23:10:06 +02:00
|
|
|
for (unsigned i = 0; i < Globals.size(); ++i) {
|
2003-01-30 19:22:32 +01:00
|
|
|
std::cerr << "\t" << Globals[i]->getType()->getDescription() << " %"
|
|
|
|
<< Globals[i]->getName() << "\n";
|
2002-10-09 23:10:06 +02:00
|
|
|
}
|
2003-01-30 19:22:32 +01:00
|
|
|
std::cerr << " No linkage of globals named '" << Globals[0]->getName()
|
|
|
|
<< "' performed!\n";
|
2002-10-09 23:10:06 +02:00
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isFunction)
|
|
|
|
return Changed | ResolveFunctions(M, Globals, cast<Function>(Concrete));
|
|
|
|
else
|
|
|
|
return Changed | ResolveGlobalVariables(M, Globals,
|
|
|
|
cast<GlobalVariable>(Concrete));
|
|
|
|
}
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
bool FunctionResolvingPass::run(Module &M) {
|
2002-11-20 19:36:02 +01:00
|
|
|
SymbolTable &ST = M.getSymbolTable();
|
2002-05-24 22:42:13 +02:00
|
|
|
|
2003-01-30 19:22:32 +01:00
|
|
|
std::map<std::string, std::vector<GlobalValue*> > Globals;
|
2002-05-24 22:42:13 +02:00
|
|
|
|
|
|
|
// Loop over the entries in the symbol table. If an entry is a func pointer,
|
|
|
|
// then add it to the Functions map. We do a two pass algorithm here to avoid
|
|
|
|
// problems with iterators getting invalidated if we did a one pass scheme.
|
|
|
|
//
|
2002-11-20 19:36:02 +01:00
|
|
|
for (SymbolTable::iterator I = ST.begin(), E = ST.end(); I != E; ++I)
|
2002-10-09 23:10:06 +02:00
|
|
|
if (const PointerType *PT = dyn_cast<PointerType>(I->first)) {
|
|
|
|
SymbolTable::VarMap &Plane = I->second;
|
|
|
|
for (SymbolTable::type_iterator PI = Plane.begin(), PE = Plane.end();
|
|
|
|
PI != PE; ++PI) {
|
|
|
|
GlobalValue *GV = cast<GlobalValue>(PI->second);
|
|
|
|
assert(PI->first == GV->getName() &&
|
|
|
|
"Global name and symbol table do not agree!");
|
|
|
|
if (GV->hasExternalLinkage()) // Only resolve decls to external fns
|
|
|
|
Globals[PI->first].push_back(GV);
|
2002-05-24 22:42:13 +02:00
|
|
|
}
|
2002-10-09 23:10:06 +02:00
|
|
|
}
|
2002-05-24 22:42:13 +02:00
|
|
|
|
|
|
|
bool Changed = false;
|
|
|
|
|
|
|
|
// 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 19:22:32 +01:00
|
|
|
for (std::map<std::string, std::vector<GlobalValue*> >::iterator
|
|
|
|
I = Globals.begin(), E = Globals.end(); I != E; ++I)
|
2002-10-09 23:10:06 +02:00
|
|
|
Changed |= ProcessGlobalsWithSameName(M, I->second);
|
2002-05-24 22:42:13 +02:00
|
|
|
|
2002-11-10 04:36:55 +01: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 22:42:13 +02:00
|
|
|
return Changed;
|
|
|
|
}
|