[InstCombine] Signed saturation tests. NFC
[llvm-complete.git] / include / llvm / DebugInfo / DWARF / DWARFDebugRangeList.h
blob2f72c642a2d51cfeb7d84ddbaddcbcb6b986d307
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 return StartAddress == -1ULL;
60 private:
61 /// Offset in .debug_ranges section.
62 uint64_t Offset;
63 uint8_t AddressSize;
64 std::vector<RangeListEntry> Entries;
66 public:
67 DWARFDebugRangeList() { clear(); }
69 void clear();
70 void dump(raw_ostream &OS) const;
71 Error extract(const DWARFDataExtractor &data, uint64_t *offset_ptr);
72 const std::vector<RangeListEntry> &getEntries() { return Entries; }
74 /// getAbsoluteRanges - Returns absolute address ranges defined by this range
75 /// list. Has to be passed base address of the compile unit referencing this
76 /// range list.
77 DWARFAddressRangesVector
78 getAbsoluteRanges(llvm::Optional<object::SectionedAddress> BaseAddr) const;
81 } // end namespace llvm
83 #endif // LLVM_DEBUGINFO_DWARF_DWARFDEBUGRANGELIST_H