diff options
| author | Frederic Riss <friss@apple.com> | 2014-12-19 18:26:33 +0000 |
|---|---|---|
| committer | Frederic Riss <friss@apple.com> | 2014-12-19 18:26:33 +0000 |
| commit | b88adbdeb068963c57542e7d0079a28697589684 (patch) | |
| tree | 4e644ac137333483aea09d70c288b62c86413eff | |
| parent | 54fa73afed47cbd2a901a9037621ae8ace4f8641 (diff) | |
| download | bcm5719-llvm-b88adbdeb068963c57542e7d0079a28697589684.tar.gz bcm5719-llvm-b88adbdeb068963c57542e7d0079a28697589684.zip | |
[DebugInfo] Move all DWARF headers to the public include directory.
dsymutil needs access to DWARF specific inforamtion, the small DIContext
wrapper isn't sufficient. Other DWARF consumers might want to use it too
(I'm looking at you lldb).
Differential Revision: http://reviews.llvm.org/D6694
llvm-svn: 224594
32 files changed, 48 insertions, 48 deletions
diff --git a/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.h b/llvm/include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h index bb05c302be9..bb05c302be9 100644 --- a/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.h +++ b/llvm/include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h diff --git a/llvm/lib/DebugInfo/DWARFAcceleratorTable.h b/llvm/include/llvm/DebugInfo/DWARFAcceleratorTable.h index 7dc9591b3d2..af74a478d04 100644 --- a/llvm/lib/DebugInfo/DWARFAcceleratorTable.h +++ b/llvm/include/llvm/DebugInfo/DWARFAcceleratorTable.h @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFRelocMap.h" +#include "llvm/DebugInfo/DWARFRelocMap.h" #include "llvm/ADT/SmallVector.h" #include "llvm/DebugInfo/DWARFFormValue.h" diff --git a/llvm/lib/DebugInfo/DWARFCompileUnit.h b/llvm/include/llvm/DebugInfo/DWARFCompileUnit.h index b3190b18763..dbf777cc71a 100644 --- a/llvm/lib/DebugInfo/DWARFCompileUnit.h +++ b/llvm/include/llvm/DebugInfo/DWARFCompileUnit.h @@ -10,7 +10,7 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFCOMPILEUNIT_H #define LLVM_LIB_DEBUGINFO_DWARFCOMPILEUNIT_H -#include "DWARFUnit.h" +#include "llvm/DebugInfo/DWARFUnit.h" namespace llvm { diff --git a/llvm/lib/DebugInfo/DWARFContext.h b/llvm/include/llvm/DebugInfo/DWARFContext.h index dd3fcc71f32..4c1bd81d62a 100644 --- a/llvm/lib/DebugInfo/DWARFContext.h +++ b/llvm/include/llvm/DebugInfo/DWARFContext.h @@ -10,16 +10,16 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFCONTEXT_H #define LLVM_LIB_DEBUGINFO_DWARFCONTEXT_H -#include "DWARFCompileUnit.h" -#include "DWARFDebugAranges.h" -#include "DWARFDebugFrame.h" -#include "DWARFDebugLine.h" -#include "DWARFDebugLoc.h" -#include "DWARFDebugRangeList.h" -#include "DWARFSection.h" -#include "DWARFTypeUnit.h" #include "llvm/ADT/MapVector.h" #include "llvm/ADT/SmallVector.h" +#include "llvm/DebugInfo/DWARFCompileUnit.h" +#include "llvm/DebugInfo/DWARFDebugAranges.h" +#include "llvm/DebugInfo/DWARFDebugFrame.h" +#include "llvm/DebugInfo/DWARFDebugLine.h" +#include "llvm/DebugInfo/DWARFDebugLoc.h" +#include "llvm/DebugInfo/DWARFDebugRangeList.h" +#include "llvm/DebugInfo/DWARFSection.h" +#include "llvm/DebugInfo/DWARFTypeUnit.h" #include "llvm/DebugInfo/DIContext.h" #include <vector> diff --git a/llvm/lib/DebugInfo/DWARFDebugAbbrev.h b/llvm/include/llvm/DebugInfo/DWARFDebugAbbrev.h index 4b3b8149313..6752df9cd72 100644 --- a/llvm/lib/DebugInfo/DWARFDebugAbbrev.h +++ b/llvm/include/llvm/DebugInfo/DWARFDebugAbbrev.h @@ -10,7 +10,7 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFDEBUGABBREV_H #define LLVM_LIB_DEBUGINFO_DWARFDEBUGABBREV_H -#include "DWARFAbbreviationDeclaration.h" +#include "llvm/DebugInfo/DWARFAbbreviationDeclaration.h" #include <list> #include <map> #include <vector> diff --git a/llvm/lib/DebugInfo/DWARFDebugArangeSet.h b/llvm/include/llvm/DebugInfo/DWARFDebugArangeSet.h index 837a8e63469..837a8e63469 100644 --- a/llvm/lib/DebugInfo/DWARFDebugArangeSet.h +++ b/llvm/include/llvm/DebugInfo/DWARFDebugArangeSet.h diff --git a/llvm/lib/DebugInfo/DWARFDebugAranges.h b/llvm/include/llvm/DebugInfo/DWARFDebugAranges.h index 791f010a889..791f010a889 100644 --- a/llvm/lib/DebugInfo/DWARFDebugAranges.h +++ b/llvm/include/llvm/DebugInfo/DWARFDebugAranges.h diff --git a/llvm/lib/DebugInfo/DWARFDebugFrame.h b/llvm/include/llvm/DebugInfo/DWARFDebugFrame.h index be925cbe751..be925cbe751 100644 --- a/llvm/lib/DebugInfo/DWARFDebugFrame.h +++ b/llvm/include/llvm/DebugInfo/DWARFDebugFrame.h diff --git a/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h b/llvm/include/llvm/DebugInfo/DWARFDebugInfoEntry.h index 7e7efb98ba7..f05d64b6f34 100644 --- a/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h +++ b/llvm/include/llvm/DebugInfo/DWARFDebugInfoEntry.h @@ -10,10 +10,10 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFDEBUGINFOENTRY_H #define LLVM_LIB_DEBUGINFO_DWARFDEBUGINFOENTRY_H -#include "DWARFAbbreviationDeclaration.h" -#include "DWARFDebugRangeList.h" #include "llvm/ADT/SmallVector.h" #include "llvm/DebugInfo/DIContext.h" +#include "llvm/DebugInfo/DWARFAbbreviationDeclaration.h" +#include "llvm/DebugInfo/DWARFDebugRangeList.h" #include "llvm/Support/DataTypes.h" namespace llvm { diff --git a/llvm/lib/DebugInfo/DWARFDebugLine.h b/llvm/include/llvm/DebugInfo/DWARFDebugLine.h index 7a6f1bdb026..c5ee76e3968 100644 --- a/llvm/lib/DebugInfo/DWARFDebugLine.h +++ b/llvm/include/llvm/DebugInfo/DWARFDebugLine.h @@ -10,8 +10,8 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFDEBUGLINE_H #define LLVM_LIB_DEBUGINFO_DWARFDEBUGLINE_H -#include "DWARFRelocMap.h" #include "llvm/DebugInfo/DIContext.h" +#include "llvm/DebugInfo/DWARFRelocMap.h" #include "llvm/Support/DataExtractor.h" #include <map> #include <string> diff --git a/llvm/lib/DebugInfo/DWARFDebugLoc.h b/llvm/include/llvm/DebugInfo/DWARFDebugLoc.h index 50110b39088..a6135a0c929 100644 --- a/llvm/lib/DebugInfo/DWARFDebugLoc.h +++ b/llvm/include/llvm/DebugInfo/DWARFDebugLoc.h @@ -10,8 +10,8 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFDEBUGLOC_H #define LLVM_LIB_DEBUGINFO_DWARFDEBUGLOC_H -#include "DWARFRelocMap.h" #include "llvm/ADT/SmallVector.h" +#include "llvm/DebugInfo/DWARFRelocMap.h" #include "llvm/Support/DataExtractor.h" namespace llvm { diff --git a/llvm/lib/DebugInfo/DWARFDebugRangeList.h b/llvm/include/llvm/DebugInfo/DWARFDebugRangeList.h index 4ee3bdad329..4ee3bdad329 100644 --- a/llvm/lib/DebugInfo/DWARFDebugRangeList.h +++ b/llvm/include/llvm/DebugInfo/DWARFDebugRangeList.h diff --git a/llvm/lib/DebugInfo/DWARFRelocMap.h b/llvm/include/llvm/DebugInfo/DWARFRelocMap.h index d7fe3032e50..d7fe3032e50 100644 --- a/llvm/lib/DebugInfo/DWARFRelocMap.h +++ b/llvm/include/llvm/DebugInfo/DWARFRelocMap.h diff --git a/llvm/lib/DebugInfo/DWARFSection.h b/llvm/include/llvm/DebugInfo/DWARFSection.h index 3aaf0ffb544..5f09d9e37d8 100644 --- a/llvm/lib/DebugInfo/DWARFSection.h +++ b/llvm/include/llvm/DebugInfo/DWARFSection.h @@ -10,7 +10,7 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFSECTION_H #define LLVM_LIB_DEBUGINFO_DWARFSECTION_H -#include "DWARFRelocMap.h" +#include "llvm/DebugInfo/DWARFRelocMap.h" namespace llvm { diff --git a/llvm/lib/DebugInfo/DWARFTypeUnit.h b/llvm/include/llvm/DebugInfo/DWARFTypeUnit.h index 7471b5a821a..213b54139e0 100644 --- a/llvm/lib/DebugInfo/DWARFTypeUnit.h +++ b/llvm/include/llvm/DebugInfo/DWARFTypeUnit.h @@ -10,7 +10,7 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFTYPEUNIT_H #define LLVM_LIB_DEBUGINFO_DWARFTYPEUNIT_H -#include "DWARFUnit.h" +#include "llvm/DebugInfo/DWARFUnit.h" namespace llvm { diff --git a/llvm/lib/DebugInfo/DWARFUnit.h b/llvm/include/llvm/DebugInfo/DWARFUnit.h index 786f00f5e8e..d71a1b60b73 100644 --- a/llvm/lib/DebugInfo/DWARFUnit.h +++ b/llvm/include/llvm/DebugInfo/DWARFUnit.h @@ -10,11 +10,11 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFUNIT_H #define LLVM_LIB_DEBUGINFO_DWARFUNIT_H -#include "DWARFDebugAbbrev.h" -#include "DWARFDebugInfoEntry.h" -#include "DWARFDebugRangeList.h" -#include "DWARFRelocMap.h" -#include "DWARFSection.h" +#include "llvm/DebugInfo/DWARFDebugAbbrev.h" +#include "llvm/DebugInfo/DWARFDebugInfoEntry.h" +#include "llvm/DebugInfo/DWARFDebugRangeList.h" +#include "llvm/DebugInfo/DWARFRelocMap.h" +#include "llvm/DebugInfo/DWARFSection.h" #include <vector> namespace llvm { diff --git a/llvm/lib/DebugInfo/DIContext.cpp b/llvm/lib/DebugInfo/DIContext.cpp index 01aecf8226e..20bc01f8e71 100644 --- a/llvm/lib/DebugInfo/DIContext.cpp +++ b/llvm/lib/DebugInfo/DIContext.cpp @@ -8,7 +8,7 @@ //===----------------------------------------------------------------------===// #include "llvm/DebugInfo/DIContext.h" -#include "DWARFContext.h" +#include "llvm/DebugInfo/DWARFContext.h" using namespace llvm; DIContext::~DIContext() {} diff --git a/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp b/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp index c3e570e14cc..2c9eff68b5b 100644 --- a/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp +++ b/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFAbbreviationDeclaration.h" +#include "llvm/DebugInfo/DWARFAbbreviationDeclaration.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" diff --git a/llvm/lib/DebugInfo/DWARFAcceleratorTable.cpp b/llvm/lib/DebugInfo/DWARFAcceleratorTable.cpp index 703274de492..3d370b4906e 100644 --- a/llvm/lib/DebugInfo/DWARFAcceleratorTable.cpp +++ b/llvm/lib/DebugInfo/DWARFAcceleratorTable.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFAcceleratorTable.h" +#include "llvm/DebugInfo/DWARFAcceleratorTable.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Format.h" diff --git a/llvm/lib/DebugInfo/DWARFCompileUnit.cpp b/llvm/lib/DebugInfo/DWARFCompileUnit.cpp index 33869d8c998..3ec2cf58e3f 100644 --- a/llvm/lib/DebugInfo/DWARFCompileUnit.cpp +++ b/llvm/lib/DebugInfo/DWARFCompileUnit.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFCompileUnit.h" +#include "llvm/DebugInfo/DWARFCompileUnit.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" diff --git a/llvm/lib/DebugInfo/DWARFContext.cpp b/llvm/lib/DebugInfo/DWARFContext.cpp index 9a2c7cc1962..37ba43f8c13 100644 --- a/llvm/lib/DebugInfo/DWARFContext.cpp +++ b/llvm/lib/DebugInfo/DWARFContext.cpp @@ -7,12 +7,12 @@ // //===----------------------------------------------------------------------===// -#include "DWARFContext.h" -#include "DWARFDebugArangeSet.h" -#include "DWARFAcceleratorTable.h" +#include "llvm/DebugInfo/DWARFContext.h" #include "llvm/ADT/SmallString.h" #include "llvm/ADT/StringSwitch.h" +#include "llvm/DebugInfo/DWARFDebugArangeSet.h" +#include "llvm/DebugInfo/DWARFAcceleratorTable.h" #include "llvm/Support/Compression.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Format.h" diff --git a/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp b/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp index c1a088e9bab..6c9c9ebb74f 100644 --- a/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugAbbrev.h" +#include "llvm/DebugInfo/DWARFDebugAbbrev.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; diff --git a/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp b/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp index c0a33ceaf24..d4bff90f656 100644 --- a/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugArangeSet.h" +#include "llvm/DebugInfo/DWARFDebugArangeSet.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" #include <algorithm> diff --git a/llvm/lib/DebugInfo/DWARFDebugAranges.cpp b/llvm/lib/DebugInfo/DWARFDebugAranges.cpp index fe7e46d63ba..b825d83538c 100644 --- a/llvm/lib/DebugInfo/DWARFDebugAranges.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugAranges.cpp @@ -7,10 +7,10 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugAranges.h" -#include "DWARFCompileUnit.h" -#include "DWARFContext.h" -#include "DWARFDebugArangeSet.h" +#include "llvm/DebugInfo/DWARFDebugAranges.h" +#include "llvm/DebugInfo/DWARFCompileUnit.h" +#include "llvm/DebugInfo/DWARFContext.h" +#include "llvm/DebugInfo/DWARFDebugArangeSet.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" #include <algorithm> diff --git a/llvm/lib/DebugInfo/DWARFDebugFrame.cpp b/llvm/lib/DebugInfo/DWARFDebugFrame.cpp index dfa7e82224e..968a0ce01c9 100644 --- a/llvm/lib/DebugInfo/DWARFDebugFrame.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugFrame.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugFrame.h" +#include "llvm/DebugInfo/DWARFDebugFrame.h" #include "llvm/ADT/SmallString.h" #include "llvm/Support/DataTypes.h" #include "llvm/Support/Dwarf.h" diff --git a/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp b/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp index b16a53cbb78..22c27c72dab 100644 --- a/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp @@ -7,10 +7,10 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugInfoEntry.h" -#include "DWARFCompileUnit.h" -#include "DWARFContext.h" -#include "DWARFDebugAbbrev.h" +#include "llvm/DebugInfo/DWARFDebugInfoEntry.h" +#include "llvm/DebugInfo/DWARFCompileUnit.h" +#include "llvm/DebugInfo/DWARFContext.h" +#include "llvm/DebugInfo/DWARFDebugAbbrev.h" #include "llvm/DebugInfo/DWARFFormValue.h" #include "llvm/Support/DataTypes.h" #include "llvm/Support/Debug.h" diff --git a/llvm/lib/DebugInfo/DWARFDebugLine.cpp b/llvm/lib/DebugInfo/DWARFDebugLine.cpp index a6ee4616ae1..365a5220918 100644 --- a/llvm/lib/DebugInfo/DWARFDebugLine.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugLine.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugLine.h" +#include "llvm/DebugInfo/DWARFDebugLine.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Format.h" #include "llvm/Support/Path.h" diff --git a/llvm/lib/DebugInfo/DWARFDebugLoc.cpp b/llvm/lib/DebugInfo/DWARFDebugLoc.cpp index e4aa5dcce27..05a987f7bbb 100644 --- a/llvm/lib/DebugInfo/DWARFDebugLoc.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugLoc.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugLoc.h" +#include "llvm/DebugInfo/DWARFDebugLoc.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" diff --git a/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp b/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp index 07b23b32d1f..ce60deb57ee 100644 --- a/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugRangeList.h" +#include "llvm/DebugInfo/DWARFDebugRangeList.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" diff --git a/llvm/lib/DebugInfo/DWARFFormValue.cpp b/llvm/lib/DebugInfo/DWARFFormValue.cpp index 69b97710a09..0ff8f2c58cb 100644 --- a/llvm/lib/DebugInfo/DWARFFormValue.cpp +++ b/llvm/lib/DebugInfo/DWARFFormValue.cpp @@ -8,10 +8,10 @@ //===----------------------------------------------------------------------===// #include "llvm/DebugInfo/DWARFFormValue.h" -#include "DWARFCompileUnit.h" -#include "DWARFContext.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringRef.h" +#include "llvm/DebugInfo/DWARFCompileUnit.h" +#include "llvm/DebugInfo/DWARFContext.h" #include "llvm/Support/Debug.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Format.h" diff --git a/llvm/lib/DebugInfo/DWARFTypeUnit.cpp b/llvm/lib/DebugInfo/DWARFTypeUnit.cpp index 303bf707067..6e93e28b0a1 100644 --- a/llvm/lib/DebugInfo/DWARFTypeUnit.cpp +++ b/llvm/lib/DebugInfo/DWARFTypeUnit.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFTypeUnit.h" +#include "llvm/DebugInfo/DWARFTypeUnit.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" diff --git a/llvm/lib/DebugInfo/DWARFUnit.cpp b/llvm/lib/DebugInfo/DWARFUnit.cpp index 82c45297662..395a179f14b 100644 --- a/llvm/lib/DebugInfo/DWARFUnit.cpp +++ b/llvm/lib/DebugInfo/DWARFUnit.cpp @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#include "DWARFUnit.h" -#include "DWARFContext.h" +#include "llvm/DebugInfo/DWARFUnit.h" +#include "llvm/DebugInfo/DWARFContext.h" #include "llvm/DebugInfo/DWARFFormValue.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Path.h" |

