Skip to content

Commit

Permalink
AMDGPU/GlobalISel: Mark 32-bit float constants as legal
Browse files Browse the repository at this point in the history
Reviewers: arsenm

Reviewed By: arsenm

Subscribers: kzhuravl, wdng, nhaehnle, yaxunl, rovka, kristof.beyls, igorb, dstuttard, tpr, t-tye, llvm-commits

Differential Revision: https://reviews.llvm.org/D33212

llvm-svn: 304003
  • Loading branch information
tstellar committed May 26, 2017
1 parent bc223c6 commit dde28a8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
Expand Up @@ -36,6 +36,8 @@ AMDGPULegalizerInfo::AMDGPULegalizerInfo() {
setAction({G_CONSTANT, S32}, Legal);
setAction({G_CONSTANT, S64}, Legal);

setAction({G_FCONSTANT, S32}, Legal);

setAction({G_GEP, P1}, Legal);
setAction({G_GEP, P2}, Legal);
setAction({G_GEP, 1, S64}, Legal);
Expand Down
4 changes: 4 additions & 0 deletions llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
Expand Up @@ -2331,6 +2331,10 @@ static bool isSubRegOf(const SIRegisterInfo &TRI,
bool SIInstrInfo::verifyInstruction(const MachineInstr &MI,
StringRef &ErrInfo) const {
uint16_t Opcode = MI.getOpcode();

if (SIInstrInfo::isGenericOpcode(MI.getOpcode()))
return true;

const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
int Src0Idx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::src0);
int Src1Idx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::src1);
Expand Down
20 changes: 20 additions & 0 deletions llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-constant.mir
Expand Up @@ -5,6 +5,11 @@
entry:
ret void
}

define void @test_fconstant() {
entry:
ret void
}
...

---
Expand All @@ -18,3 +23,18 @@ body: |
%0(s32) = G_CONSTANT i32 5
...

---
name: test_fconstant
registers:
- { id: 0, class: _ }
- { id: 1, class: _ }
body: |
bb.0.entry:
; CHECK-LABEL: name: test_fconstant
; CHECK: %0(s32) = G_FCONSTANT float 1.000000e+00
; CHECK: %1(s32) = G_FCONSTANT float 7.5
%0(s32) = G_FCONSTANT float 1.0
%1(s32) = G_FCONSTANT float 7.5
...

0 comments on commit dde28a8

Please sign in to comment.