blob: a073ccea9593ed92b07555eb5518a585da5b7fa6 [file] [log] [blame]
Chris Lattnere3ad43c2004-12-02 21:25:03 +00001//===- StripSymbols.cpp - Strip symbols and debug info from a module ------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Chris Lattnere3ad43c2004-12-02 21:25:03 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
Chris Lattnere3ad43c2004-12-02 21:25:03 +00008//===----------------------------------------------------------------------===//
9//
Gordon Henriksenc86b6772007-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
Chris Lattnere3ad43c2004-12-02 21:25:03 +000016//
Gordon Henriksenc86b6772007-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.
Chris Lattnere3ad43c2004-12-02 21:25:03 +000020//
21//===----------------------------------------------------------------------===//
22
23#include "llvm/Transforms/IPO.h"
Chris Lattnerdd0ecf62004-12-03 16:22:08 +000024#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Instructions.h"
Chris Lattnere3ad43c2004-12-02 21:25:03 +000027#include "llvm/Module.h"
Chris Lattnere3ad43c2004-12-02 21:25:03 +000028#include "llvm/Pass.h"
Reid Spenceref9b9a72007-02-05 20:47:22 +000029#include "llvm/ValueSymbolTable.h"
Reid Spencer78d033e2007-01-06 07:24:44 +000030#include "llvm/TypeSymbolTable.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000031#include "llvm/Support/Compiler.h"
Devang Patel8c231e52008-01-16 03:33:05 +000032#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnere3ad43c2004-12-02 21:25:03 +000033using namespace llvm;
34
35namespace {
Reid Spencer9133fe22007-02-05 23:32:05 +000036 class VISIBILITY_HIDDEN StripSymbols : public ModulePass {
Chris Lattnere3ad43c2004-12-02 21:25:03 +000037 bool OnlyDebugInfo;
38 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +000039 static char ID; // Pass identification, replacement for typeid
Dan Gohmanc2bbfc12007-08-01 15:32:29 +000040 explicit StripSymbols(bool ODI = false)
Dan Gohmanae73dc12008-09-04 17:05:41 +000041 : ModulePass(&ID), OnlyDebugInfo(ODI) {}
Chris Lattnere3ad43c2004-12-02 21:25:03 +000042
Devang Patel229de952008-11-14 22:49:37 +000043 /// StripSymbolNames - Strip symbol names.
44 bool StripSymbolNames(Module &M);
45
46 // StripDebugInfo - Strip debug info in the module if it exists.
47 // To do this, we remove llvm.dbg.func.start, llvm.dbg.stoppoint, and
48 // llvm.dbg.region.end calls, and any globals they point to if now dead.
49 bool StripDebugInfo(Module &M);
50
Chris Lattnere3ad43c2004-12-02 21:25:03 +000051 virtual bool runOnModule(Module &M);
52
53 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
54 AU.setPreservesAll();
55 }
56 };
Chris Lattnere3ad43c2004-12-02 21:25:03 +000057}
58
Dan Gohman844731a2008-05-13 00:00:25 +000059char StripSymbols::ID = 0;
60static RegisterPass<StripSymbols>
61X("strip", "Strip all symbols from a module");
62
Chris Lattnere3ad43c2004-12-02 21:25:03 +000063ModulePass *llvm::createStripSymbolsPass(bool OnlyDebugInfo) {
64 return new StripSymbols(OnlyDebugInfo);
65}
66
Devang Patelbf5db812008-11-13 01:28:40 +000067/// OnlyUsedBy - Return true if V is only used by Usr.
68static bool OnlyUsedBy(Value *V, Value *Usr) {
69 for(Value::use_iterator I = V->use_begin(), E = V->use_end(); I != E; ++I) {
70 User *U = *I;
71 if (U != Usr)
72 return false;
73 }
74 return true;
75}
76
Chris Lattnerdd0ecf62004-12-03 16:22:08 +000077static void RemoveDeadConstant(Constant *C) {
78 assert(C->use_empty() && "Constant is not dead!");
Devang Patelbf5db812008-11-13 01:28:40 +000079 SmallPtrSet<Constant *, 4> Operands;
Chris Lattnerdd0ecf62004-12-03 16:22:08 +000080 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i)
81 if (isa<DerivedType>(C->getOperand(i)->getType()) &&
Devang Patelbf5db812008-11-13 01:28:40 +000082 OnlyUsedBy(C->getOperand(i), C))
83 Operands.insert(C->getOperand(i));
Chris Lattnerdd0ecf62004-12-03 16:22:08 +000084 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
85 if (!GV->hasInternalLinkage()) return; // Don't delete non static globals.
86 GV->eraseFromParent();
87 }
88 else if (!isa<Function>(C))
89 C->destroyConstant();
Misha Brukmanfd939082005-04-21 23:48:37 +000090
Chris Lattnerdd0ecf62004-12-03 16:22:08 +000091 // If the constant referenced anything, see if we can delete it as well.
Devang Patelbf5db812008-11-13 01:28:40 +000092 for (SmallPtrSet<Constant *, 4>::iterator OI = Operands.begin(),
93 OE = Operands.end(); OI != OE; ++OI)
94 RemoveDeadConstant(*OI);
Chris Lattnerdd0ecf62004-12-03 16:22:08 +000095}
Chris Lattnere3ad43c2004-12-02 21:25:03 +000096
Chris Lattner7f1444b2007-02-07 06:22:45 +000097// Strip the symbol table of its names.
98//
99static void StripSymtab(ValueSymbolTable &ST) {
100 for (ValueSymbolTable::iterator VI = ST.begin(), VE = ST.end(); VI != VE; ) {
Chris Lattnerdec628e2007-02-12 05:18:08 +0000101 Value *V = VI->getValue();
Chris Lattner7f1444b2007-02-07 06:22:45 +0000102 ++VI;
103 if (!isa<GlobalValue>(V) || cast<GlobalValue>(V)->hasInternalLinkage()) {
104 // Set name to "", removing from symbol table!
105 V->setName("");
106 }
107 }
108}
109
Devang Patel229de952008-11-14 22:49:37 +0000110bool StripSymbols::runOnModule(Module &M) {
111 bool Changed = false;
112 Changed |= StripDebugInfo(M);
113 Changed |= StripSymbolNames(M);
114 return Changed;
115}
116
117
Chris Lattner7f1444b2007-02-07 06:22:45 +0000118// Strip the symbol table of its names.
119static void StripTypeSymtab(TypeSymbolTable &ST) {
120 for (TypeSymbolTable::iterator TI = ST.begin(), E = ST.end(); TI != E; )
121 ST.remove(TI++);
122}
123
Devang Patel229de952008-11-14 22:49:37 +0000124/// StripSymbolNames - Strip symbol names.
125bool StripSymbols::StripSymbolNames(Module &M) {
Chris Lattner7f1444b2007-02-07 06:22:45 +0000126
Devang Patel229de952008-11-14 22:49:37 +0000127 if (OnlyDebugInfo)
128 return false;
Chris Lattner7f1444b2007-02-07 06:22:45 +0000129
Devang Patel229de952008-11-14 22:49:37 +0000130 SmallPtrSet<const GlobalValue*, 8> llvmUsedValues;
131 if (GlobalVariable *LLVMUsed = M.getGlobalVariable("llvm.used")) {
132 llvmUsedValues.insert(LLVMUsed);
133 // Collect values that are preserved as per explicit request.
134 // llvm.used is used to list these values.
135 if (ConstantArray *Inits =
136 dyn_cast<ConstantArray>(LLVMUsed->getInitializer())) {
137 for (unsigned i = 0, e = Inits->getNumOperands(); i != e; ++i) {
138 if (GlobalValue *GV = dyn_cast<GlobalValue>(Inits->getOperand(i)))
139 llvmUsedValues.insert(GV);
140 else if (ConstantExpr *CE =
141 dyn_cast<ConstantExpr>(Inits->getOperand(i)))
142 if (CE->getOpcode() == Instruction::BitCast)
143 if (GlobalValue *GV = dyn_cast<GlobalValue>(CE->getOperand(0)))
144 llvmUsedValues.insert(GV);
Devang Patel8c231e52008-01-16 03:33:05 +0000145 }
146 }
Chris Lattnere3ad43c2004-12-02 21:25:03 +0000147 }
Devang Patel229de952008-11-14 22:49:37 +0000148
149 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
150 I != E; ++I) {
151 if (I->hasInternalLinkage() && llvmUsedValues.count(I) == 0)
152 I->setName(""); // Internal symbols can't participate in linkage
153 }
154
155 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
156 if (I->hasInternalLinkage() && llvmUsedValues.count(I) == 0)
157 I->setName(""); // Internal symbols can't participate in linkage
158 StripSymtab(I->getValueSymbolTable());
159 }
160
161 // Remove all names from types.
162 StripTypeSymtab(M.getTypeSymbolTable());
Chris Lattnere3ad43c2004-12-02 21:25:03 +0000163
Devang Patel229de952008-11-14 22:49:37 +0000164 return true;
165}
166
167// StripDebugInfo - Strip debug info in the module if it exists.
168// To do this, we remove llvm.dbg.func.start, llvm.dbg.stoppoint, and
169// llvm.dbg.region.end calls, and any globals they point to if now dead.
170bool StripSymbols::StripDebugInfo(Module &M) {
171
Reid Spencer688b0492007-02-05 21:19:13 +0000172 Function *FuncStart = M.getFunction("llvm.dbg.func.start");
173 Function *StopPoint = M.getFunction("llvm.dbg.stoppoint");
174 Function *RegionStart = M.getFunction("llvm.dbg.region.start");
175 Function *RegionEnd = M.getFunction("llvm.dbg.region.end");
176 Function *Declare = M.getFunction("llvm.dbg.declare");
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000177
178 std::vector<GlobalVariable*> DeadGlobals;
179
180 // Remove all of the calls to the debugger intrinsics, and remove them from
181 // the module.
182 if (FuncStart) {
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000183 while (!FuncStart->use_empty()) {
184 CallInst *CI = cast<CallInst>(FuncStart->use_back());
185 Value *Arg = CI->getOperand(1);
Jim Laskey4ca97572006-03-23 18:11:33 +0000186 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000187 CI->eraseFromParent();
188 if (Arg->use_empty())
189 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
190 DeadGlobals.push_back(GV);
191 }
192 FuncStart->eraseFromParent();
193 }
194 if (StopPoint) {
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000195 while (!StopPoint->use_empty()) {
196 CallInst *CI = cast<CallInst>(StopPoint->use_back());
Jim Laskeyf4321a32006-03-13 13:07:37 +0000197 Value *Arg = CI->getOperand(3);
Jim Laskey4ca97572006-03-23 18:11:33 +0000198 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000199 CI->eraseFromParent();
200 if (Arg->use_empty())
201 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
202 DeadGlobals.push_back(GV);
203 }
204 StopPoint->eraseFromParent();
205 }
Jim Laskey4ca97572006-03-23 18:11:33 +0000206 if (RegionStart) {
207 while (!RegionStart->use_empty()) {
208 CallInst *CI = cast<CallInst>(RegionStart->use_back());
209 Value *Arg = CI->getOperand(1);
210 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
211 CI->eraseFromParent();
212 if (Arg->use_empty())
213 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
214 DeadGlobals.push_back(GV);
215 }
216 RegionStart->eraseFromParent();
217 }
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000218 if (RegionEnd) {
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000219 while (!RegionEnd->use_empty()) {
220 CallInst *CI = cast<CallInst>(RegionEnd->use_back());
Jim Laskey4ca97572006-03-23 18:11:33 +0000221 Value *Arg = CI->getOperand(1);
222 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000223 CI->eraseFromParent();
Jim Laskey4ca97572006-03-23 18:11:33 +0000224 if (Arg->use_empty())
225 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
226 DeadGlobals.push_back(GV);
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000227 }
228 RegionEnd->eraseFromParent();
229 }
Jim Laskey4ca97572006-03-23 18:11:33 +0000230 if (Declare) {
231 while (!Declare->use_empty()) {
232 CallInst *CI = cast<CallInst>(Declare->use_back());
233 Value *Arg = CI->getOperand(2);
234 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
235 CI->eraseFromParent();
236 if (Arg->use_empty())
237 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
238 DeadGlobals.push_back(GV);
239 }
240 Declare->eraseFromParent();
241 }
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000242
Devang Patelbf5db812008-11-13 01:28:40 +0000243 // llvm.dbg.compile_units and llvm.dbg.subprograms are marked as linkonce
244 // but since we are removing all debug information, make them internal now.
245 if (Constant *C = M.getNamedGlobal("llvm.dbg.compile_units"))
246 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
247 GV->setLinkage(GlobalValue::InternalLinkage);
248
249 if (Constant *C = M.getNamedGlobal("llvm.dbg.subprograms"))
250 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
251 GV->setLinkage(GlobalValue::InternalLinkage);
252
253 // Delete all dbg variables.
254 const Type *DbgVTy = M.getTypeByName("llvm.dbg.variable.type");
255 const Type *DbgGVTy = M.getTypeByName("llvm.dbg.global_variable.type");
256 if (DbgVTy || DbgGVTy)
257 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
258 I != E; ++I)
259 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(I))
260 if (GV->hasName() && GV->use_empty()
261 && !strncmp(GV->getNameStart(), "llvm.dbg", 8)
262 && (GV->getType()->getElementType() == DbgVTy
263 || GV->getType()->getElementType() == DbgGVTy))
264 DeadGlobals.push_back(GV);
265
Devang Patel229de952008-11-14 22:49:37 +0000266 if (DeadGlobals.empty())
267 return false;
268
Devang Patelbf5db812008-11-13 01:28:40 +0000269 // Delete any internal globals that were only used by the debugger intrinsics.
Chris Lattnerdd0ecf62004-12-03 16:22:08 +0000270 while (!DeadGlobals.empty()) {
271 GlobalVariable *GV = DeadGlobals.back();
272 DeadGlobals.pop_back();
273 if (GV->hasInternalLinkage())
274 RemoveDeadConstant(GV);
275 }
276
Devang Patelbf5db812008-11-13 01:28:40 +0000277 // Remove all llvm.dbg types.
278 TypeSymbolTable &ST = M.getTypeSymbolTable();
Chris Lattner3f914f02008-11-16 06:35:18 +0000279 for (TypeSymbolTable::iterator TI = ST.begin(), TE = ST.end(); TI != TE; ) {
280 if (!strncmp(TI->first.c_str(), "llvm.dbg.", 9))
Devang Patelbf5db812008-11-13 01:28:40 +0000281 ST.remove(TI++);
282 else
283 ++TI;
284 }
285
Misha Brukmanfd939082005-04-21 23:48:37 +0000286 return true;
Chris Lattnere3ad43c2004-12-02 21:25:03 +0000287}