This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from e4d168d [MachineBasicBlock] Refactor SplitCriticalEdge to expose a qu [...] new ec47429 Refactor raw pdb dumper into library new 6efffd3 Add natvis visualizers for endian types. new d993f1c use FileCheck; add test for disguised fabs new f2cd157 [MachineBasicBlock] Make the pass argument truly mandatory wh [...] new bf8e161 add tests for disguised fabs/fneg
The 5 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/CodeGen/MachineBasicBlock.h | 2 +- include/llvm/DebugInfo/PDB/IPDBSession.h | 1 + include/llvm/DebugInfo/PDB/PDBTypes.h | 31 +- include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 53 +++ include/llvm/DebugInfo/PDB/Raw/PDBStream.h | 46 +++ .../PDB/{DIA/DIASession.h => Raw/RawSession.h} | 18 +- lib/CodeGen/MachineBasicBlock.cpp | 14 +- lib/CodeGen/MachineLICM.cpp | 2 +- lib/CodeGen/MachineSink.cpp | 2 +- lib/CodeGen/PHIElimination.cpp | 2 +- lib/DebugInfo/PDB/CMakeLists.txt | 6 +- lib/DebugInfo/PDB/PDB.cpp | 9 +- lib/DebugInfo/PDB/Raw/PDBFile.cpp | 249 +++++++++++++ lib/DebugInfo/PDB/Raw/PDBStream.cpp | 97 +++++ lib/DebugInfo/PDB/Raw/RawSession.cpp | 126 +++++++ test/CodeGen/AArch64/fcvt-int.ll | 29 ++ test/CodeGen/PowerPC/fabs.ll | 31 +- tools/llvm-pdbdump/BuiltinDumper.h | 1 + tools/llvm-pdbdump/llvm-pdbdump.cpp | 396 +++++---------------- utils/LLVMVisualizers/llvm.natvis | 41 +++ 20 files changed, 789 insertions(+), 367 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