summaryrefslogtreecommitdiff
path: root/tools/llvm-readobj/ObjDumper.h
blob: 0c7eb5109f8f968142fa526ce381134cecb9ba1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//===-- ObjDumper.h -------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_READOBJ_OBJDUMPER_H
#define LLVM_READOBJ_OBJDUMPER_H

#include "llvm/Support/system_error.h"

#include <memory>

namespace llvm {

namespace object {
  class ObjectFile;
}

class StreamWriter;

class ObjDumper {
public:
  ObjDumper(StreamWriter& Writer);
  virtual ~ObjDumper();

  virtual void printFileHeaders() = 0;
  virtual void printSections() = 0;
  virtual void printRelocations() = 0;
  virtual void printSymbols() = 0;
  virtual void printDynamicSymbols() = 0;
  virtual void printUnwindInfo() = 0;

  // Only implemented for ELF at this time.
  virtual void printDynamicTable() { }
  virtual void printNeededLibraries() { }
  virtual void printProgramHeaders() { }

  // Only implemented for ARM ELF at this time.
  virtual void printAttributes() { }

protected:
  StreamWriter& W;
};

error_code createCOFFDumper(const object::ObjectFile *Obj, StreamWriter &Writer,
                            std::unique_ptr<ObjDumper> &Result);

error_code createELFDumper(const object::ObjectFile *Obj, StreamWriter &Writer,
                           std::unique_ptr<ObjDumper> &Result);

error_code createMachODumper(const object::ObjectFile *Obj,
                             StreamWriter &Writer,
                             std::unique_ptr<ObjDumper> &Result);

} // namespace llvm

#endif