This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from cd84fa965 [LLDB] [Driver] Use llvm::InitLLVM to do unicode argument con [...] new 3535a53da [Windows] Use information from the PE32 exceptions directory [...]
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/lldb/Symbol/CallFrameInfo.h | 28 ++ include/lldb/Symbol/FuncUnwinders.h | 9 + include/lldb/Symbol/ObjectFile.h | 3 + include/lldb/Symbol/UnwindTable.h | 3 + include/lldb/lldb-forward.h | 1 + source/Commands/CommandObjectTarget.cpp | 19 + source/Plugins/ObjectFile/PECOFF/CMakeLists.txt | 1 + .../Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | 52 +- .../Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h | 8 + .../Plugins/ObjectFile/PECOFF/PECallFrameInfo.cpp | 535 +++++++++++++++++++++ source/Plugins/ObjectFile/PECOFF/PECallFrameInfo.h | 47 ++ .../Process/Utility/RegisterContextLLDB.cpp | 17 + source/Symbol/FuncUnwinders.cpp | 65 +++ source/Symbol/ObjectFile.cpp | 5 + source/Symbol/UnwindTable.cpp | 18 +- unittests/ObjectFile/CMakeLists.txt | 1 + unittests/ObjectFile/PECOFF/CMakeLists.txt | 8 + .../ObjectFile/PECOFF/TestPECallFrameInfo.cpp | 336 +++++++++++++ 18 files changed, 1146 insertions(+), 10 deletions(-) create mode 100644 include/lldb/Symbol/CallFrameInfo.h create mode 100644 source/Plugins/ObjectFile/PECOFF/PECallFrameInfo.cpp create mode 100644 source/Plugins/ObjectFile/PECOFF/PECallFrameInfo.h create mode 100644 unittests/ObjectFile/PECOFF/CMakeLists.txt create mode 100644 unittests/ObjectFile/PECOFF/TestPECallFrameInfo.cpp