This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 7935774fce6 [AMDGPU] Optimize atomic max/min new 50d692d9595 Teach `llvm-pdbutil pretty -native` about `-injected-sources` new b18edea81b7 AMDGPU/GlobalISel: Select flat loads
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/Native/HashTable.h | 12 +- .../DebugInfo/PDB/Native/InjectedSourceStream.h | 44 + .../PDB/Native/NativeEnumInjectedSources.h | 43 + include/llvm/DebugInfo/PDB/Native/PDBFile.h | 6 + lib/DebugInfo/PDB/CMakeLists.txt | 2 + lib/DebugInfo/PDB/Native/InjectedSourceStream.cpp | 65 + .../PDB/Native/NativeEnumInjectedSources.cpp | 121 ++ lib/DebugInfo/PDB/Native/NativeSession.cpp | 13 +- lib/DebugInfo/PDB/Native/PDBFile.cpp | 57 +- lib/Target/AMDGPU/AMDGPUGISel.td | 8 + lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 17 +- lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp | 96 +- lib/Target/AMDGPU/AMDGPUInstructionSelector.h | 9 + lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp | 3 + lib/Target/AMDGPU/SIInstrInfo.cpp | 19 + lib/Target/AMDGPU/SIInstrInfo.h | 6 + .../AMDGPU/GlobalISel/inst-select-load-flat.mir | 1709 +++++++++++++++++++- .../AMDGPU/GlobalISel/inst-select-load-global.mir | 1657 +++++++++++++++++++ .../llvm-pdbutil/injected-sources-native.test | 30 + tools/llvm-pdbutil/llvm-pdbutil.cpp | 9 +- utils/gn/secondary/llvm/lib/DebugInfo/PDB/BUILD.gn | 2 + 21 files changed, 3842 insertions(+), 86 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Native/InjectedSourceStream.h create mode 100644 include/llvm/DebugInfo/PDB/Native/NativeEnumInjectedSources.h create mode 100644 lib/DebugInfo/PDB/Native/InjectedSourceStream.cpp create mode 100644 lib/DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp create mode 100644 test/CodeGen/AMDGPU/GlobalISel/inst-select-load-global.mir create mode 100644 test/tools/llvm-pdbutil/injected-sources-native.test