Move DebugInfo to DebugInfo/DWARF.
authorZachary Turner <zturner@google.com>
Fri, 30 Jan 2015 18:07:45 +0000 (18:07 +0000)
committerZachary Turner <zturner@google.com>
Fri, 30 Jan 2015 18:07:45 +0000 (18:07 +0000)
commit82af9438d0fa27b21f75bdea5832f1baa5450863
tree9e9412193579d574cdeabcd07de3e868795cfd4a
parent51702e6e7539afabe8cf34b11bd6b6974e203054
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
70 files changed:
llvm/include/llvm/DebugInfo/DWARF/DIContext.h [moved from llvm/include/llvm/DebugInfo/DIContext.h with 100% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h [moved from llvm/include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h with 100% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h [moved from llvm/include/llvm/DebugInfo/DWARFAcceleratorTable.h with 92% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h [moved from llvm/include/llvm/DebugInfo/DWARFCompileUnit.h with 95% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h [moved from llvm/include/llvm/DebugInfo/DWARFContext.h with 96% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h [moved from llvm/include/llvm/DebugInfo/DWARFDebugAbbrev.h with 96% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h [moved from llvm/include/llvm/DebugInfo/DWARFDebugArangeSet.h with 100% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h [moved from llvm/include/llvm/DebugInfo/DWARFDebugAranges.h with 100% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h [moved from llvm/include/llvm/DebugInfo/DWARFDebugFrame.h with 100% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h [moved from llvm/include/llvm/DebugInfo/DWARFDebugInfoEntry.h with 97% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h [moved from llvm/include/llvm/DebugInfo/DWARFDebugLine.h with 98% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h [moved from llvm/include/llvm/DebugInfo/DWARFDebugLoc.h with 97% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h [moved from llvm/include/llvm/DebugInfo/DWARFDebugRangeList.h with 100% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h [moved from llvm/include/llvm/DebugInfo/DWARFFormValue.h with 100% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.h [moved from llvm/include/llvm/DebugInfo/DWARFRelocMap.h with 100% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFSection.h [moved from llvm/include/llvm/DebugInfo/DWARFSection.h with 91% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h [moved from llvm/include/llvm/DebugInfo/DWARFTypeUnit.h with 96% similarity]
llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h [moved from llvm/include/llvm/DebugInfo/DWARFUnit.h with 97% similarity]
llvm/lib/DebugInfo/CMakeLists.txt
llvm/lib/DebugInfo/DWARF/CMakeLists.txt [new file with mode: 0644]
llvm/lib/DebugInfo/DWARF/DIContext.cpp [moved from llvm/lib/DebugInfo/DIContext.cpp with 84% similarity]
llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp [moved from llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp with 97% similarity]
llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp [moved from llvm/lib/DebugInfo/DWARFAcceleratorTable.cpp with 98% similarity]
llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp [moved from llvm/lib/DebugInfo/DWARFCompileUnit.cpp with 95% similarity]
llvm/lib/DebugInfo/DWARF/DWARFContext.cpp [moved from llvm/lib/DebugInfo/DWARFContext.cpp with 99% similarity]
llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp [moved from llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp with 98% similarity]
llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp [moved from llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp with 98% similarity]
llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp [moved from llvm/lib/DebugInfo/DWARFDebugAranges.cpp with 95% similarity]
llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp [moved from llvm/lib/DebugInfo/DWARFDebugFrame.cpp with 99% similarity]
llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp [moved from llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp with 98% similarity]
llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp [moved from llvm/lib/DebugInfo/DWARFDebugLine.cpp with 99% similarity]
llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp [moved from llvm/lib/DebugInfo/DWARFDebugLoc.cpp with 98% similarity]
llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp [moved from llvm/lib/DebugInfo/DWARFDebugRangeList.cpp with 97% similarity]
llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp [moved from llvm/lib/DebugInfo/DWARFFormValue.cpp with 99% similarity]
llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp [moved from llvm/lib/DebugInfo/DWARFTypeUnit.cpp with 96% similarity]
llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp [moved from llvm/lib/DebugInfo/DWARFUnit.cpp with 98% similarity]
llvm/lib/DebugInfo/DWARF/LLVMBuild.txt [new file with mode: 0644]
llvm/lib/DebugInfo/DWARF/Makefile [new file with mode: 0644]
llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.cpp [moved from llvm/lib/DebugInfo/SyntaxHighlighting.cpp with 100% similarity]
llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h [moved from llvm/lib/DebugInfo/SyntaxHighlighting.h with 100% similarity]
llvm/lib/DebugInfo/DWARF/module.modulemap [new file with mode: 0644]
llvm/lib/DebugInfo/LLVMBuild.txt
llvm/lib/DebugInfo/Makefile
llvm/lib/DebugInfo/module.modulemap [deleted file]
llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
llvm/lib/ExecutionEngine/IntelJITEvents/LLVMBuild.txt
llvm/lib/Makefile
llvm/tools/dsymutil/CMakeLists.txt
llvm/tools/dsymutil/DwarfLinker.cpp
llvm/tools/dsymutil/LLVMBuild.txt
llvm/tools/dsymutil/Makefile
llvm/tools/lli/CMakeLists.txt
llvm/tools/llvm-dwarfdump/CMakeLists.txt
llvm/tools/llvm-dwarfdump/LLVMBuild.txt
llvm/tools/llvm-dwarfdump/Makefile
llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
llvm/tools/llvm-go/llvm-go.go
llvm/tools/llvm-objdump/CMakeLists.txt
llvm/tools/llvm-objdump/LLVMBuild.txt
llvm/tools/llvm-objdump/MachODump.cpp
llvm/tools/llvm-objdump/Makefile
llvm/tools/llvm-rtdyld/CMakeLists.txt
llvm/tools/llvm-rtdyld/Makefile
llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
llvm/tools/llvm-symbolizer/CMakeLists.txt
llvm/tools/llvm-symbolizer/LLVMSymbolize.h
llvm/tools/llvm-symbolizer/Makefile
llvm/unittests/DebugInfo/CMakeLists.txt
llvm/unittests/DebugInfo/DWARFFormValueTest.cpp
llvm/unittests/DebugInfo/Makefile