[llvm-commits] CVS: llvm/lib/Transforms/IPO/StripSymbols.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Dec 3 08:22:29 PST 2004
Changes in directory llvm/lib/Transforms/IPO:
StripSymbols.cpp updated: 1.1 -> 1.2
---
Log message:
Implement stripping of debug symbols, making the --strip-debug options in
gccas/gccld more than just a noop.
---
Diffs of the changes: (+82 -2)
Index: llvm/lib/Transforms/IPO/StripSymbols.cpp
diff -u llvm/lib/Transforms/IPO/StripSymbols.cpp:1.1 llvm/lib/Transforms/IPO/StripSymbols.cpp:1.2
--- llvm/lib/Transforms/IPO/StripSymbols.cpp:1.1 Thu Dec 2 15:25:03 2004
+++ llvm/lib/Transforms/IPO/StripSymbols.cpp Fri Dec 3 10:22:08 2004
@@ -23,9 +23,12 @@
//===----------------------------------------------------------------------===//
#include "llvm/Transforms/IPO.h"
+#include "llvm/Constants.h"
+#include "llvm/DerivedTypes.h"
+#include "llvm/Instructions.h"
#include "llvm/Module.h"
-#include "llvm/SymbolTable.h"
#include "llvm/Pass.h"
+#include "llvm/SymbolTable.h"
using namespace llvm;
namespace {
@@ -47,6 +50,26 @@
return new StripSymbols(OnlyDebugInfo);
}
+static void RemoveDeadConstant(Constant *C) {
+ assert(C->use_empty() && "Constant is not dead!");
+ std::vector<Constant*> Operands;
+ for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i)
+ if (isa<DerivedType>(C->getOperand(i)->getType()) &&
+ C->getOperand(i)->hasOneUse())
+ Operands.push_back(C->getOperand(i));
+ if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
+ if (!GV->hasInternalLinkage()) return; // Don't delete non static globals.
+ GV->eraseFromParent();
+ }
+ else if (!isa<Function>(C))
+ C->destroyConstant();
+
+ // If the constant referenced anything, see if we can delete it as well.
+ while (!Operands.empty()) {
+ RemoveDeadConstant(Operands.back());
+ Operands.pop_back();
+ }
+}
bool StripSymbols::runOnModule(Module &M) {
// If we're not just stripping debug info, strip all symbols from the
@@ -63,6 +86,63 @@
}
}
- // FIXME: implement stripping of debug info.
+ // 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.
+ Function *FuncStart = M.getNamedFunction("llvm.dbg.func.start");
+ Function *StopPoint = M.getNamedFunction("llvm.dbg.stoppoint");
+ Function *RegionEnd = M.getNamedFunction("llvm.dbg.region.end");
+ if (!FuncStart && !StopPoint && !RegionEnd)
+ return true;
+
+ std::vector<GlobalVariable*> DeadGlobals;
+
+ // Remove all of the calls to the debugger intrinsics, and remove them from
+ // the module.
+ if (FuncStart) {
+ Value *RV = UndefValue::get(StopPoint->getFunctionType()->getReturnType());
+ while (!FuncStart->use_empty()) {
+ CallInst *CI = cast<CallInst>(FuncStart->use_back());
+ Value *Arg = CI->getOperand(1);
+ CI->replaceAllUsesWith(RV);
+ CI->eraseFromParent();
+ if (Arg->use_empty())
+ if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
+ DeadGlobals.push_back(GV);
+ }
+ FuncStart->eraseFromParent();
+ }
+ if (StopPoint) {
+ Value *RV = UndefValue::get(StopPoint->getFunctionType()->getReturnType());
+ while (!StopPoint->use_empty()) {
+ CallInst *CI = cast<CallInst>(StopPoint->use_back());
+ Value *Arg = CI->getOperand(4);
+ CI->replaceAllUsesWith(RV);
+ CI->eraseFromParent();
+ if (Arg->use_empty())
+ if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Arg))
+ DeadGlobals.push_back(GV);
+ }
+ StopPoint->eraseFromParent();
+ }
+ if (RegionEnd) {
+ Value *RV = UndefValue::get(RegionEnd->getFunctionType()->getReturnType());
+ while (!RegionEnd->use_empty()) {
+ CallInst *CI = cast<CallInst>(RegionEnd->use_back());
+ CI->replaceAllUsesWith(RV);
+ CI->eraseFromParent();
+ }
+ RegionEnd->eraseFromParent();
+ }
+
+ // Finally, delete any internal globals that were only used by the debugger
+ // intrinsics.
+ while (!DeadGlobals.empty()) {
+ GlobalVariable *GV = DeadGlobals.back();
+ DeadGlobals.pop_back();
+ if (GV->hasInternalLinkage())
+ RemoveDeadConstant(GV);
+ }
+
return true;
}
More information about the llvm-commits
mailing list