mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 20:23:59 +00:00
* Indent class into anonymous namespace, filling up the diff with garbage
* Internalize global variables with initializers * Add new stat to track global variable internalization * Only count functions that were not internal before in internalized function count git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3163 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1,45 +1,58 @@
|
|||||||
//===-- Internalize.cpp - Mark functions internal -------------------------===//
|
//===-- Internalize.cpp - Mark functions internal -------------------------===//
|
||||||
//
|
//
|
||||||
// This pass loops over all of the functions in the input module, looking for a
|
// 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
|
// main function. If a main function is found, all other functions and all
|
||||||
// as internal.
|
// global variables with initializers are marked as internal.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/Transforms/IPO.h"
|
#include "llvm/Transforms/IPO.h"
|
||||||
#include "llvm/Pass.h"
|
#include "llvm/Pass.h"
|
||||||
#include "llvm/Module.h"
|
#include "llvm/Module.h"
|
||||||
#include "llvm/Function.h"
|
|
||||||
#include "Support/StatisticReporter.h"
|
#include "Support/StatisticReporter.h"
|
||||||
|
|
||||||
static Statistic<> NumChanged("internalize\t- Number of functions internal'd");
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
class InternalizePass : public Pass {
|
Statistic<> NumFunctions("internalize\t- Number of functions internalized");
|
||||||
virtual bool run(Module &M) {
|
Statistic<> NumGlobals ("internalize\t- Number of global vars internalized");
|
||||||
bool FoundMain = false; // Look for a function named main...
|
|
||||||
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
|
||||||
if (I->getName() == "main" && !I->isExternal()) {
|
|
||||||
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.
|
class InternalizePass : public Pass {
|
||||||
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
virtual bool run(Module &M) {
|
||||||
if (I->getName() != "main" && // Leave the main function external
|
bool FoundMain = false; // Look for a function named main...
|
||||||
!I->isExternal()) { // Function must be defined here
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
||||||
I->setInternalLinkage(true);
|
if (I->getName() == "main" && !I->isExternal() &&
|
||||||
Changed = true;
|
I->hasExternalLinkage()) {
|
||||||
++NumChanged;
|
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.
|
||||||
|
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->hasInternalLinkage()) { // Can't already have internal linkage
|
||||||
|
I->setInternalLinkage(true);
|
||||||
|
Changed = true;
|
||||||
|
++NumFunctions;
|
||||||
|
DEBUG(std::cerr << "Internalizing func " << I->getName() << "\n");
|
||||||
|
}
|
||||||
|
|
||||||
return Changed;
|
// Mark all global variables with initializers as internal as well...
|
||||||
}
|
for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ++I)
|
||||||
};
|
if (I->hasInitializer() && I->hasExternalLinkage()) {
|
||||||
|
I->setInternalLinkage(true);
|
||||||
|
Changed = true;
|
||||||
|
++NumGlobals;
|
||||||
|
DEBUG(std::cerr << "Internalizing gvar " << I->getName() << "\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
return Changed;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
RegisterOpt<InternalizePass> X("internalize", "Internalize Functions");
|
RegisterOpt<InternalizePass> X("internalize", "Internalize Functions");
|
||||||
} // end anonymous namespace
|
} // end anonymous namespace
|
||||||
|
Reference in New Issue
Block a user