StripSymbols.cpp revision 625fc8a70dea12493a862ff030cf63e1a3eeec8c
1//===- StripSymbols.cpp - Strip symbols and debug info from a module ------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// 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
16//
17// 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.
20//
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/LLVMContext.h"
28#include "llvm/Module.h"
29#include "llvm/Pass.h"
30#include "llvm/Analysis/DebugInfo.h"
31#include "llvm/ValueSymbolTable.h"
32#include "llvm/TypeSymbolTable.h"
33#include "llvm/Transforms/Utils/Local.h"
34#include "llvm/ADT/SmallPtrSet.h"
35using namespace llvm;
36
37namespace {
38  class StripSymbols : public ModulePass {
39    bool OnlyDebugInfo;
40  public:
41    static char ID; // Pass identification, replacement for typeid
42    explicit StripSymbols(bool ODI = false)
43      : ModulePass(&ID), OnlyDebugInfo(ODI) {}
44
45    virtual bool runOnModule(Module &M);
46
47    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
48      AU.setPreservesAll();
49    }
50  };
51
52  class StripNonDebugSymbols : public ModulePass {
53  public:
54    static char ID; // Pass identification, replacement for typeid
55    explicit StripNonDebugSymbols()
56      : ModulePass(&ID) {}
57
58    virtual bool runOnModule(Module &M);
59
60    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
61      AU.setPreservesAll();
62    }
63  };
64
65  class StripDebugDeclare : public ModulePass {
66  public:
67    static char ID; // Pass identification, replacement for typeid
68    explicit StripDebugDeclare()
69      : ModulePass(&ID) {}
70
71    virtual bool runOnModule(Module &M);
72
73    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
74      AU.setPreservesAll();
75    }
76  };
77}
78
79char StripSymbols::ID = 0;
80static RegisterPass<StripSymbols>
81X("strip", "Strip all symbols from a module");
82
83ModulePass *llvm::createStripSymbolsPass(bool OnlyDebugInfo) {
84  return new StripSymbols(OnlyDebugInfo);
85}
86
87char StripNonDebugSymbols::ID = 0;
88static RegisterPass<StripNonDebugSymbols>
89Y("strip-nondebug", "Strip all symbols, except dbg symbols, from a module");
90
91ModulePass *llvm::createStripNonDebugSymbolsPass() {
92  return new StripNonDebugSymbols();
93}
94
95char StripDebugDeclare::ID = 0;
96static RegisterPass<StripDebugDeclare>
97Z("strip-debug-declare", "Strip all llvm.dbg.declare intrinsics");
98
99ModulePass *llvm::createStripDebugDeclarePass() {
100  return new StripDebugDeclare();
101}
102
103/// OnlyUsedBy - Return true if V is only used by Usr.
104static bool OnlyUsedBy(Value *V, Value *Usr) {
105  for(Value::use_iterator I = V->use_begin(), E = V->use_end(); I != E; ++I) {
106    User *U = *I;
107    if (U != Usr)
108      return false;
109  }
110  return true;
111}
112
113static void RemoveDeadConstant(Constant *C) {
114  assert(C->use_empty() && "Constant is not dead!");
115  SmallPtrSet<Constant *, 4> Operands;
116  for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i)
117    if (isa<DerivedType>(C->getOperand(i)->getType()) &&
118        OnlyUsedBy(C->getOperand(i), C))
119      Operands.insert(C->getOperand(i));
120  if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
121    if (!GV->hasLocalLinkage()) return;   // Don't delete non static globals.
122    GV->eraseFromParent();
123  }
124  else if (!isa<Function>(C))
125    if (isa<CompositeType>(C->getType()))
126      C->destroyConstant();
127
128  // If the constant referenced anything, see if we can delete it as well.
129  for (SmallPtrSet<Constant *, 4>::iterator OI = Operands.begin(),
130         OE = Operands.end(); OI != OE; ++OI)
131    RemoveDeadConstant(*OI);
132}
133
134// Strip the symbol table of its names.
135//
136static void StripSymtab(ValueSymbolTable &ST, bool PreserveDbgInfo) {
137  for (ValueSymbolTable::iterator VI = ST.begin(), VE = ST.end(); VI != VE; ) {
138    Value *V = VI->getValue();
139    ++VI;
140    if (!isa<GlobalValue>(V) || cast<GlobalValue>(V)->hasLocalLinkage()) {
141      if (!PreserveDbgInfo || !V->getName().startswith("llvm.dbg"))
142        // Set name to "", removing from symbol table!
143        V->setName("");
144    }
145  }
146}
147
148// Strip the symbol table of its names.
149static void StripTypeSymtab(TypeSymbolTable &ST, bool PreserveDbgInfo) {
150  for (TypeSymbolTable::iterator TI = ST.begin(), E = ST.end(); TI != E; ) {
151    if (PreserveDbgInfo && strncmp(TI->first.c_str(), "llvm.dbg", 8) == 0)
152      ++TI;
153    else
154      ST.remove(TI++);
155  }
156}
157
158/// Find values that are marked as llvm.used.
159static void findUsedValues(GlobalVariable *LLVMUsed,
160                           SmallPtrSet<const GlobalValue*, 8> &UsedValues) {
161  if (LLVMUsed == 0) return;
162  UsedValues.insert(LLVMUsed);
163
164  ConstantArray *Inits = dyn_cast<ConstantArray>(LLVMUsed->getInitializer());
165  if (Inits == 0) return;
166
167  for (unsigned i = 0, e = Inits->getNumOperands(); i != e; ++i)
168    if (GlobalValue *GV =
169          dyn_cast<GlobalValue>(Inits->getOperand(i)->stripPointerCasts()))
170      UsedValues.insert(GV);
171}
172
173/// StripSymbolNames - Strip symbol names.
174static bool StripSymbolNames(Module &M, bool PreserveDbgInfo) {
175
176  SmallPtrSet<const GlobalValue*, 8> llvmUsedValues;
177  findUsedValues(M.getGlobalVariable("llvm.used"), llvmUsedValues);
178  findUsedValues(M.getGlobalVariable("llvm.compiler.used"), llvmUsedValues);
179
180  for (Module::global_iterator I = M.global_begin(), E = M.global_end();
181       I != E; ++I) {
182    if (I->hasLocalLinkage() && llvmUsedValues.count(I) == 0)
183      if (!PreserveDbgInfo || !I->getName().startswith("llvm.dbg"))
184        I->setName("");     // Internal symbols can't participate in linkage
185  }
186
187  for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
188    if (I->hasLocalLinkage() && llvmUsedValues.count(I) == 0)
189      if (!PreserveDbgInfo || !I->getName().startswith("llvm.dbg"))
190        I->setName("");     // Internal symbols can't participate in linkage
191    StripSymtab(I->getValueSymbolTable(), PreserveDbgInfo);
192  }
193
194  // Remove all names from types.
195  StripTypeSymtab(M.getTypeSymbolTable(), PreserveDbgInfo);
196
197  return true;
198}
199
200// StripDebugInfo - Strip debug info in the module if it exists.
201// To do this, we remove llvm.dbg.func.start, llvm.dbg.stoppoint, and
202// llvm.dbg.region.end calls, and any globals they point to if now dead.
203static bool StripDebugInfo(Module &M) {
204
205  // Remove all of the calls to the debugger intrinsics, and remove them from
206  // the module.
207  Function *FuncStart = M.getFunction("llvm.dbg.func.start");
208  Function *StopPoint = M.getFunction("llvm.dbg.stoppoint");
209  Function *RegionStart = M.getFunction("llvm.dbg.region.start");
210  Function *RegionEnd = M.getFunction("llvm.dbg.region.end");
211  Function *Declare = M.getFunction("llvm.dbg.declare");
212
213  if (FuncStart) {
214    while (!FuncStart->use_empty()) {
215      CallInst *CI = cast<CallInst>(FuncStart->use_back());
216      CI->eraseFromParent();
217    }
218    FuncStart->eraseFromParent();
219  }
220  if (StopPoint) {
221    while (!StopPoint->use_empty()) {
222      CallInst *CI = cast<CallInst>(StopPoint->use_back());
223      CI->eraseFromParent();
224    }
225    StopPoint->eraseFromParent();
226  }
227  if (RegionStart) {
228    while (!RegionStart->use_empty()) {
229      CallInst *CI = cast<CallInst>(RegionStart->use_back());
230      CI->eraseFromParent();
231    }
232    RegionStart->eraseFromParent();
233  }
234  if (RegionEnd) {
235    while (!RegionEnd->use_empty()) {
236      CallInst *CI = cast<CallInst>(RegionEnd->use_back());
237      CI->eraseFromParent();
238    }
239    RegionEnd->eraseFromParent();
240  }
241  if (Declare) {
242    while (!Declare->use_empty()) {
243      CallInst *CI = cast<CallInst>(Declare->use_back());
244      CI->eraseFromParent();
245    }
246    Declare->eraseFromParent();
247  }
248
249  NamedMDNode *NMD = M.getNamedMetadata("llvm.dbg.gv");
250  if (NMD)
251    NMD->eraseFromParent();
252
253  return true;
254}
255
256bool StripSymbols::runOnModule(Module &M) {
257  bool Changed = false;
258  Changed |= StripDebugInfo(M);
259  if (!OnlyDebugInfo)
260    Changed |= StripSymbolNames(M, false);
261  return Changed;
262}
263
264bool StripNonDebugSymbols::runOnModule(Module &M) {
265  return StripSymbolNames(M, true);
266}
267
268bool StripDebugDeclare::runOnModule(Module &M) {
269
270  Function *Declare = M.getFunction("llvm.dbg.declare");
271  std::vector<Constant*> DeadConstants;
272
273  if (Declare) {
274    while (!Declare->use_empty()) {
275      CallInst *CI = cast<CallInst>(Declare->use_back());
276      Value *Arg1 = CI->getOperand(1);
277      Value *Arg2 = CI->getOperand(2);
278      assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
279      CI->eraseFromParent();
280      if (Arg1->use_empty()) {
281        if (Constant *C = dyn_cast<Constant>(Arg1))
282          DeadConstants.push_back(C);
283        else
284          RecursivelyDeleteTriviallyDeadInstructions(Arg1);
285      }
286      if (Arg2->use_empty())
287        if (Constant *C = dyn_cast<Constant>(Arg2))
288          DeadConstants.push_back(C);
289    }
290    Declare->eraseFromParent();
291  }
292
293  // Delete all llvm.dbg.global_variables.
294  for (Module::global_iterator I = M.global_begin(), E = M.global_end();
295       I != E; ++I) {
296    GlobalVariable *GV = dyn_cast<GlobalVariable>(I);
297    if (!GV) continue;
298    if (GV->use_empty() && GV->getName().startswith("llvm.dbg.global_variable"))
299      DeadConstants.push_back(GV);
300  }
301
302  while (!DeadConstants.empty()) {
303    Constant *C = DeadConstants.back();
304    DeadConstants.pop_back();
305    if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
306      if (GV->hasLocalLinkage())
307        RemoveDeadConstant(GV);
308    }
309    else
310      RemoveDeadConstant(C);
311  }
312
313  return true;
314}
315