#ifndef LLVM_DEBUGINFO_DWARF_DWARFDEBUGLOC_H
#define LLVM_DEBUGINFO_DWARF_DWARFDEBUGLOC_H
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/DebugInfo/DWARF/DWARFDataExtractor.h"
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
#include <cstdint>
namespace llvm {
class DWARFUnit;
class MCRegisterInfo;
class raw_ostream;
class DWARFDebugLoc {
public:
struct Entry {
uint64_t Begin;
uint64_t End;
SmallVector<char, 4> Loc;
};
struct LocationList {
unsigned Offset;
SmallVector<Entry, 2> Entries;
void dump(raw_ostream &OS, bool IsLittleEndian, unsigned AddressSize,
const MCRegisterInfo *MRI, uint64_t BaseAddress,
unsigned Indent) const;
};
private:
using LocationLists = SmallVector<LocationList, 4>;
LocationLists Locations;
unsigned AddressSize;
bool IsLittleEndian;
public:
void dump(raw_ostream &OS, const MCRegisterInfo *RegInfo,
Optional<uint64_t> Offset) const;
void parse(const DWARFDataExtractor &data);
LocationList const *getLocationListAtOffset(uint64_t Offset) const;
Optional<LocationList> parseOneLocationList(DWARFDataExtractor Data,
uint32_t *Offset);
};
class DWARFDebugLocDWO {
public:
struct Entry {
uint64_t Start;
uint32_t Length;
SmallVector<char, 4> Loc;
};
struct LocationList {
unsigned Offset;
SmallVector<Entry, 2> Entries;
void dump(raw_ostream &OS, bool IsLittleEndian, unsigned AddressSize,
const MCRegisterInfo *RegInfo, unsigned Indent) const;
};
private:
using LocationLists = SmallVector<LocationList, 4>;
LocationLists Locations;
unsigned AddressSize;
bool IsLittleEndian;
public:
void parse(DataExtractor data);
void dump(raw_ostream &OS, const MCRegisterInfo *RegInfo,
Optional<uint64_t> Offset) const;
LocationList const *getLocationListAtOffset(uint64_t Offset) const;
static Optional<LocationList> parseOneLocationList(DataExtractor Data,
uint32_t *Offset);
};
}
#endif