This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 81e339197ec Second attempt to add iterator_range::empty() new b4bef9ad2f1 GlobalISel: Add target pre-isel instructions new edbb230b916 AMDGPU/GlobalISel: Select more G_INSERT cases
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/CodeGen/MachineInstr.h | 6 + include/llvm/MC/MCInstrDesc.h | 7 +- include/llvm/Target/GenericOpcodes.td | 4 +- include/llvm/Target/Target.td | 4 + lib/CodeGen/GlobalISel/RegBankSelect.cpp | 5 +- lib/Target/AMDGPU/AMDGPUGISel.td | 1 + lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp | 100 ++++- lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp | 1 + lib/Target/AMDGPU/SIInstrInfo.cpp | 3 +- lib/Target/AMDGPU/SIInstructions.td | 10 + .../GlobalISel/inst-select-amdgpu-ffbh-u32.mir | 68 ++++ .../AMDGPU/GlobalISel/inst-select-insert.mir | 447 ++++++++++++++++++++- ...bswap.mir => regbankselect-amdgpu-ffbh-u32.mir} | 17 +- utils/TableGen/CodeGenInstruction.cpp | 1 + utils/TableGen/CodeGenInstruction.h | 1 + utils/TableGen/InstrInfoEmitter.cpp | 1 + 16 files changed, 620 insertions(+), 56 deletions(-) create mode 100644 test/CodeGen/AMDGPU/GlobalISel/inst-select-amdgpu-ffbh-u32.mir copy test/CodeGen/AMDGPU/GlobalISel/{regbankselect-bswap.mir => regbankselect-amdg [...]