mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
04a40c8ff7
llvm-svn: 89016
287 lines
8.9 KiB
C++
287 lines
8.9 KiB
C++
//===- StripSymbols.cpp - Strip symbols and debug info from a module ------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The StripSymbols transformation implements code stripping. Specifically, it
|
|
// can delete:
|
|
//
|
|
// * names for virtual registers
|
|
// * symbols for internal globals and functions
|
|
// * debug information
|
|
//
|
|
// Note that this transformation makes code much less readable, so it should
|
|
// only be used in situations where the 'strip' utility would be used, such as
|
|
// reducing code size or making it harder to reverse engineer code.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Transforms/IPO.h"
|
|
#include "llvm/Constants.h"
|
|
#include "llvm/DerivedTypes.h"
|
|
#include "llvm/Instructions.h"
|
|
#include "llvm/LLVMContext.h"
|
|
#include "llvm/Module.h"
|
|
#include "llvm/Pass.h"
|
|
#include "llvm/Analysis/DebugInfo.h"
|
|
#include "llvm/ValueSymbolTable.h"
|
|
#include "llvm/TypeSymbolTable.h"
|
|
#include "llvm/Transforms/Utils/Local.h"
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
|
using namespace llvm;
|
|
|
|
namespace {
|
|
class StripSymbols : public ModulePass {
|
|
bool OnlyDebugInfo;
|
|
public:
|
|
static char ID; // Pass identification, replacement for typeid
|
|
explicit StripSymbols(bool ODI = false)
|
|
: ModulePass(&ID), OnlyDebugInfo(ODI) {}
|
|
|
|
virtual bool runOnModule(Module &M);
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
AU.setPreservesAll();
|
|
}
|
|
};
|
|
|
|
class StripNonDebugSymbols : public ModulePass {
|
|
public:
|
|
static char ID; // Pass identification, replacement for typeid
|
|
explicit StripNonDebugSymbols()
|
|
: ModulePass(&ID) {}
|
|
|
|
virtual bool runOnModule(Module &M);
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
AU.setPreservesAll();
|
|
}
|
|
};
|
|
|
|
class StripDebugDeclare : public ModulePass {
|
|
public:
|
|
static char ID; // Pass identification, replacement for typeid
|
|
explicit StripDebugDeclare()
|
|
: ModulePass(&ID) {}
|
|
|
|
virtual bool runOnModule(Module &M);
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
AU.setPreservesAll();
|
|
}
|
|
};
|
|
}
|
|
|
|
char StripSymbols::ID = 0;
|
|
static RegisterPass<StripSymbols>
|
|
X("strip", "Strip all symbols from a module");
|
|
|
|
ModulePass *llvm::createStripSymbolsPass(bool OnlyDebugInfo) {
|
|
return new StripSymbols(OnlyDebugInfo);
|
|
}
|
|
|
|
char StripNonDebugSymbols::ID = 0;
|
|
static RegisterPass<StripNonDebugSymbols>
|
|
Y("strip-nondebug", "Strip all symbols, except dbg symbols, from a module");
|
|
|
|
ModulePass *llvm::createStripNonDebugSymbolsPass() {
|
|
return new StripNonDebugSymbols();
|
|
}
|
|
|
|
char StripDebugDeclare::ID = 0;
|
|
static RegisterPass<StripDebugDeclare>
|
|
Z("strip-debug-declare", "Strip all llvm.dbg.declare intrinsics");
|
|
|
|
ModulePass *llvm::createStripDebugDeclarePass() {
|
|
return new StripDebugDeclare();
|
|
}
|
|
|
|
/// OnlyUsedBy - Return true if V is only used by Usr.
|
|
static bool OnlyUsedBy(Value *V, Value *Usr) {
|
|
for(Value::use_iterator I = V->use_begin(), E = V->use_end(); I != E; ++I) {
|
|
User *U = *I;
|
|
if (U != Usr)
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
static void RemoveDeadConstant(Constant *C) {
|
|
assert(C->use_empty() && "Constant is not dead!");
|
|
SmallPtrSet<Constant*, 4> Operands;
|
|
for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i)
|
|
if (isa<DerivedType>(C->getOperand(i)->getType()) &&
|
|
OnlyUsedBy(C->getOperand(i), C))
|
|
Operands.insert(cast<Constant>(C->getOperand(i)));
|
|
if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
|
|
if (!GV->hasLocalLinkage()) return; // Don't delete non static globals.
|
|
GV->eraseFromParent();
|
|
}
|
|
else if (!isa<Function>(C))
|
|
if (isa<CompositeType>(C->getType()))
|
|
C->destroyConstant();
|
|
|
|
// If the constant referenced anything, see if we can delete it as well.
|
|
for (SmallPtrSet<Constant*, 4>::iterator OI = Operands.begin(),
|
|
OE = Operands.end(); OI != OE; ++OI)
|
|
RemoveDeadConstant(*OI);
|
|
}
|
|
|
|
// Strip the symbol table of its names.
|
|
//
|
|
static void StripSymtab(ValueSymbolTable &ST, bool PreserveDbgInfo) {
|
|
for (ValueSymbolTable::iterator VI = ST.begin(), VE = ST.end(); VI != VE; ) {
|
|
Value *V = VI->getValue();
|
|
++VI;
|
|
if (!isa<GlobalValue>(V) || cast<GlobalValue>(V)->hasLocalLinkage()) {
|
|
if (!PreserveDbgInfo || !V->getName().startswith("llvm.dbg"))
|
|
// Set name to "", removing from symbol table!
|
|
V->setName("");
|
|
}
|
|
}
|
|
}
|
|
|
|
// Strip the symbol table of its names.
|
|
static void StripTypeSymtab(TypeSymbolTable &ST, bool PreserveDbgInfo) {
|
|
for (TypeSymbolTable::iterator TI = ST.begin(), E = ST.end(); TI != E; ) {
|
|
if (PreserveDbgInfo && strncmp(TI->first.c_str(), "llvm.dbg", 8) == 0)
|
|
++TI;
|
|
else
|
|
ST.remove(TI++);
|
|
}
|
|
}
|
|
|
|
/// Find values that are marked as llvm.used.
|
|
static void findUsedValues(GlobalVariable *LLVMUsed,
|
|
SmallPtrSet<const GlobalValue*, 8> &UsedValues) {
|
|
if (LLVMUsed == 0) return;
|
|
UsedValues.insert(LLVMUsed);
|
|
|
|
ConstantArray *Inits = dyn_cast<ConstantArray>(LLVMUsed->getInitializer());
|
|
if (Inits == 0) return;
|
|
|
|
for (unsigned i = 0, e = Inits->getNumOperands(); i != e; ++i)
|
|
if (GlobalValue *GV =
|
|
dyn_cast<GlobalValue>(Inits->getOperand(i)->stripPointerCasts()))
|
|
UsedValues.insert(GV);
|
|
}
|
|
|
|
/// StripSymbolNames - Strip symbol names.
|
|
static bool StripSymbolNames(Module &M, bool PreserveDbgInfo) {
|
|
|
|
SmallPtrSet<const GlobalValue*, 8> llvmUsedValues;
|
|
findUsedValues(M.getGlobalVariable("llvm.used"), llvmUsedValues);
|
|
findUsedValues(M.getGlobalVariable("llvm.compiler.used"), llvmUsedValues);
|
|
|
|
for (Module::global_iterator I = M.global_begin(), E = M.global_end();
|
|
I != E; ++I) {
|
|
if (I->hasLocalLinkage() && llvmUsedValues.count(I) == 0)
|
|
if (!PreserveDbgInfo || !I->getName().startswith("llvm.dbg"))
|
|
I->setName(""); // Internal symbols can't participate in linkage
|
|
}
|
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
|
|
if (I->hasLocalLinkage() && llvmUsedValues.count(I) == 0)
|
|
if (!PreserveDbgInfo || !I->getName().startswith("llvm.dbg"))
|
|
I->setName(""); // Internal symbols can't participate in linkage
|
|
StripSymtab(I->getValueSymbolTable(), PreserveDbgInfo);
|
|
}
|
|
|
|
// Remove all names from types.
|
|
StripTypeSymtab(M.getTypeSymbolTable(), PreserveDbgInfo);
|
|
|
|
return true;
|
|
}
|
|
|
|
// StripDebugInfo - Strip debug info in the module if it exists.
|
|
// To do this, we remove llvm.dbg.func.start, llvm.dbg.stoppoint, and
|
|
// llvm.dbg.region.end calls, and any globals they point to if now dead.
|
|
static bool StripDebugInfo(Module &M) {
|
|
|
|
bool Changed = false;
|
|
|
|
// Remove all of the calls to the debugger intrinsics, and remove them from
|
|
// the module.
|
|
if (Function *Declare = M.getFunction("llvm.dbg.declare")) {
|
|
while (!Declare->use_empty()) {
|
|
CallInst *CI = cast<CallInst>(Declare->use_back());
|
|
CI->eraseFromParent();
|
|
}
|
|
Declare->eraseFromParent();
|
|
Changed = true;
|
|
}
|
|
|
|
NamedMDNode *NMD = M.getNamedMetadata("llvm.dbg.gv");
|
|
if (NMD) {
|
|
Changed = true;
|
|
NMD->eraseFromParent();
|
|
}
|
|
MetadataContext &TheMetadata = M.getContext().getMetadata();
|
|
unsigned MDDbgKind = TheMetadata.getMDKind("dbg");
|
|
if (!MDDbgKind)
|
|
return Changed;
|
|
|
|
for (Module::iterator MI = M.begin(), ME = M.end(); MI != ME; ++MI)
|
|
for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE;
|
|
++FI)
|
|
for (BasicBlock::iterator BI = FI->begin(), BE = FI->end(); BI != BE;
|
|
++BI)
|
|
TheMetadata.removeMD(MDDbgKind, BI);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool StripSymbols::runOnModule(Module &M) {
|
|
bool Changed = false;
|
|
Changed |= StripDebugInfo(M);
|
|
if (!OnlyDebugInfo)
|
|
Changed |= StripSymbolNames(M, false);
|
|
return Changed;
|
|
}
|
|
|
|
bool StripNonDebugSymbols::runOnModule(Module &M) {
|
|
return StripSymbolNames(M, true);
|
|
}
|
|
|
|
bool StripDebugDeclare::runOnModule(Module &M) {
|
|
|
|
Function *Declare = M.getFunction("llvm.dbg.declare");
|
|
std::vector<Constant*> DeadConstants;
|
|
|
|
if (Declare) {
|
|
while (!Declare->use_empty()) {
|
|
CallInst *CI = cast<CallInst>(Declare->use_back());
|
|
Value *Arg1 = CI->getOperand(1);
|
|
Value *Arg2 = CI->getOperand(2);
|
|
assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
|
|
CI->eraseFromParent();
|
|
if (Arg1->use_empty()) {
|
|
if (Constant *C = dyn_cast<Constant>(Arg1))
|
|
DeadConstants.push_back(C);
|
|
else
|
|
RecursivelyDeleteTriviallyDeadInstructions(Arg1);
|
|
}
|
|
if (Arg2->use_empty())
|
|
if (Constant *C = dyn_cast<Constant>(Arg2))
|
|
DeadConstants.push_back(C);
|
|
}
|
|
Declare->eraseFromParent();
|
|
}
|
|
|
|
while (!DeadConstants.empty()) {
|
|
Constant *C = DeadConstants.back();
|
|
DeadConstants.pop_back();
|
|
if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
|
|
if (GV->hasLocalLinkage())
|
|
RemoveDeadConstant(GV);
|
|
} else
|
|
RemoveDeadConstant(C);
|
|
}
|
|
|
|
return true;
|
|
}
|