1 //===-- ModuleDebugInfoPrinter.cpp - Prints module debug info metadata ----===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This pass decodes the debug info metadata in a module and prints in a
11 // (sufficiently-prepared-) human-readable form.
13 // For example, run this pass from opt along with the -analyze option, and
14 // it'll print to standard output.
16 //===----------------------------------------------------------------------===//
18 #include "llvm/Analysis/Passes.h"
19 #include "llvm/Analysis/DebugInfo.h"
20 #include "llvm/Assembly/Writer.h"
21 #include "llvm/Pass.h"
22 #include "llvm/Function.h"
23 #include "llvm/Support/ErrorHandling.h"
24 #include "llvm/Support/raw_ostream.h"
25 #include "llvm/ADT/Statistic.h"
29 class ModuleDebugInfoPrinter
: public ModulePass
{
30 DebugInfoFinder Finder
;
32 static char ID
; // Pass identification, replacement for typeid
33 ModuleDebugInfoPrinter() : ModulePass(ID
) {
34 initializeModuleDebugInfoPrinterPass(*PassRegistry::getPassRegistry());
37 virtual bool runOnModule(Module
&M
);
39 virtual void getAnalysisUsage(AnalysisUsage
&AU
) const {
42 virtual void print(raw_ostream
&O
, const Module
*M
) const;
46 char ModuleDebugInfoPrinter::ID
= 0;
47 INITIALIZE_PASS(ModuleDebugInfoPrinter
, "module-debuginfo",
48 "Decodes module-level debug info", false, true)
50 ModulePass
*llvm::createModuleDebugInfoPrinterPass() {
51 return new ModuleDebugInfoPrinter();
54 bool ModuleDebugInfoPrinter::runOnModule(Module
&M
) {
55 Finder
.processModule(M
);
59 void ModuleDebugInfoPrinter::print(raw_ostream
&O
, const Module
*M
) const {
60 for (DebugInfoFinder::iterator I
= Finder
.compile_unit_begin(),
61 E
= Finder
.compile_unit_end(); I
!= E
; ++I
) {
62 O
<< "Compile Unit: ";
63 DICompileUnit(*I
).print(O
);
67 for (DebugInfoFinder::iterator I
= Finder
.subprogram_begin(),
68 E
= Finder
.subprogram_end(); I
!= E
; ++I
) {
70 DISubprogram(*I
).print(O
);
74 for (DebugInfoFinder::iterator I
= Finder
.global_variable_begin(),
75 E
= Finder
.global_variable_end(); I
!= E
; ++I
) {
76 O
<< "GlobalVariable: ";
77 DIGlobalVariable(*I
).print(O
);
81 for (DebugInfoFinder::iterator I
= Finder
.type_begin(),
82 E
= Finder
.type_end(); I
!= E
; ++I
) {