This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a4a5ff8 ReversePostOrderFunctionAttrs is not modifying the call graph [...] new c6d991c AMDGPU: Move R600 specific code out of AMDGPUISelLowering.cpp new 0e6ef97 Parse PDB Name Hash Table new c3791a9 [CFLAA] Fix a use-of-invalid-pointer bug. new f526e10 PDB - Instead of hardcoding stream numbers, use an enum. new 1e2f626 [codeview] Don't dump type stream bytes unless asked to new 2ab91e2 [NVPTX] Fix sign/zero-extending ldg/ldu instruction selection
The 6 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/ByteStream.h | 1 + include/llvm/DebugInfo/PDB/Raw/DbiStream.h | 2 + include/llvm/DebugInfo/PDB/Raw/NameHashTable.h | 48 +++++++++ include/llvm/DebugInfo/PDB/Raw/RawConstants.h | 7 ++ include/llvm/DebugInfo/PDB/Raw/StreamReader.h | 5 + lib/Analysis/CFLAliasAnalysis.cpp | 7 +- lib/DebugInfo/PDB/CMakeLists.txt | 1 + lib/DebugInfo/PDB/Raw/ByteStream.cpp | 5 + lib/DebugInfo/PDB/Raw/DbiStream.cpp | 6 +- lib/DebugInfo/PDB/Raw/InfoStream.cpp | 27 +++-- lib/DebugInfo/PDB/Raw/NameHashTable.cpp | 141 +++++++++++++++++++++++++ lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 39 ------- lib/Target/AMDGPU/R600ISelLowering.cpp | 49 +++++++++ lib/Target/AMDGPU/R600ISelLowering.h | 2 + lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp | 122 ++++++++++++--------- lib/Target/NVPTX/NVPTXISelDAGToDAG.h | 1 + lib/Target/NVPTX/NVPTXInstrInfo.td | 2 + test/CodeGen/NVPTX/bug26185-2.ll | 34 ++++++ test/DebugInfo/PDB/pdbdump-headers.test | 15 +++ tools/llvm-pdbdump/llvm-pdbdump.cpp | 34 ++---- tools/llvm-readobj/COFFDumper.cpp | 3 +- 21 files changed, 425 insertions(+), 126 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Raw/NameHashTable.h create mode 100644 lib/DebugInfo/PDB/Raw/NameHashTable.cpp create mode 100644 test/CodeGen/NVPTX/bug26185-2.ll