OSDN Git Service

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)
commit50418a0ac4926f481c6bc27618bbb1c591842513
tree0bd2cec30a6f6a3660a57faa752f5aaeb0d1969c
parent8baa31e81c5294b9d8b0e93b7cb211009ec7457b
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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227586 91177308-0d34-0410-b5e6-96231b3b80d8
70 files changed:
include/llvm/DebugInfo/DWARF/DIContext.h [moved from include/llvm/DebugInfo/DIContext.h with 100% similarity]
include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h [moved from include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h with 100% similarity]
include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h [moved from include/llvm/DebugInfo/DWARFAcceleratorTable.h with 92% similarity]
include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h [moved from include/llvm/DebugInfo/DWARFCompileUnit.h with 95% similarity]
include/llvm/DebugInfo/DWARF/DWARFContext.h [moved from include/llvm/DebugInfo/DWARFContext.h with 96% similarity]
include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h [moved from include/llvm/DebugInfo/DWARFDebugAbbrev.h with 96% similarity]
include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h [moved from include/llvm/DebugInfo/DWARFDebugArangeSet.h with 100% similarity]
include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h [moved from include/llvm/DebugInfo/DWARFDebugAranges.h with 100% similarity]
include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h [moved from include/llvm/DebugInfo/DWARFDebugFrame.h with 100% similarity]
include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h [moved from include/llvm/DebugInfo/DWARFDebugInfoEntry.h with 97% similarity]
include/llvm/DebugInfo/DWARF/DWARFDebugLine.h [moved from include/llvm/DebugInfo/DWARFDebugLine.h with 98% similarity]
include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h [moved from include/llvm/DebugInfo/DWARFDebugLoc.h with 97% similarity]
include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h [moved from include/llvm/DebugInfo/DWARFDebugRangeList.h with 100% similarity]
include/llvm/DebugInfo/DWARF/DWARFFormValue.h [moved from include/llvm/DebugInfo/DWARFFormValue.h with 100% similarity]
include/llvm/DebugInfo/DWARF/DWARFRelocMap.h [moved from include/llvm/DebugInfo/DWARFRelocMap.h with 100% similarity]
include/llvm/DebugInfo/DWARF/DWARFSection.h [moved from include/llvm/DebugInfo/DWARFSection.h with 91% similarity]
include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h [moved from include/llvm/DebugInfo/DWARFTypeUnit.h with 96% similarity]
include/llvm/DebugInfo/DWARF/DWARFUnit.h [moved from include/llvm/DebugInfo/DWARFUnit.h with 97% similarity]
lib/DebugInfo/CMakeLists.txt
lib/DebugInfo/DWARF/CMakeLists.txt [new file with mode: 0644]
lib/DebugInfo/DWARF/DIContext.cpp [moved from lib/DebugInfo/DIContext.cpp with 84% similarity]
lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp [moved from lib/DebugInfo/DWARFAbbreviationDeclaration.cpp with 97% similarity]
lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp [moved from lib/DebugInfo/DWARFAcceleratorTable.cpp with 98% similarity]
lib/DebugInfo/DWARF/DWARFCompileUnit.cpp [moved from lib/DebugInfo/DWARFCompileUnit.cpp with 95% similarity]
lib/DebugInfo/DWARF/DWARFContext.cpp [moved from lib/DebugInfo/DWARFContext.cpp with 99% similarity]
lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp [moved from lib/DebugInfo/DWARFDebugAbbrev.cpp with 98% similarity]
lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp [moved from lib/DebugInfo/DWARFDebugArangeSet.cpp with 98% similarity]
lib/DebugInfo/DWARF/DWARFDebugAranges.cpp [moved from lib/DebugInfo/DWARFDebugAranges.cpp with 95% similarity]
lib/DebugInfo/DWARF/DWARFDebugFrame.cpp [moved from lib/DebugInfo/DWARFDebugFrame.cpp with 99% similarity]
lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp [moved from lib/DebugInfo/DWARFDebugInfoEntry.cpp with 98% similarity]
lib/DebugInfo/DWARF/DWARFDebugLine.cpp [moved from lib/DebugInfo/DWARFDebugLine.cpp with 99% similarity]
lib/DebugInfo/DWARF/DWARFDebugLoc.cpp [moved from lib/DebugInfo/DWARFDebugLoc.cpp with 98% similarity]
lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp [moved from lib/DebugInfo/DWARFDebugRangeList.cpp with 97% similarity]
lib/DebugInfo/DWARF/DWARFFormValue.cpp [moved from lib/DebugInfo/DWARFFormValue.cpp with 99% similarity]
lib/DebugInfo/DWARF/DWARFTypeUnit.cpp [moved from lib/DebugInfo/DWARFTypeUnit.cpp with 96% similarity]
lib/DebugInfo/DWARF/DWARFUnit.cpp [moved from lib/DebugInfo/DWARFUnit.cpp with 98% similarity]
lib/DebugInfo/DWARF/LLVMBuild.txt [new file with mode: 0644]
lib/DebugInfo/DWARF/Makefile [new file with mode: 0644]
lib/DebugInfo/DWARF/SyntaxHighlighting.cpp [moved from lib/DebugInfo/SyntaxHighlighting.cpp with 100% similarity]
lib/DebugInfo/DWARF/SyntaxHighlighting.h [moved from lib/DebugInfo/SyntaxHighlighting.h with 100% similarity]
lib/DebugInfo/DWARF/module.modulemap [new file with mode: 0644]
lib/DebugInfo/LLVMBuild.txt
lib/DebugInfo/Makefile
lib/DebugInfo/module.modulemap [deleted file]
lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
lib/ExecutionEngine/IntelJITEvents/LLVMBuild.txt
lib/Makefile
tools/dsymutil/CMakeLists.txt
tools/dsymutil/DwarfLinker.cpp
tools/dsymutil/LLVMBuild.txt
tools/dsymutil/Makefile
tools/lli/CMakeLists.txt
tools/llvm-dwarfdump/CMakeLists.txt
tools/llvm-dwarfdump/LLVMBuild.txt
tools/llvm-dwarfdump/Makefile
tools/llvm-dwarfdump/llvm-dwarfdump.cpp
tools/llvm-go/llvm-go.go
tools/llvm-objdump/CMakeLists.txt
tools/llvm-objdump/LLVMBuild.txt
tools/llvm-objdump/MachODump.cpp
tools/llvm-objdump/Makefile
tools/llvm-rtdyld/CMakeLists.txt
tools/llvm-rtdyld/Makefile
tools/llvm-rtdyld/llvm-rtdyld.cpp
tools/llvm-symbolizer/CMakeLists.txt
tools/llvm-symbolizer/LLVMSymbolize.h
tools/llvm-symbolizer/Makefile
unittests/DebugInfo/CMakeLists.txt
unittests/DebugInfo/DWARFFormValueTest.cpp
unittests/DebugInfo/Makefile