This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[AMDGPU] gfx908 mfma support
Differential Revision: https://reviews.llvm.org/D64584 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@365824 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
with
2,272 additions
and 64 deletions.
- +5 −3 lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
- +1 −0 lib/Target/AMDGPU/AMDGPUISelLowering.cpp
- +22 −0 lib/Target/AMDGPU/AMDGPUSearchableTables.td
- +3 −0 lib/Target/AMDGPU/GCNRegBankReassign.cpp
- +6 −2 lib/Target/AMDGPU/GCNRegPressure.cpp
- +5 −2 lib/Target/AMDGPU/GCNRegPressure.h
- +21 −7 lib/Target/AMDGPU/SIFixSGPRCopies.cpp
- +94 −3 lib/Target/AMDGPU/SIFoldOperands.cpp
- +34 −0 lib/Target/AMDGPU/SIISelLowering.cpp
- +1 −1 lib/Target/AMDGPU/SIInsertWaitcnts.cpp
- +170 −32 lib/Target/AMDGPU/SIInstrInfo.cpp
- +10 −0 lib/Target/AMDGPU/SIInstructions.td
- +2 −2 lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
- +145 −6 lib/Target/AMDGPU/SIRegisterInfo.cpp
- +28 −3 lib/Target/AMDGPU/SIRegisterInfo.h
- +1 −1 lib/Target/AMDGPU/SIWholeQuadMode.cpp
- +132 −0 test/CodeGen/AMDGPU/accvgpr-copy.mir
- +15 −0 test/CodeGen/AMDGPU/agpr-register-count.ll
- +17 −0 test/CodeGen/AMDGPU/illegal-sgpr-to-vgpr-copy.ll
- +1,361 −0 test/CodeGen/AMDGPU/llvm.amdgcn.mfma.ll
- +3 −0 test/CodeGen/AMDGPU/load-constant-i32.ll
- +4 −2 test/CodeGen/AMDGPU/load-global-i32.ll
- +2 −0 test/CodeGen/AMDGPU/load-local-i32.ll
- +190 −0 test/CodeGen/AMDGPU/mai-inline.ll
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.