Skip to content

Commit 82af943

Browse files
author
Zachary Turner
committed
Move DebugInfo to DebugInfo/DWARF.
In preparation for adding PDB support to LLVM, this moves the DWARF parsing code to its own subdirectory under DebugInfo, and renames LLVMDebugInfo to LLVMDebugInfoDWARF. This is purely a mechanical / build system change. Differential Revision: http://reviews.llvm.org/D7269 Reviewed by: Eric Christopher llvm-svn: 227586
1 parent 51702e6 commit 82af943

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+152
-111
lines changed

llvm/include/llvm/DebugInfo/DWARFAcceleratorTable.h renamed to llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
//===----------------------------------------------------------------------===//
99

1010
#include "llvm/ADT/SmallVector.h"
11-
#include "llvm/DebugInfo/DWARFFormValue.h"
12-
#include "llvm/DebugInfo/DWARFRelocMap.h"
11+
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
12+
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
1313
#include <cstdint>
1414

1515
namespace llvm {

llvm/include/llvm/DebugInfo/DWARFCompileUnit.h renamed to llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#ifndef LLVM_LIB_DEBUGINFO_DWARFCOMPILEUNIT_H
1111
#define LLVM_LIB_DEBUGINFO_DWARFCOMPILEUNIT_H
1212

13-
#include "llvm/DebugInfo/DWARFUnit.h"
13+
#include "llvm/DebugInfo/DWARF/DWARFUnit.h"
1414

1515
namespace llvm {
1616

llvm/include/llvm/DebugInfo/DWARFContext.h renamed to llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212

1313
#include "llvm/ADT/MapVector.h"
1414
#include "llvm/ADT/SmallVector.h"
15-
#include "llvm/DebugInfo/DIContext.h"
16-
#include "llvm/DebugInfo/DWARFCompileUnit.h"
17-
#include "llvm/DebugInfo/DWARFDebugAranges.h"
18-
#include "llvm/DebugInfo/DWARFDebugFrame.h"
19-
#include "llvm/DebugInfo/DWARFDebugLine.h"
20-
#include "llvm/DebugInfo/DWARFDebugLoc.h"
21-
#include "llvm/DebugInfo/DWARFDebugRangeList.h"
22-
#include "llvm/DebugInfo/DWARFSection.h"
23-
#include "llvm/DebugInfo/DWARFTypeUnit.h"
15+
#include "llvm/DebugInfo/DWARF/DIContext.h"
16+
#include "llvm/DebugInfo/DWARF/DWARFCompileUnit.h"
17+
#include "llvm/DebugInfo/DWARF/DWARFDebugAranges.h"
18+
#include "llvm/DebugInfo/DWARF/DWARFDebugFrame.h"
19+
#include "llvm/DebugInfo/DWARF/DWARFDebugLine.h"
20+
#include "llvm/DebugInfo/DWARF/DWARFDebugLoc.h"
21+
#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
22+
#include "llvm/DebugInfo/DWARF/DWARFSection.h"
23+
#include "llvm/DebugInfo/DWARF/DWARFTypeUnit.h"
2424
#include <vector>
2525

2626
namespace llvm {

llvm/include/llvm/DebugInfo/DWARFDebugAbbrev.h renamed to llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#ifndef LLVM_LIB_DEBUGINFO_DWARFDEBUGABBREV_H
1111
#define LLVM_LIB_DEBUGINFO_DWARFDEBUGABBREV_H
1212

13-
#include "llvm/DebugInfo/DWARFAbbreviationDeclaration.h"
13+
#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
1414
#include <list>
1515
#include <map>
1616
#include <vector>

llvm/include/llvm/DebugInfo/DWARFDebugInfoEntry.h renamed to llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#define LLVM_LIB_DEBUGINFO_DWARFDEBUGINFOENTRY_H
1212

1313
#include "llvm/ADT/SmallVector.h"
14-
#include "llvm/DebugInfo/DIContext.h"
15-
#include "llvm/DebugInfo/DWARFAbbreviationDeclaration.h"
16-
#include "llvm/DebugInfo/DWARFDebugRangeList.h"
14+
#include "llvm/DebugInfo/DWARF/DIContext.h"
15+
#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
16+
#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
1717
#include "llvm/Support/DataTypes.h"
1818

1919
namespace llvm {

0 commit comments

Comments
 (0)