2017-03-01 02:14:23 +01:00
|
|
|
//===- DWARFSection.h -------------------------------------------*- C++ -*-===//
|
2014-10-08 01:45:11 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-03-01 02:14:23 +01:00
|
|
|
#ifndef LLVM_DEBUGINFO_DWARF_DWARFSECTION_H
|
|
|
|
#define LLVM_DEBUGINFO_DWARF_DWARFSECTION_H
|
2014-10-08 01:45:11 +02:00
|
|
|
|
2015-05-12 00:41:07 +02:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2014-10-08 01:45:11 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
struct DWARFSection {
|
|
|
|
StringRef Data;
|
2017-07-20 00:27:28 +02:00
|
|
|
};
|
|
|
|
|
2017-08-15 17:54:43 +02:00
|
|
|
struct SectionName {
|
|
|
|
StringRef Name;
|
|
|
|
bool IsNameUnique;
|
|
|
|
};
|
|
|
|
|
2018-10-20 08:02:15 +02:00
|
|
|
struct SectionedAddress {
|
|
|
|
uint64_t Address;
|
|
|
|
uint64_t SectionIndex;
|
|
|
|
};
|
|
|
|
|
2017-03-01 02:14:23 +01:00
|
|
|
} // end namespace llvm
|
2014-10-08 01:45:11 +02:00
|
|
|
|
2017-03-01 02:14:23 +01:00
|
|
|
#endif // LLVM_DEBUGINFO_DWARF_DWARFSECTION_H
|