2002-04-28 05:43:27 +00:00
|
|
|
//===-- Internalize.cpp - Mark functions internal -------------------------===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-04-28 05:43:27 +00:00
|
|
|
//
|
|
|
|
// This pass loops over all of the functions in the input module, looking for a
|
2002-07-30 19:48:44 +00:00
|
|
|
// main function. If a main function is found, all other functions and all
|
|
|
|
// global variables with initializers are marked as internal.
|
2002-04-28 05:43:27 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-12-19 22:09:18 +00:00
|
|
|
#define DEBUG_TYPE "internalize"
|
2008-10-03 07:36:09 +00:00
|
|
|
#include "llvm/Analysis/CallGraph.h"
|
2002-07-24 17:12:05 +00:00
|
|
|
#include "llvm/Transforms/IPO.h"
|
2002-04-28 05:43:27 +00:00
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/Module.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2007-02-05 23:32:05 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
2003-05-22 19:34:49 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <set>
|
2003-11-21 21:54:22 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2006-12-19 22:09:18 +00:00
|
|
|
STATISTIC(NumFunctions, "Number of functions internalized");
|
|
|
|
STATISTIC(NumGlobals , "Number of global vars internalized");
|
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
// APIFile - A file which contains a list of symbols that should not be marked
|
|
|
|
// external.
|
|
|
|
static cl::opt<std::string>
|
|
|
|
APIFile("internalize-public-api-file", cl::value_desc("filename"),
|
|
|
|
cl::desc("A file containing list of symbol names to preserve"));
|
2003-05-22 19:48:00 +00:00
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
// APIList - A list of symbols that should not be marked internal.
|
|
|
|
static cl::list<std::string>
|
|
|
|
APIList("internalize-public-api-list", cl::value_desc("list"),
|
|
|
|
cl::desc("A list of symbol names to preserve"),
|
|
|
|
cl::CommaSeparated);
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
namespace {
|
2007-02-05 23:32:05 +00:00
|
|
|
class VISIBILITY_HIDDEN InternalizePass : public ModulePass {
|
2003-05-22 19:34:49 +00:00
|
|
|
std::set<std::string> ExternalNames;
|
2008-05-14 20:01:01 +00:00
|
|
|
/// If no api symbols were specified and a main function is defined,
|
|
|
|
/// assume the main function is the only API
|
|
|
|
bool AllButMain;
|
2003-05-22 19:34:49 +00:00
|
|
|
public:
|
2007-05-06 13:37:16 +00:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2008-06-24 09:14:10 +00:00
|
|
|
explicit InternalizePass(bool AllButMain = true);
|
2007-08-01 15:32:29 +00:00
|
|
|
explicit InternalizePass(const std::vector <const char *>& exportList);
|
2006-01-03 19:13:17 +00:00
|
|
|
void LoadFile(const char *Filename);
|
|
|
|
virtual bool runOnModule(Module &M);
|
2008-09-30 22:04:30 +00:00
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesCFG();
|
2008-10-03 07:36:09 +00:00
|
|
|
AU.addPreserved<CallGraph>();
|
2008-09-30 22:04:30 +00:00
|
|
|
}
|
2006-01-03 19:13:17 +00:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
2002-11-08 20:34:21 +00:00
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
char InternalizePass::ID = 0;
|
|
|
|
static RegisterPass<InternalizePass>
|
|
|
|
X("internalize", "Internalize Global Symbols");
|
|
|
|
|
2008-05-14 20:01:01 +00:00
|
|
|
InternalizePass::InternalizePass(bool AllButMain)
|
2008-09-04 17:05:41 +00:00
|
|
|
: ModulePass(&ID), AllButMain(AllButMain){
|
2008-05-14 20:01:01 +00:00
|
|
|
if (!APIFile.empty()) // If a filename is specified, use it.
|
2006-01-03 19:13:17 +00:00
|
|
|
LoadFile(APIFile.c_str());
|
2008-05-14 20:01:01 +00:00
|
|
|
if (!APIList.empty()) // If a list is specified, use it as well.
|
2006-01-03 19:13:17 +00:00
|
|
|
ExternalNames.insert(APIList.begin(), APIList.end());
|
|
|
|
}
|
2003-05-22 19:34:49 +00:00
|
|
|
|
2006-09-13 01:02:26 +00:00
|
|
|
InternalizePass::InternalizePass(const std::vector<const char *>&exportList)
|
2008-09-04 17:05:41 +00:00
|
|
|
: ModulePass(&ID), AllButMain(false){
|
2006-07-20 17:48:05 +00:00
|
|
|
for(std::vector<const char *>::const_iterator itr = exportList.begin();
|
2007-04-16 18:10:23 +00:00
|
|
|
itr != exportList.end(); itr++) {
|
2006-07-20 17:48:05 +00:00
|
|
|
ExternalNames.insert(*itr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-03 19:13:17 +00:00
|
|
|
void InternalizePass::LoadFile(const char *Filename) {
|
|
|
|
// Load the APIFile...
|
|
|
|
std::ifstream In(Filename);
|
|
|
|
if (!In.good()) {
|
2008-05-14 20:01:01 +00:00
|
|
|
cerr << "WARNING: Internalize couldn't load file '" << Filename
|
|
|
|
<< "'! Continuing as if it's empty.\n";
|
|
|
|
return; // Just continue as if the file were empty
|
2006-01-03 19:13:17 +00:00
|
|
|
}
|
|
|
|
while (In) {
|
|
|
|
std::string Symbol;
|
|
|
|
In >> Symbol;
|
|
|
|
if (!Symbol.empty())
|
|
|
|
ExternalNames.insert(Symbol);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool InternalizePass::runOnModule(Module &M) {
|
2008-10-03 07:36:09 +00:00
|
|
|
CallGraph *CG = getAnalysisToUpdate<CallGraph>();
|
|
|
|
CallGraphNode *ExternalNode = CG ? CG->getExternalCallingNode() : 0;
|
|
|
|
|
2006-01-03 19:13:17 +00:00
|
|
|
if (ExternalNames.empty()) {
|
2008-05-14 20:01:01 +00:00
|
|
|
// Return if we're not in 'all but main' mode and have no external api
|
|
|
|
if (!AllButMain)
|
|
|
|
return false;
|
|
|
|
// If no list or file of symbols was specified, check to see if there is a
|
|
|
|
// "main" symbol defined in the module. If so, use it, otherwise do not
|
|
|
|
// internalize the module, it must be a library or something.
|
|
|
|
//
|
2007-02-05 21:19:13 +00:00
|
|
|
Function *MainFunc = M.getFunction("main");
|
2007-01-30 20:08:39 +00:00
|
|
|
if (MainFunc == 0 || MainFunc->isDeclaration())
|
2006-01-03 19:13:17 +00:00
|
|
|
return false; // No main found, must be a library...
|
|
|
|
|
|
|
|
// Preserve main, internalize all else.
|
|
|
|
ExternalNames.insert(MainFunc->getName());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Changed = false;
|
|
|
|
|
2008-05-14 20:01:01 +00:00
|
|
|
// Mark all functions not in the api as internal.
|
2006-01-03 19:13:17 +00:00
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
2007-01-30 20:08:39 +00:00
|
|
|
if (!I->isDeclaration() && // Function must be defined here
|
2006-01-03 19:13:17 +00:00
|
|
|
!I->hasInternalLinkage() && // Can't already have internal linkage
|
|
|
|
!ExternalNames.count(I->getName())) {// Not marked to keep external?
|
|
|
|
I->setLinkage(GlobalValue::InternalLinkage);
|
2008-10-03 07:36:09 +00:00
|
|
|
// Remove a callgraph edge from the external node to this function.
|
|
|
|
if (ExternalNode) ExternalNode->removeOneAbstractEdgeTo((*CG)[I]);
|
2006-01-03 19:13:17 +00:00
|
|
|
Changed = true;
|
|
|
|
++NumFunctions;
|
2006-11-26 10:02:32 +00:00
|
|
|
DOUT << "Internalizing func " << I->getName() << "\n";
|
2006-01-03 19:13:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Never internalize the llvm.used symbol. It is used to implement
|
|
|
|
// attribute((used)).
|
|
|
|
ExternalNames.insert("llvm.used");
|
2006-01-19 00:40:39 +00:00
|
|
|
|
2007-01-26 21:22:28 +00:00
|
|
|
// Never internalize anchors used by the machine module info, else the info
|
|
|
|
// won't find them. (see MachineModuleInfo.)
|
2006-03-07 20:53:47 +00:00
|
|
|
ExternalNames.insert("llvm.dbg.compile_units");
|
|
|
|
ExternalNames.insert("llvm.dbg.global_variables");
|
|
|
|
ExternalNames.insert("llvm.dbg.subprograms");
|
2007-06-06 20:51:41 +00:00
|
|
|
ExternalNames.insert("llvm.global_ctors");
|
|
|
|
ExternalNames.insert("llvm.global_dtors");
|
2007-10-03 03:59:15 +00:00
|
|
|
ExternalNames.insert("llvm.noinline");
|
2007-10-03 17:05:40 +00:00
|
|
|
ExternalNames.insert("llvm.global.annotations");
|
2005-10-18 06:29:22 +00:00
|
|
|
|
2008-05-14 20:01:01 +00:00
|
|
|
// Mark all global variables with initializers that are not in the api as
|
|
|
|
// internal as well.
|
2006-01-03 19:13:17 +00:00
|
|
|
for (Module::global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I)
|
2007-01-30 20:08:39 +00:00
|
|
|
if (!I->isDeclaration() && !I->hasInternalLinkage() &&
|
2006-01-03 19:13:17 +00:00
|
|
|
!ExternalNames.count(I->getName())) {
|
|
|
|
I->setLinkage(GlobalValue::InternalLinkage);
|
|
|
|
Changed = true;
|
|
|
|
++NumGlobals;
|
2006-11-26 10:02:32 +00:00
|
|
|
DOUT << "Internalized gvar " << I->getName() << "\n";
|
2002-07-30 19:48:44 +00:00
|
|
|
}
|
2006-01-03 19:13:17 +00:00
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|
2002-07-23 18:06:35 +00:00
|
|
|
|
2008-06-24 09:14:10 +00:00
|
|
|
ModulePass *llvm::createInternalizePass(bool AllButMain) {
|
|
|
|
return new InternalizePass(AllButMain);
|
2002-04-28 05:43:27 +00:00
|
|
|
}
|
2006-07-20 17:48:05 +00:00
|
|
|
|
2006-07-20 18:03:39 +00:00
|
|
|
ModulePass *llvm::createInternalizePass(const std::vector <const char *> &el) {
|
|
|
|
return new InternalizePass(el);
|
2006-07-20 17:48:05 +00:00
|
|
|
}
|