This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b1fce5c [X86] Make some cast costs more precise new a48da98 AMDGPU: fix local stack slot allocation bugs new 35e1d10 [pdb] Add a pdb2yaml option to not dump file headers. new ae108ee Refactor the PDB writing to use a builder approach
The 3 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/Raw/DbiStream.h | 30 ++++- include/llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h | 55 +++++++++ include/llvm/DebugInfo/PDB/Raw/InfoStream.h | 19 +-- include/llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h | 50 ++++++++ include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h | 4 +- include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 15 +-- include/llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h | 60 ++++++++++ lib/DebugInfo/PDB/CMakeLists.txt | 3 + lib/DebugInfo/PDB/Raw/DbiStream.cpp | 47 +++----- lib/DebugInfo/PDB/Raw/DbiStreamBuilder.cpp | 76 ++++++++++++ lib/DebugInfo/PDB/Raw/InfoStream.cpp | 21 +--- lib/DebugInfo/PDB/Raw/InfoStreamBuilder.cpp | 54 +++++++++ lib/DebugInfo/PDB/Raw/PDBFile.cpp | 69 ----------- lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp | 127 +++++++++++++++++++++ lib/Target/AMDGPU/SIRegisterInfo.cpp | 10 +- test/CodeGen/AMDGPU/local-stack-slot-bug.ll | 22 ++++ test/CodeGen/AMDGPU/selected-stack-object.ll | 12 ++ test/DebugInfo/PDB/pdbdump-yaml.test | 9 +- tools/llvm-pdbdump/PdbYaml.cpp | 93 ++++++++++++--- tools/llvm-pdbdump/PdbYaml.h | 35 ++++-- tools/llvm-pdbdump/YAMLOutputStyle.cpp | 53 +++++++-- tools/llvm-pdbdump/YAMLOutputStyle.h | 1 + tools/llvm-pdbdump/llvm-pdbdump.cpp | 67 ++++++++--- tools/llvm-pdbdump/llvm-pdbdump.h | 2 + 24 files changed, 737 insertions(+), 197 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h create mode 100644 lib/DebugInfo/PDB/Raw/DbiStreamBuilder.cpp create mode 100644 lib/DebugInfo/PDB/Raw/InfoStreamBuilder.cpp create mode 100644 lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp create mode 100644 test/CodeGen/AMDGPU/local-stack-slot-bug.ll create mode 100644 test/CodeGen/AMDGPU/selected-stack-object.ll