This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 501f1366a [unittest] Fix scalar unit test. new 434be6998 [PDB] Fix location retrieval for function local variables and [...]
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: .../PDB/Inputs/VariablesLocationsTest.cpp | 11 + .../PDB/Inputs/VariablesLocationsTest.script | 9 + lit/SymbolFile/PDB/variables-locations.test | 6 + source/Expression/DWARFExpression.cpp | 4 +- source/Plugins/SymbolFile/NativePDB/CMakeLists.txt | 4 +- .../CodeViewRegisterMapping.cpp} | 148 +----- .../SymbolFile/NativePDB/CodeViewRegisterMapping.h | 25 + .../NativePDB/DWARFLocationExpression.cpp | 472 ++---------------- .../SymbolFile/NativePDB/DWARFLocationExpression.h | 3 + .../NativePDB/PdbFPOProgramToDWARFExpression.cpp | 528 ++++++++++++++++++++ .../NativePDB/PdbFPOProgramToDWARFExpression.h | 29 ++ source/Plugins/SymbolFile/NativePDB/PdbIndex.h | 1 + source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp | 144 +++++- source/Plugins/SymbolFile/NativePDB/PdbUtil.h | 2 +- .../SymbolFile/NativePDB/SymbolFileNativePDB.cpp | 4 +- source/Plugins/SymbolFile/PDB/CMakeLists.txt | 2 +- .../PDB/PDBLocationToDWARFExpression.cpp | 531 +++------------------ .../SymbolFile/PDB/PDBLocationToDWARFExpression.h | 5 + source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp | 25 +- unittests/SymbolFile/CMakeLists.txt | 1 + unittests/SymbolFile/NativePDB/CMakeLists.txt | 13 + .../PdbFPOProgramToDWARFExpressionTests.cpp | 166 +++++++ 22 files changed, 1067 insertions(+), 1066 deletions(-) copy source/Plugins/SymbolFile/{PDB/PDBLocationToDWARFExpression.cpp => NativePDB/ [...] create mode 100644 source/Plugins/SymbolFile/NativePDB/CodeViewRegisterMapping.h create mode 100644 source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.cpp create mode 100644 source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.h create mode 100644 unittests/SymbolFile/NativePDB/CMakeLists.txt create mode 100644 unittests/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpressionTests.cpp