Michael Ilseman | e542804 | 2016-10-25 18:44:13 +0000 | [diff] [blame] | 1 | //===- StripNonLineTableDebugInfo.cpp -- Strip parts of Debug Info --------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Michael Ilseman | e542804 | 2016-10-25 18:44:13 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Michael Ilseman | e542804 | 2016-10-25 18:44:13 +0000 | [diff] [blame] | 9 | #include "llvm/IR/DebugInfo.h" |
Reid Kleckner | 05da2fe | 2019-11-13 13:15:01 -0800 | [diff] [blame] | 10 | #include "llvm/InitializePasses.h" |
Michael Ilseman | e542804 | 2016-10-25 18:44:13 +0000 | [diff] [blame] | 11 | #include "llvm/Pass.h" |
David Blaikie | f423062 | 2018-03-29 22:42:08 +0000 | [diff] [blame] | 12 | #include "llvm/Transforms/Utils.h" |
Michael Ilseman | e542804 | 2016-10-25 18:44:13 +0000 | [diff] [blame] | 13 | using namespace llvm; |
| 14 | |
| 15 | namespace { |
| 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. |
| 20 | struct 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 | |
| 36 | char StripNonLineTableDebugInfo::ID = 0; |
| 37 | INITIALIZE_PASS(StripNonLineTableDebugInfo, "strip-nonlinetable-debuginfo", |
| 38 | "Strip all debug info except linetables", false, false) |
| 39 | |
| 40 | ModulePass *llvm::createStripNonLineTableDebugInfoPass() { |
| 41 | return new StripNonLineTableDebugInfo(); |
| 42 | } |