DWARF: Add basic support for line tables.
[oota-llvm.git] / lib / DebugInfo / DWARFContext.h
1 //===-- DWARFContext.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_DWARFCONTEXT_H
11 #define LLVM_DEBUGINFO_DWARFCONTEXT_H
12
13 #include "DWARFCompileUnit.h"
14 #include "DWARFDebugAranges.h"
15 #include "DWARFDebugLine.h"
16 #include "llvm/DebugInfo/DIContext.h"
17 #include "llvm/ADT/OwningPtr.h"
18 #include "llvm/ADT/SmallVector.h"
19
20 namespace llvm {
21
22 /// DWARFContext
23 /// This data structure is the top level entity that deals with dwarf debug
24 /// information parsing. The actual data is supplied through pure virtual
25 /// methods that a concrete implementation provides.
26 class DWARFContext : public DIContext {
27   bool IsLittleEndian;
28
29   SmallVector<DWARFCompileUnit, 1> CUs;
30   OwningPtr<DWARFDebugAbbrev> Abbrev;
31   OwningPtr<DWARFDebugAranges> Aranges;
32   OwningPtr<DWARFDebugLine> Line;
33
34   DWARFContext(DWARFContext &); // = delete
35   DWARFContext &operator=(DWARFContext &); // = delete
36
37   /// Read compile units from the debug_info section and store them in CUs.
38   void parseCompileUnits();
39 protected:
40   DWARFContext(bool isLittleEndian) : IsLittleEndian(isLittleEndian) {}
41 public:
42   virtual void dump(raw_ostream &OS);
43   /// Get the number of compile units in this context.
44   unsigned getNumCompileUnits() {
45     if (CUs.empty())
46       parseCompileUnits();
47     return CUs.size();
48   }
49   /// Get the compile unit at the specified index for this compile unit.
50   DWARFCompileUnit *getCompileUnitAtIndex(unsigned index) {
51     if (CUs.empty())
52       parseCompileUnits();
53     return &CUs[index];
54   }
55
56   /// Get a pointer to the parsed DebugAbbrev object.
57   const DWARFDebugAbbrev *getDebugAbbrev();
58
59   /// Get a pointer to the parsed DebugAranges object.
60   const DWARFDebugAranges *getDebugAranges();
61
62   /// Get a pointer to the parsed DWARFDebugLine object.
63   const DWARFDebugLine *getDebugLine();
64
65   bool isLittleEndian() const { return IsLittleEndian; }
66
67   virtual StringRef getInfoSection() = 0;
68   virtual StringRef getAbbrevSection() = 0;
69   virtual StringRef getARangeSection() = 0;
70   virtual StringRef getLineSection() = 0;
71   virtual StringRef getStringSection() = 0;
72
73   static bool isSupportedVersion(unsigned version) {
74     return version == 2 || version == 3;
75   }
76 };
77
78
79 /// DWARFContextInMemory is the simplest possible implementation of a
80 /// DWARFContext. It assumes all content is available in memory and stores
81 /// pointers to it.
82 class DWARFContextInMemory : public DWARFContext {
83   StringRef InfoSection;
84   StringRef AbbrevSection;
85   StringRef ARangeSection;
86   StringRef LineSection;
87   StringRef StringSection;
88 public:
89   DWARFContextInMemory(bool isLittleEndian,
90                        StringRef infoSection,
91                        StringRef abbrevSection,
92                        StringRef aRangeSection,
93                        StringRef lineSection,
94                        StringRef stringSection)
95     : DWARFContext(isLittleEndian),
96       InfoSection(infoSection),
97       AbbrevSection(abbrevSection),
98       ARangeSection(aRangeSection),
99       LineSection(lineSection),
100       StringSection(stringSection)
101     {}
102
103   virtual StringRef getInfoSection() { return InfoSection; }
104   virtual StringRef getAbbrevSection() { return AbbrevSection; }
105   virtual StringRef getARangeSection() { return ARangeSection; }
106   virtual StringRef getLineSection() { return LineSection; }
107   virtual StringRef getStringSection() { return StringSection; }
108 };
109
110 }
111
112 #endif