blob: 5d6eb6d2225433cec14d01aa1953176d6985af50 [file] [log] [blame]
Chris Lattner1b94c002002-04-28 05:43:27 +00001//===-- Internalize.cpp - Mark functions internal -------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner1b94c002002-04-28 05:43:27 +00009//
10// This pass loops over all of the functions in the input module, looking for a
Chris Lattner47cc3662002-07-30 19:48:44 +000011// main function. If a main function is found, all other functions and all
12// global variables with initializers are marked as internal.
Chris Lattner1b94c002002-04-28 05:43:27 +000013//
14//===----------------------------------------------------------------------===//
15
Chris Lattner1631bcb2006-12-19 22:09:18 +000016#define DEBUG_TYPE "internalize"
Chris Lattner99a53f62002-07-24 17:12:05 +000017#include "llvm/Transforms/IPO.h"
Chris Lattner1b94c002002-04-28 05:43:27 +000018#include "llvm/Pass.h"
19#include "llvm/Module.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000020#include "llvm/Support/CommandLine.h"
Reid Spencer557ab152007-02-05 23:32:05 +000021#include "llvm/Support/Compiler.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000022#include "llvm/Support/Debug.h"
23#include "llvm/ADT/Statistic.h"
Chris Lattner44457bb2003-05-22 19:34:49 +000024#include <fstream>
25#include <set>
Chris Lattnerf52e03c2003-11-21 21:54:22 +000026using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000027
Chris Lattner1631bcb2006-12-19 22:09:18 +000028STATISTIC(NumFunctions, "Number of functions internalized");
29STATISTIC(NumGlobals , "Number of global vars internalized");
30
Chris Lattnerb28b6802002-07-23 18:06:35 +000031namespace {
Chris Lattner1b94c002002-04-28 05:43:27 +000032
Chris Lattner44457bb2003-05-22 19:34:49 +000033 // APIFile - A file which contains a list of symbols that should not be marked
34 // external.
35 cl::opt<std::string>
36 APIFile("internalize-public-api-file", cl::value_desc("filename"),
Chris Lattnerad44cd82003-05-22 19:48:00 +000037 cl::desc("A file containing list of symbol names to preserve"));
38
39 // APIList - A list of symbols that should not be marked internal.
40 cl::list<std::string>
41 APIList("internalize-public-api-list", cl::value_desc("list"),
Chris Lattner224ae022003-05-22 20:27:13 +000042 cl::desc("A list of symbol names to preserve"),
43 cl::CommaSeparated);
Misha Brukmanb1c93172005-04-21 23:48:37 +000044
Reid Spencer557ab152007-02-05 23:32:05 +000045 class VISIBILITY_HIDDEN InternalizePass : public ModulePass {
Chris Lattner44457bb2003-05-22 19:34:49 +000046 std::set<std::string> ExternalNames;
Chris Lattner45517ba2005-10-18 06:29:22 +000047 bool DontInternalize;
Chris Lattner44457bb2003-05-22 19:34:49 +000048 public:
Nick Lewyckye7da2d62007-05-06 13:37:16 +000049 static char ID; // Pass identification, replacement for typeid
Dan Gohman34d442f2007-08-01 15:32:29 +000050 explicit InternalizePass(bool InternalizeEverything = true);
51 explicit InternalizePass(const std::vector <const char *>& exportList);
Chris Lattner8cdc7732006-01-03 19:13:17 +000052 void LoadFile(const char *Filename);
53 virtual bool runOnModule(Module &M);
Chris Lattner47cc3662002-07-30 19:48:44 +000054 };
Devang Patel8c78a0b2007-05-03 01:11:54 +000055 char InternalizePass::ID = 0;
Chris Lattnerc2d3d312006-08-27 22:42:52 +000056 RegisterPass<InternalizePass> X("internalize", "Internalize Global Symbols");
Chris Lattnerb28b6802002-07-23 18:06:35 +000057} // end anonymous namespace
58
Chris Lattner8cdc7732006-01-03 19:13:17 +000059InternalizePass::InternalizePass(bool InternalizeEverything)
Devang Patel09f162c2007-05-01 21:15:47 +000060 : ModulePass((intptr_t)&ID), DontInternalize(false){
Chris Lattner8cdc7732006-01-03 19:13:17 +000061 if (!APIFile.empty()) // If a filename is specified, use it
62 LoadFile(APIFile.c_str());
63 else if (!APIList.empty()) // Else, if a list is specified, use it.
64 ExternalNames.insert(APIList.begin(), APIList.end());
65 else if (!InternalizeEverything)
66 // Finally, if we're allowed to, internalize all but main.
67 DontInternalize = true;
68}
69
Devang Patelfab49722006-09-13 01:02:26 +000070InternalizePass::InternalizePass(const std::vector<const char *>&exportList)
Devang Patel09f162c2007-05-01 21:15:47 +000071 : ModulePass((intptr_t)&ID), DontInternalize(false){
Devang Patel839d9262006-07-20 17:48:05 +000072 for(std::vector<const char *>::const_iterator itr = exportList.begin();
Anton Korobeynikovfb801512007-04-16 18:10:23 +000073 itr != exportList.end(); itr++) {
Devang Patel839d9262006-07-20 17:48:05 +000074 ExternalNames.insert(*itr);
75 }
76}
77
Chris Lattner8cdc7732006-01-03 19:13:17 +000078void InternalizePass::LoadFile(const char *Filename) {
79 // Load the APIFile...
80 std::ifstream In(Filename);
81 if (!In.good()) {
Bill Wendlingf3baad32006-12-07 01:30:32 +000082 cerr << "WARNING: Internalize couldn't load file '" << Filename << "'!\n";
Chris Lattner8cdc7732006-01-03 19:13:17 +000083 return; // Do not internalize anything...
84 }
85 while (In) {
86 std::string Symbol;
87 In >> Symbol;
88 if (!Symbol.empty())
89 ExternalNames.insert(Symbol);
90 }
91}
92
93bool InternalizePass::runOnModule(Module &M) {
94 if (DontInternalize) return false;
95
96 // If no list or file of symbols was specified, check to see if there is a
97 // "main" symbol defined in the module. If so, use it, otherwise do not
98 // internalize the module, it must be a library or something.
99 //
100 if (ExternalNames.empty()) {
Reid Spencer1241d6d2007-02-05 21:19:13 +0000101 Function *MainFunc = M.getFunction("main");
Reid Spencer5301e7c2007-01-30 20:08:39 +0000102 if (MainFunc == 0 || MainFunc->isDeclaration())
Chris Lattner8cdc7732006-01-03 19:13:17 +0000103 return false; // No main found, must be a library...
104
105 // Preserve main, internalize all else.
106 ExternalNames.insert(MainFunc->getName());
107 }
108
109 bool Changed = false;
110
111 // Found a main function, mark all functions not named main as internal.
112 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
Reid Spencer5301e7c2007-01-30 20:08:39 +0000113 if (!I->isDeclaration() && // Function must be defined here
Chris Lattner8cdc7732006-01-03 19:13:17 +0000114 !I->hasInternalLinkage() && // Can't already have internal linkage
115 !ExternalNames.count(I->getName())) {// Not marked to keep external?
116 I->setLinkage(GlobalValue::InternalLinkage);
117 Changed = true;
118 ++NumFunctions;
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000119 DOUT << "Internalizing func " << I->getName() << "\n";
Chris Lattner8cdc7732006-01-03 19:13:17 +0000120 }
121
122 // Never internalize the llvm.used symbol. It is used to implement
123 // attribute((used)).
124 ExternalNames.insert("llvm.used");
Chris Lattnerd693b792006-01-19 00:40:39 +0000125
Jim Laskeyc56315c2007-01-26 21:22:28 +0000126 // Never internalize anchors used by the machine module info, else the info
127 // won't find them. (see MachineModuleInfo.)
Jim Laskey69effa22006-03-07 20:53:47 +0000128 ExternalNames.insert("llvm.dbg.compile_units");
129 ExternalNames.insert("llvm.dbg.global_variables");
130 ExternalNames.insert("llvm.dbg.subprograms");
Chris Lattner34404e32007-06-06 20:51:41 +0000131 ExternalNames.insert("llvm.global_ctors");
132 ExternalNames.insert("llvm.global_dtors");
Chris Lattnerd66e0cd2007-10-03 03:59:15 +0000133 ExternalNames.insert("llvm.noinline");
Tanya Lattner30f65fe2007-10-03 17:05:40 +0000134 ExternalNames.insert("llvm.global.annotations");
Chris Lattner8cdc7732006-01-03 19:13:17 +0000135
136 // Mark all global variables with initializers as internal as well.
137 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
138 I != E; ++I)
Reid Spencer5301e7c2007-01-30 20:08:39 +0000139 if (!I->isDeclaration() && !I->hasInternalLinkage() &&
Chris Lattner8cdc7732006-01-03 19:13:17 +0000140 !ExternalNames.count(I->getName())) {
Chris Lattner8cdc7732006-01-03 19:13:17 +0000141 I->setLinkage(GlobalValue::InternalLinkage);
142 Changed = true;
143 ++NumGlobals;
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000144 DOUT << "Internalized gvar " << I->getName() << "\n";
Chris Lattner8cdc7732006-01-03 19:13:17 +0000145 }
146
147 return Changed;
148}
149
Chris Lattner45517ba2005-10-18 06:29:22 +0000150ModulePass *llvm::createInternalizePass(bool InternalizeEverything) {
151 return new InternalizePass(InternalizeEverything);
Chris Lattner1b94c002002-04-28 05:43:27 +0000152}
Devang Patel839d9262006-07-20 17:48:05 +0000153
Devang Pateledd2f992006-07-20 18:03:39 +0000154ModulePass *llvm::createInternalizePass(const std::vector <const char *> &el) {
155 return new InternalizePass(el);
Devang Patel839d9262006-07-20 17:48:05 +0000156}