This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 76ea6aab07b [AArch64] Fix UB about shift amount exceeds data bit-width new ed6b821cce3 Reland "[DebugInfo] Support DWARF expressions in eh_frame"
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h | 7 + include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h | 278 ++++++++++- include/llvm/DebugInfo/DWARF/DWARFExpression.h | 14 +- include/llvm/Support/ScopedPrinter.h | 2 + lib/DebugInfo/DWARF/DWARFContext.cpp | 12 +- lib/DebugInfo/DWARF/DWARFDataExtractor.cpp | 69 +++ lib/DebugInfo/DWARF/DWARFDebugFrame.cpp | 545 +++++++-------------- lib/DebugInfo/DWARF/DWARFExpression.cpp | 5 +- lib/ObjectYAML/ELFYAML.cpp | 1 + .../Inputs/dwarf-exprs.exe-x86-64.yaml | 46 ++ test/tools/llvm-readobj/unwind.test | 170 +++++++ tools/llvm-readobj/CMakeLists.txt | 1 + tools/llvm-readobj/DwarfCFIEHPrinter.h | 244 +++++++++ tools/llvm-readobj/ELFDumper.cpp | 6 + 14 files changed, 1011 insertions(+), 389 deletions(-) create mode 100644 test/tools/llvm-readobj/Inputs/dwarf-exprs.exe-x86-64.yaml create mode 100644 test/tools/llvm-readobj/unwind.test create mode 100644 tools/llvm-readobj/DwarfCFIEHPrinter.h