Chris Lattner | dbb1735 | 2002-04-28 05:43:27 +0000 | [diff] [blame] | 1 | //===-- Internalize.cpp - Mark functions internal -------------------------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | dbb1735 | 2002-04-28 05:43:27 +0000 | [diff] [blame] | 9 | // |
| 10 | // This pass loops over all of the functions in the input module, looking for a |
Chris Lattner | 55e41ba | 2002-07-30 19:48:44 +0000 | [diff] [blame] | 11 | // main function. If a main function is found, all other functions and all |
| 12 | // global variables with initializers are marked as internal. |
Chris Lattner | dbb1735 | 2002-04-28 05:43:27 +0000 | [diff] [blame] | 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Chris Lattner | 86453c5 | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 16 | #define DEBUG_TYPE "internalize" |
Chris Lattner | 568ddab | 2002-07-24 17:12:05 +0000 | [diff] [blame] | 17 | #include "llvm/Transforms/IPO.h" |
Chris Lattner | dbb1735 | 2002-04-28 05:43:27 +0000 | [diff] [blame] | 18 | #include "llvm/Pass.h" |
| 19 | #include "llvm/Module.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 20 | #include "llvm/Support/CommandLine.h" |
Reid Spencer | 9133fe2 | 2007-02-05 23:32:05 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Compiler.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Debug.h" |
| 23 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | c7a2c7f | 2003-05-22 19:34:49 +0000 | [diff] [blame] | 24 | #include <fstream> |
| 25 | #include <set> |
Chris Lattner | 1e2385b | 2003-11-21 21:54:22 +0000 | [diff] [blame] | 26 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 27 | |
Chris Lattner | 86453c5 | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 28 | STATISTIC(NumFunctions, "Number of functions internalized"); |
| 29 | STATISTIC(NumGlobals , "Number of global vars internalized"); |
| 30 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame^] | 31 | // APIFile - A file which contains a list of symbols that should not be marked |
| 32 | // external. |
| 33 | static cl::opt<std::string> |
| 34 | APIFile("internalize-public-api-file", cl::value_desc("filename"), |
| 35 | cl::desc("A file containing list of symbol names to preserve")); |
| 36 | |
| 37 | // APIList - A list of symbols that should not be marked internal. |
| 38 | static cl::list<std::string> |
| 39 | APIList("internalize-public-api-list", cl::value_desc("list"), |
| 40 | cl::desc("A list of symbol names to preserve"), |
| 41 | cl::CommaSeparated); |
| 42 | |
Chris Lattner | f629309 | 2002-07-23 18:06:35 +0000 | [diff] [blame] | 43 | namespace { |
Reid Spencer | 9133fe2 | 2007-02-05 23:32:05 +0000 | [diff] [blame] | 44 | class VISIBILITY_HIDDEN InternalizePass : public ModulePass { |
Chris Lattner | c7a2c7f | 2003-05-22 19:34:49 +0000 | [diff] [blame] | 45 | std::set<std::string> ExternalNames; |
Chris Lattner | a27ea76 | 2005-10-18 06:29:22 +0000 | [diff] [blame] | 46 | bool DontInternalize; |
Chris Lattner | c7a2c7f | 2003-05-22 19:34:49 +0000 | [diff] [blame] | 47 | public: |
Nick Lewycky | ecd94c8 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 48 | static char ID; // Pass identification, replacement for typeid |
Dan Gohman | c2bbfc1 | 2007-08-01 15:32:29 +0000 | [diff] [blame] | 49 | explicit InternalizePass(bool InternalizeEverything = true); |
| 50 | explicit InternalizePass(const std::vector <const char *>& exportList); |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 51 | void LoadFile(const char *Filename); |
| 52 | virtual bool runOnModule(Module &M); |
Chris Lattner | 55e41ba | 2002-07-30 19:48:44 +0000 | [diff] [blame] | 53 | }; |
Chris Lattner | f629309 | 2002-07-23 18:06:35 +0000 | [diff] [blame] | 54 | } // end anonymous namespace |
| 55 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame^] | 56 | char InternalizePass::ID = 0; |
| 57 | static RegisterPass<InternalizePass> |
| 58 | X("internalize", "Internalize Global Symbols"); |
| 59 | |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 60 | InternalizePass::InternalizePass(bool InternalizeEverything) |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 61 | : ModulePass((intptr_t)&ID), DontInternalize(false){ |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 62 | if (!APIFile.empty()) // If a filename is specified, use it |
| 63 | LoadFile(APIFile.c_str()); |
| 64 | else if (!APIList.empty()) // Else, if a list is specified, use it. |
| 65 | ExternalNames.insert(APIList.begin(), APIList.end()); |
| 66 | else if (!InternalizeEverything) |
| 67 | // Finally, if we're allowed to, internalize all but main. |
| 68 | DontInternalize = true; |
| 69 | } |
| 70 | |
Devang Patel | 56eac5f | 2006-09-13 01:02:26 +0000 | [diff] [blame] | 71 | InternalizePass::InternalizePass(const std::vector<const char *>&exportList) |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 72 | : ModulePass((intptr_t)&ID), DontInternalize(false){ |
Devang Patel | 753d94a | 2006-07-20 17:48:05 +0000 | [diff] [blame] | 73 | for(std::vector<const char *>::const_iterator itr = exportList.begin(); |
Anton Korobeynikov | bed2946 | 2007-04-16 18:10:23 +0000 | [diff] [blame] | 74 | itr != exportList.end(); itr++) { |
Devang Patel | 753d94a | 2006-07-20 17:48:05 +0000 | [diff] [blame] | 75 | ExternalNames.insert(*itr); |
| 76 | } |
| 77 | } |
| 78 | |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 79 | void InternalizePass::LoadFile(const char *Filename) { |
| 80 | // Load the APIFile... |
| 81 | std::ifstream In(Filename); |
| 82 | if (!In.good()) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 83 | cerr << "WARNING: Internalize couldn't load file '" << Filename << "'!\n"; |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 84 | return; // Do not internalize anything... |
| 85 | } |
| 86 | while (In) { |
| 87 | std::string Symbol; |
| 88 | In >> Symbol; |
| 89 | if (!Symbol.empty()) |
| 90 | ExternalNames.insert(Symbol); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | bool InternalizePass::runOnModule(Module &M) { |
| 95 | if (DontInternalize) return false; |
| 96 | |
| 97 | // If no list or file of symbols was specified, check to see if there is a |
| 98 | // "main" symbol defined in the module. If so, use it, otherwise do not |
| 99 | // internalize the module, it must be a library or something. |
| 100 | // |
| 101 | if (ExternalNames.empty()) { |
Reid Spencer | 688b049 | 2007-02-05 21:19:13 +0000 | [diff] [blame] | 102 | Function *MainFunc = M.getFunction("main"); |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 103 | if (MainFunc == 0 || MainFunc->isDeclaration()) |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 104 | return false; // No main found, must be a library... |
| 105 | |
| 106 | // Preserve main, internalize all else. |
| 107 | ExternalNames.insert(MainFunc->getName()); |
| 108 | } |
| 109 | |
| 110 | bool Changed = false; |
| 111 | |
| 112 | // Found a main function, mark all functions not named main as internal. |
| 113 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 114 | if (!I->isDeclaration() && // Function must be defined here |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 115 | !I->hasInternalLinkage() && // Can't already have internal linkage |
| 116 | !ExternalNames.count(I->getName())) {// Not marked to keep external? |
| 117 | I->setLinkage(GlobalValue::InternalLinkage); |
| 118 | Changed = true; |
| 119 | ++NumFunctions; |
Bill Wendling | 0a81aac | 2006-11-26 10:02:32 +0000 | [diff] [blame] | 120 | DOUT << "Internalizing func " << I->getName() << "\n"; |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | // Never internalize the llvm.used symbol. It is used to implement |
| 124 | // attribute((used)). |
| 125 | ExternalNames.insert("llvm.used"); |
Chris Lattner | ee9e14c | 2006-01-19 00:40:39 +0000 | [diff] [blame] | 126 | |
Jim Laskey | 44c3b9f | 2007-01-26 21:22:28 +0000 | [diff] [blame] | 127 | // Never internalize anchors used by the machine module info, else the info |
| 128 | // won't find them. (see MachineModuleInfo.) |
Jim Laskey | e8c3e3b | 2006-03-07 20:53:47 +0000 | [diff] [blame] | 129 | ExternalNames.insert("llvm.dbg.compile_units"); |
| 130 | ExternalNames.insert("llvm.dbg.global_variables"); |
| 131 | ExternalNames.insert("llvm.dbg.subprograms"); |
Chris Lattner | 4e2288b | 2007-06-06 20:51:41 +0000 | [diff] [blame] | 132 | ExternalNames.insert("llvm.global_ctors"); |
| 133 | ExternalNames.insert("llvm.global_dtors"); |
Chris Lattner | bd14f58 | 2007-10-03 03:59:15 +0000 | [diff] [blame] | 134 | ExternalNames.insert("llvm.noinline"); |
Tanya Lattner | 088b591 | 2007-10-03 17:05:40 +0000 | [diff] [blame] | 135 | ExternalNames.insert("llvm.global.annotations"); |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 136 | |
| 137 | // Mark all global variables with initializers as internal as well. |
| 138 | for (Module::global_iterator I = M.global_begin(), E = M.global_end(); |
| 139 | I != E; ++I) |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 140 | if (!I->isDeclaration() && !I->hasInternalLinkage() && |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 141 | !ExternalNames.count(I->getName())) { |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 142 | I->setLinkage(GlobalValue::InternalLinkage); |
| 143 | Changed = true; |
| 144 | ++NumGlobals; |
Bill Wendling | 0a81aac | 2006-11-26 10:02:32 +0000 | [diff] [blame] | 145 | DOUT << "Internalized gvar " << I->getName() << "\n"; |
Chris Lattner | 4eb40df | 2006-01-03 19:13:17 +0000 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | return Changed; |
| 149 | } |
| 150 | |
Chris Lattner | a27ea76 | 2005-10-18 06:29:22 +0000 | [diff] [blame] | 151 | ModulePass *llvm::createInternalizePass(bool InternalizeEverything) { |
| 152 | return new InternalizePass(InternalizeEverything); |
Chris Lattner | dbb1735 | 2002-04-28 05:43:27 +0000 | [diff] [blame] | 153 | } |
Devang Patel | 753d94a | 2006-07-20 17:48:05 +0000 | [diff] [blame] | 154 | |
Devang Patel | d828a4b | 2006-07-20 18:03:39 +0000 | [diff] [blame] | 155 | ModulePass *llvm::createInternalizePass(const std::vector <const char *> &el) { |
| 156 | return new InternalizePass(el); |
Devang Patel | 753d94a | 2006-07-20 17:48:05 +0000 | [diff] [blame] | 157 | } |