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