This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3ac68db [ValueTracking] Improve isImpliedCondition when the dominatin [...] new 8ba06b5 Resubmit "Refactor raw pdb dumper into library" new cf9b63d [ValueTracking] Add an additional test case for r266767 where [...]
The 2 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/PDB/IPDBSession.h | 1 + include/llvm/DebugInfo/PDB/PDBTypes.h | 34 +- include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 62 ++++ include/llvm/DebugInfo/PDB/Raw/PDBStream.h | 46 +++ .../PDB/{DIA/DIASession.h => Raw/RawSession.h} | 18 +- lib/DebugInfo/PDB/CMakeLists.txt | 6 +- lib/DebugInfo/PDB/PDB.cpp | 13 +- lib/DebugInfo/PDB/Raw/PDBFile.cpp | 238 +++++++++++++ lib/DebugInfo/PDB/Raw/PDBStream.cpp | 88 +++++ lib/DebugInfo/PDB/Raw/RawSession.cpp | 126 +++++++ test/DebugInfo/PDB/pdbdump-headers.test | 2 +- .../SimplifyCFG/implied-cond-matching.ll | 24 ++ tools/llvm-pdbdump/BuiltinDumper.h | 1 + tools/llvm-pdbdump/llvm-pdbdump.cpp | 396 +++++---------------- 14 files changed, 700 insertions(+), 355 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Raw/PDBFile.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/PDBStream.h copy include/llvm/DebugInfo/PDB/{DIA/DIASession.h => Raw/RawSession.h} (85%) create mode 100644 lib/DebugInfo/PDB/Raw/PDBFile.cpp create mode 100644 lib/DebugInfo/PDB/Raw/PDBStream.cpp create mode 100644 lib/DebugInfo/PDB/Raw/RawSession.cpp