This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1f35f2f [mips][ias] Check '$rs = $rd' constraints when both registers [...] new 60367c5 GlobalISel: remove variable_ops from output list. new 8968942 [AArch64] Define AArch64RegisterInfo as a class, not a struct. NFC. new cd0d4b0 [AArch64] Mark various *Info classes as 'final'. NFC. new f15a020 [GlobalISel] Introduce an instruction selector.
The 4 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/GlobalISel/GISelAccessor.h | 4 + .../llvm/CodeGen/GlobalISel/InstructionSelect.h | 39 +++++ .../llvm/CodeGen/GlobalISel/InstructionSelector.h | 63 ++++++++ include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h | 9 ++ include/llvm/CodeGen/MachineRegisterInfo.h | 4 + include/llvm/CodeGen/TargetPassConfig.h | 10 ++ include/llvm/InitializePasses.h | 1 + include/llvm/Target/GenericOpcodes.td | 2 +- include/llvm/Target/TargetSubtargetInfo.h | 10 ++ lib/CodeGen/GlobalISel/CMakeLists.txt | 2 + lib/CodeGen/GlobalISel/GlobalISel.cpp | 1 + lib/CodeGen/GlobalISel/InstructionSelect.cpp | 99 +++++++++++++ lib/CodeGen/GlobalISel/InstructionSelector.cpp | 52 +++++++ lib/CodeGen/GlobalISel/RegisterBankInfo.cpp | 19 +++ lib/CodeGen/LLVMTargetMachine.cpp | 5 + lib/CodeGen/MachineRegisterInfo.cpp | 14 ++ lib/Target/AArch64/AArch64InstrInfo.h | 2 +- lib/Target/AArch64/AArch64InstructionSelector.cpp | 162 +++++++++++++++++++++ lib/Target/AArch64/AArch64InstructionSelector.h | 39 +++++ lib/Target/AArch64/AArch64MachineFunctionInfo.h | 2 +- lib/Target/AArch64/AArch64RegisterBankInfo.h | 2 +- lib/Target/AArch64/AArch64RegisterInfo.h | 3 +- lib/Target/AArch64/AArch64Subtarget.cpp | 5 + lib/Target/AArch64/AArch64Subtarget.h | 3 +- lib/Target/AArch64/AArch64TargetMachine.cpp | 22 ++- lib/Target/AArch64/CMakeLists.txt | 1 + lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 5 + .../AArch64/GlobalISel/arm64-instructionselect.mir | 118 +++++++++++++++ 28 files changed, 689 insertions(+), 9 deletions(-) create mode 100644 include/llvm/CodeGen/GlobalISel/InstructionSelect.h create mode 100644 include/llvm/CodeGen/GlobalISel/InstructionSelector.h create mode 100644 lib/CodeGen/GlobalISel/InstructionSelect.cpp create mode 100644 lib/CodeGen/GlobalISel/InstructionSelector.cpp create mode 100644 lib/Target/AArch64/AArch64InstructionSelector.cpp create mode 100644 lib/Target/AArch64/AArch64InstructionSelector.h create mode 100644 test/CodeGen/AArch64/GlobalISel/arm64-instructionselect.mir