blob: d76867615aa1fda56e1c4d817e32030917083604 [file] [log] [blame]
Benjamin Kramer358f4fd2011-09-14 01:09:52 +00001//===-- DWARFDebugArangeSet.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_DWARFDEBUGARANGESET_H
11#define LLVM_DEBUGINFO_DWARFDEBUGARANGESET_H
12
13#include "llvm/Support/DataExtractor.h"
14#include <vector>
15
16namespace llvm {
17
18class raw_ostream;
19
20class DWARFDebugArangeSet {
21public:
22 struct Header {
23 // The total length of the entries for that set, not including the length
24 // field itself.
25 uint32_t Length;
Benjamin Kramer358f4fd2011-09-14 01:09:52 +000026 // The offset from the beginning of the .debug_info section of the
27 // compilation unit entry referenced by the table.
28 uint32_t CuOffset;
Benjamin Kramerd6361c02011-09-14 18:34:47 +000029 // The DWARF version number.
30 uint16_t Version;
Benjamin Kramer358f4fd2011-09-14 01:09:52 +000031 // The size in bytes of an address on the target architecture. For segmented
32 // addressing, this is the size of the offset portion of the address.
33 uint8_t AddrSize;
34 // The size in bytes of a segment descriptor on the target architecture.
35 // If the target system uses a flat address space, this value is 0.
36 uint8_t SegSize;
37 };
38
39 struct Descriptor {
40 uint64_t Address;
41 uint64_t Length;
42 uint64_t getEndAddress() const { return Address + Length; }
43 };
44
45private:
46 typedef std::vector<Descriptor> DescriptorColl;
47 typedef DescriptorColl::iterator DescriptorIter;
48 typedef DescriptorColl::const_iterator DescriptorConstIter;
49
50 uint32_t Offset;
Rafael Espindola7b1bea32013-03-20 21:03:41 +000051 Header HeaderData;
Benjamin Kramer358f4fd2011-09-14 01:09:52 +000052 DescriptorColl ArangeDescriptors;
53
54public:
55 DWARFDebugArangeSet() { clear(); }
56 void clear();
57 void compact();
58 bool extract(DataExtractor data, uint32_t *offset_ptr);
59 void dump(raw_ostream &OS) const;
60
Rafael Espindola7b1bea32013-03-20 21:03:41 +000061 uint32_t getCompileUnitDIEOffset() const { return HeaderData.CuOffset; }
62 uint32_t getOffsetOfNextEntry() const { return Offset + HeaderData.Length + 4; }
Benjamin Kramer358f4fd2011-09-14 01:09:52 +000063 uint32_t findAddress(uint64_t address) const;
64 uint32_t getNumDescriptors() const { return ArangeDescriptors.size(); }
Rafael Espindola7b1bea32013-03-20 21:03:41 +000065 const struct Header &getHeader() const { return HeaderData; }
Benjamin Kramer358f4fd2011-09-14 01:09:52 +000066 const Descriptor *getDescriptor(uint32_t i) const {
67 if (i < ArangeDescriptors.size())
68 return &ArangeDescriptors[i];
69 return NULL;
70 }
71};
72
73}
74
75#endif