2002-04-28 05:43:27 +00:00
|
|
|
//===-- Internalize.cpp - Mark functions internal -------------------------===//
|
|
|
|
//
|
|
|
|
// This pass loops over all of the functions in the input module, looking for a
|
|
|
|
// main function. If a main function is found, all other functions are marked
|
|
|
|
// as internal.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Transforms/IPO/Internalize.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Function.h"
|
2002-05-10 15:38:35 +00:00
|
|
|
#include "Support/StatisticReporter.h"
|
|
|
|
|
|
|
|
static Statistic<> NumChanged("internalize\t- Number of functions internal'd");
|
2002-04-28 05:43:27 +00:00
|
|
|
|
|
|
|
class InternalizePass : public Pass {
|
2002-04-29 14:57:45 +00:00
|
|
|
const char *getPassName() const { return "Internalize Functions"; }
|
|
|
|
|
2002-06-25 16:13:21 +00:00
|
|
|
virtual bool run(Module &M) {
|
2002-04-28 05:43:27 +00:00
|
|
|
bool FoundMain = false; // Look for a function named main...
|
2002-06-25 16:13:21 +00:00
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
|
|
|
if (I->getName() == "main" && !I->isExternal()) {
|
2002-04-28 05:43:27 +00:00
|
|
|
FoundMain = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!FoundMain) return false; // No main found, must be a library...
|
|
|
|
|
|
|
|
bool Changed = false;
|
|
|
|
|
|
|
|
// Found a main function, mark all functions not named main as internal.
|
2002-06-25 16:13:21 +00:00
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
|
|
|
if (I->getName() != "main" && // Leave the main function external
|
|
|
|
!I->isExternal()) { // Function must be defined here
|
|
|
|
I->setInternalLinkage(true);
|
2002-05-10 15:38:35 +00:00
|
|
|
Changed = true;
|
|
|
|
++NumChanged;
|
|
|
|
}
|
2002-04-28 05:43:27 +00:00
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Pass *createInternalizePass() {
|
|
|
|
return new InternalizePass();
|
|
|
|
}
|