[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / include / llvm / DebugInfo / DWARF / DWARFDebugRangeList.h
blob9bc011726247ad10e8aa3e1743284733ce5da823
1 //===- DWARFDebugRangeList.h ------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_DWARF_DWARFDEBUGRANGELIST_H
10 #define LLVM_DEBUGINFO_DWARF_DWARFDEBUGRANGELIST_H
12 #include "llvm/DebugInfo/DWARF/DWARFAddressRange.h"
13 #include "llvm/DebugInfo/DWARF/DWARFDataExtractor.h"
14 #include <cassert>
15 #include <cstdint>
16 #include <vector>
18 namespace llvm {
20 class raw_ostream;
22 class DWARFDebugRangeList {
23 public:
24 struct RangeListEntry {
25 /// A beginning address offset. This address offset has the size of an
26 /// address and is relative to the applicable base address of the
27 /// compilation unit referencing this range list. It marks the beginning
28 /// of an address range.
29 uint64_t StartAddress;
30 /// An ending address offset. This address offset again has the size of
31 /// an address and is relative to the applicable base address of the
32 /// compilation unit referencing this range list. It marks the first
33 /// address past the end of the address range. The ending address must
34 /// be greater than or equal to the beginning address.
35 uint64_t EndAddress;
36 /// A section index this range belongs to.
37 uint64_t SectionIndex;
39 /// The end of any given range list is marked by an end of list entry,
40 /// which consists of a 0 for the beginning address offset
41 /// and a 0 for the ending address offset.
42 bool isEndOfListEntry() const {
43 return (StartAddress == 0) && (EndAddress == 0);
46 /// A base address selection entry consists of:
47 /// 1. The value of the largest representable address offset
48 /// (for example, 0xffffffff when the size of an address is 32 bits).
49 /// 2. An address, which defines the appropriate base address for
50 /// use in interpreting the beginning and ending address offsets of
51 /// subsequent entries of the location list.
52 bool isBaseAddressSelectionEntry(uint8_t AddressSize) const {
53 assert(AddressSize == 4 || AddressSize == 8);
54 if (AddressSize == 4)
55 return StartAddress == -1U;
56 else
57 return StartAddress == -1ULL;
61 private:
62 /// Offset in .debug_ranges section.
63 uint64_t Offset;
64 uint8_t AddressSize;
65 std::vector<RangeListEntry> Entries;
67 public:
68 DWARFDebugRangeList() { clear(); }
70 void clear();
71 void dump(raw_ostream &OS) const;
72 Error extract(const DWARFDataExtractor &data, uint64_t *offset_ptr);
73 const std::vector<RangeListEntry> &getEntries() { return Entries; }
75 /// getAbsoluteRanges - Returns absolute address ranges defined by this range
76 /// list. Has to be passed base address of the compile unit referencing this
77 /// range list.
78 DWARFAddressRangesVector
79 getAbsoluteRanges(llvm::Optional<object::SectionedAddress> BaseAddr) const;
82 } // end namespace llvm
84 #endif // LLVM_DEBUGINFO_DWARF_DWARFDEBUGRANGELIST_H