PDBContext.h revision 287506
1//===-- PDBContext.h --------------------------------------------*- C++ -*-===//
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
10#ifndef LLVM_DEBUGINFO_PDB_PDBCONTEXT_H
11#define LLVM_DEBUGINFO_PDB_PDBCONTEXT_H
12
13#include "llvm/DebugInfo/DIContext.h"
14#include "llvm/DebugInfo/PDB/IPDBSession.h"
15
16namespace llvm {
17
18namespace object {
19class COFFObjectFile;
20}
21
22/// PDBContext
23/// This data structure is the top level entity that deals with PDB debug
24/// information parsing.  This data structure exists only when there is a
25/// need for a transparent interface to different debug information formats
26/// (e.g. PDB and DWARF).  More control and power over the debug information
27/// access can be had by using the PDB interfaces directly.
28class PDBContext : public DIContext {
29
30  PDBContext(PDBContext &) = delete;
31  PDBContext &operator=(PDBContext &) = delete;
32
33public:
34  PDBContext(const object::COFFObjectFile &Object,
35             std::unique_ptr<IPDBSession> PDBSession,
36             bool RelativeAddress);
37
38  static bool classof(const DIContext *DICtx) {
39    return DICtx->getKind() == CK_PDB;
40  }
41
42  void dump(raw_ostream &OS, DIDumpType DumpType = DIDT_All) override;
43
44  DILineInfo getLineInfoForAddress(
45      uint64_t Address,
46      DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override;
47  DILineInfoTable getLineInfoForAddressRange(
48      uint64_t Address, uint64_t Size,
49      DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override;
50  DIInliningInfo getInliningInfoForAddress(
51      uint64_t Address,
52      DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override;
53
54private:
55  std::string getFunctionName(uint64_t Address, DINameKind NameKind) const;
56  std::unique_ptr<IPDBSession> Session;
57};
58}
59
60#endif
61