blob: cd2396258c41f8b6d99ca1b07bb245cfdebcfbb7 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- StripSymbols.cpp - Strip symbols and debug info from a module ------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
Gordon Henriksen79ed5872007-11-04 16:15:04 +000010// The StripSymbols transformation implements code stripping. Specifically, it
11// can delete:
12//
13// * names for virtual registers
14// * symbols for internal globals and functions
15// * debug information
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016//
Gordon Henriksen79ed5872007-11-04 16:15:04 +000017// Note that this transformation makes code much less readable, so it should
18// only be used in situations where the 'strip' utility would be used, such as
19// reducing code size or making it harder to reverse engineer code.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020//
21//===----------------------------------------------------------------------===//
22
23#include "llvm/Transforms/IPO.h"
24#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Instructions.h"
27#include "llvm/Module.h"
28#include "llvm/Pass.h"
29#include "llvm/ValueSymbolTable.h"
30#include "llvm/TypeSymbolTable.h"
31#include "llvm/Support/Compiler.h"
Devang Patel5dc8fde2008-01-16 03:33:05 +000032#include "llvm/ADT/SmallPtrSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033using namespace llvm;
34
35namespace {
36 class VISIBILITY_HIDDEN StripSymbols : public ModulePass {
37 bool OnlyDebugInfo;
38 public:
39 static char ID; // Pass identification, replacement for typeid
Dan Gohman34c280e2007-08-01 15:32:29 +000040 explicit StripSymbols(bool ODI = false)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041 : ModulePass((intptr_t)&ID), OnlyDebugInfo(ODI) {}
42
43 virtual bool runOnModule(Module &M);
44
45 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
46 AU.setPreservesAll();
47 }
48 };
49
50 char StripSymbols::ID = 0;
51 RegisterPass<StripSymbols> X("strip", "Strip all symbols from a module");
52}
53
54ModulePass *llvm::createStripSymbolsPass(bool OnlyDebugInfo) {
55 return new StripSymbols(OnlyDebugInfo);
56}
57
58static void RemoveDeadConstant(Constant *C) {
59 assert(C->use_empty() && "Constant is not dead!");
60 std::vector<Constant*> Operands;
61 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i)
62 if (isa<DerivedType>(C->getOperand(i)->getType()) &&
63 C->getOperand(i)->hasOneUse())
64 Operands.push_back(C->getOperand(i));
65 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
66 if (!GV->hasInternalLinkage()) return; // Don't delete non static globals.
67 GV->eraseFromParent();
68 }
69 else if (!isa<Function>(C))
70 C->destroyConstant();
71
72 // If the constant referenced anything, see if we can delete it as well.
73 while (!Operands.empty()) {
74 RemoveDeadConstant(Operands.back());
75 Operands.pop_back();
76 }
77}
78
79// Strip the symbol table of its names.
80//
81static void StripSymtab(ValueSymbolTable &ST) {
82 for (ValueSymbolTable::iterator VI = ST.begin(), VE = ST.end(); VI != VE; ) {
83 Value *V = VI->getValue();
84 ++VI;
85 if (!isa<GlobalValue>(V) || cast<GlobalValue>(V)->hasInternalLinkage()) {
86 // Set name to "", removing from symbol table!
87 V->setName("");
88 }
89 }
90}
91
92// Strip the symbol table of its names.
93static void StripTypeSymtab(TypeSymbolTable &ST) {
94 for (TypeSymbolTable::iterator TI = ST.begin(), E = ST.end(); TI != E; )
95 ST.remove(TI++);
96}
97
98
99
100bool StripSymbols::runOnModule(Module &M) {
101 // If we're not just stripping debug info, strip all symbols from the
102 // functions and the names from any internal globals.
103 if (!OnlyDebugInfo) {
Chris Lattner476eea92008-01-16 21:35:43 +0000104 SmallPtrSet<const GlobalValue*, 8> llvmUsedValues;
105 if (GlobalVariable *LLVMUsed = M.getGlobalVariable("llvm.used")) {
106 llvmUsedValues.insert(LLVMUsed);
Devang Patel5dc8fde2008-01-16 03:33:05 +0000107 // Collect values that are preserved as per explicit request.
108 // llvm.used is used to list these values.
Chris Lattner476eea92008-01-16 21:35:43 +0000109 if (ConstantArray *Inits =
110 dyn_cast<ConstantArray>(LLVMUsed->getInitializer())) {
111 for (unsigned i = 0, e = Inits->getNumOperands(); i != e; ++i) {
112 if (GlobalValue *GV = dyn_cast<GlobalValue>(Inits->getOperand(i)))
113 llvmUsedValues.insert(GV);
114 else if (ConstantExpr *CE =
115 dyn_cast<ConstantExpr>(Inits->getOperand(i)))
116 if (CE->getOpcode() == Instruction::BitCast)
117 if (GlobalValue *GV = dyn_cast<GlobalValue>(CE->getOperand(0)))
118 llvmUsedValues.insert(GV);
Devang Patel5dc8fde2008-01-16 03:33:05 +0000119 }
120 }
121 }
122
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
Devang Patel5dc8fde2008-01-16 03:33:05 +0000124 I != E; ++I) {
125 if (I->hasInternalLinkage() && llvmUsedValues.count(I) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 I->setName(""); // Internal symbols can't participate in linkage
Devang Patel5dc8fde2008-01-16 03:33:05 +0000127 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128
129 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
Devang Patel5dc8fde2008-01-16 03:33:05 +0000130 if (I->hasInternalLinkage() && llvmUsedValues.count(I) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131 I->setName(""); // Internal symbols can't participate in linkage
132 StripSymtab(I->getValueSymbolTable());
133 }
134
135 // Remove all names from types.
136 StripTypeSymtab(M.getTypeSymbolTable());
137 }
138
139 // Strip debug info in the module if it exists. To do this, we remove
140 // llvm.dbg.func.start, llvm.dbg.stoppoint, and llvm.dbg.region.end calls, and
141 // any globals they point to if now dead.
142 Function *FuncStart = M.getFunction("llvm.dbg.func.start");
143 Function *StopPoint = M.getFunction("llvm.dbg.stoppoint");
144 Function *RegionStart = M.getFunction("llvm.dbg.region.start");
145 Function *RegionEnd = M.getFunction("llvm.dbg.region.end");
146 Function *Declare = M.getFunction("llvm.dbg.declare");
147 if (!FuncStart && !StopPoint && !RegionStart && !RegionEnd && !Declare)
148 return true;
149
150 std::vector<GlobalVariable*> DeadGlobals;
151
152 // Remove all of the calls to the debugger intrinsics, and remove them from
153 // the module.
154 if (FuncStart) {
155 while (!FuncStart->use_empty()) {
156 CallInst *CI = cast<CallInst>(FuncStart->use_back());
157 Value *Arg = CI->getOperand(1);
158 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
159 CI->eraseFromParent();
160 if (Arg->use_empty())
161 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
162 DeadGlobals.push_back(GV);
163 }
164 FuncStart->eraseFromParent();
165 }
166 if (StopPoint) {
167 while (!StopPoint->use_empty()) {
168 CallInst *CI = cast<CallInst>(StopPoint->use_back());
169 Value *Arg = CI->getOperand(3);
170 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
171 CI->eraseFromParent();
172 if (Arg->use_empty())
173 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
174 DeadGlobals.push_back(GV);
175 }
176 StopPoint->eraseFromParent();
177 }
178 if (RegionStart) {
179 while (!RegionStart->use_empty()) {
180 CallInst *CI = cast<CallInst>(RegionStart->use_back());
181 Value *Arg = CI->getOperand(1);
182 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
183 CI->eraseFromParent();
184 if (Arg->use_empty())
185 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
186 DeadGlobals.push_back(GV);
187 }
188 RegionStart->eraseFromParent();
189 }
190 if (RegionEnd) {
191 while (!RegionEnd->use_empty()) {
192 CallInst *CI = cast<CallInst>(RegionEnd->use_back());
193 Value *Arg = CI->getOperand(1);
194 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
195 CI->eraseFromParent();
196 if (Arg->use_empty())
197 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
198 DeadGlobals.push_back(GV);
199 }
200 RegionEnd->eraseFromParent();
201 }
202 if (Declare) {
203 while (!Declare->use_empty()) {
204 CallInst *CI = cast<CallInst>(Declare->use_back());
205 Value *Arg = CI->getOperand(2);
206 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
207 CI->eraseFromParent();
208 if (Arg->use_empty())
209 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
210 DeadGlobals.push_back(GV);
211 }
212 Declare->eraseFromParent();
213 }
214
215 // Finally, delete any internal globals that were only used by the debugger
216 // intrinsics.
217 while (!DeadGlobals.empty()) {
218 GlobalVariable *GV = DeadGlobals.back();
219 DeadGlobals.pop_back();
220 if (GV->hasInternalLinkage())
221 RemoveDeadConstant(GV);
222 }
223
224 return true;
225}