blob: 8956a089a99c0ae85b6486c7b337152018e292df [file] [log] [blame]
Michael Ilsemane5428042016-10-25 18:44:13 +00001//===- StripNonLineTableDebugInfo.cpp -- Strip parts of Debug Info --------===//
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
Michael Ilsemane5428042016-10-25 18:44:13 +000010#include "llvm/IR/DebugInfo.h"
11#include "llvm/Pass.h"
David Blaikief4230622018-03-29 22:42:08 +000012#include "llvm/Transforms/Utils.h"
Michael Ilsemane5428042016-10-25 18:44:13 +000013using namespace llvm;
14
15namespace {
16
17/// This pass strips all debug info that is not related line tables.
18/// The result will be the same as if the program where compiled with
19/// -gline-tables-only.
20struct StripNonLineTableDebugInfo : public ModulePass {
21 static char ID; // Pass identification, replacement for typeid
22 StripNonLineTableDebugInfo() : ModulePass(ID) {
23 initializeStripNonLineTableDebugInfoPass(*PassRegistry::getPassRegistry());
24 }
25
26 void getAnalysisUsage(AnalysisUsage &AU) const override {
27 AU.setPreservesAll();
28 }
29
30 bool runOnModule(Module &M) override {
31 return llvm::stripNonLineTableDebugInfo(M);
32 }
33};
34}
35
36char StripNonLineTableDebugInfo::ID = 0;
37INITIALIZE_PASS(StripNonLineTableDebugInfo, "strip-nonlinetable-debuginfo",
38 "Strip all debug info except linetables", false, false)
39
40ModulePass *llvm::createStripNonLineTableDebugInfoPass() {
41 return new StripNonLineTableDebugInfo();
42}