blob: 837a8e63469ee5626cd657e4a4e172a2dbe92e01 [file] [log] [blame]
Benjamin Kramera6002fd2011-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
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000010#ifndef LLVM_LIB_DEBUGINFO_DWARFDEBUGARANGESET_H
11#define LLVM_LIB_DEBUGINFO_DWARFDEBUGARANGESET_H
Benjamin Kramera6002fd2011-09-14 01:09:52 +000012
Alexey Samsonov1eabf982014-03-13 07:52:54 +000013#include "llvm/ADT/iterator_range.h"
Benjamin Kramera6002fd2011-09-14 01:09:52 +000014#include "llvm/Support/DataExtractor.h"
15#include <vector>
16
17namespace llvm {
18
19class raw_ostream;
20
21class DWARFDebugArangeSet {
22public:
23 struct Header {
24 // The total length of the entries for that set, not including the length
25 // field itself.
26 uint32_t Length;
Benjamin Kramera6002fd2011-09-14 01:09:52 +000027 // The offset from the beginning of the .debug_info section of the
28 // compilation unit entry referenced by the table.
29 uint32_t CuOffset;
Benjamin Kramera59d1182011-09-14 18:34:47 +000030 // The DWARF version number.
31 uint16_t Version;
Benjamin Kramera6002fd2011-09-14 01:09:52 +000032 // The size in bytes of an address on the target architecture. For segmented
33 // addressing, this is the size of the offset portion of the address.
34 uint8_t AddrSize;
35 // The size in bytes of a segment descriptor on the target architecture.
36 // If the target system uses a flat address space, this value is 0.
37 uint8_t SegSize;
38 };
39
40 struct Descriptor {
41 uint64_t Address;
42 uint64_t Length;
43 uint64_t getEndAddress() const { return Address + Length; }
44 };
45
46private:
47 typedef std::vector<Descriptor> DescriptorColl;
Alexey Samsonov1eabf982014-03-13 07:52:54 +000048 typedef iterator_range<DescriptorColl::const_iterator> desc_iterator_range;
Benjamin Kramera6002fd2011-09-14 01:09:52 +000049
50 uint32_t Offset;
Rafael Espindola43e553d2013-03-20 21:03:41 +000051 Header HeaderData;
Benjamin Kramera6002fd2011-09-14 01:09:52 +000052 DescriptorColl ArangeDescriptors;
53
54public:
55 DWARFDebugArangeSet() { clear(); }
56 void clear();
Benjamin Kramera6002fd2011-09-14 01:09:52 +000057 bool extract(DataExtractor data, uint32_t *offset_ptr);
58 void dump(raw_ostream &OS) const;
59
Rafael Espindola43e553d2013-03-20 21:03:41 +000060 uint32_t getCompileUnitDIEOffset() const { return HeaderData.CuOffset; }
Alexey Samsonov1eabf982014-03-13 07:52:54 +000061
62 desc_iterator_range descriptors() const {
63 return desc_iterator_range(ArangeDescriptors.begin(),
64 ArangeDescriptors.end());
Benjamin Kramera6002fd2011-09-14 01:09:52 +000065 }
Benjamin Kramera6002fd2011-09-14 01:09:52 +000066};
67
68}
69
70#endif