[AMDGPU] Reject misaligned SGPR constraints for inline asm (#123590)

The indices of SGPR register pairs need to be 2-aligned and SGPR
quadruplets need to be 4-aligned. With this patch, we report an error
when inline asm register constraints specify a misaligned register
index, instead of silently dropping the specified index.

Fixes #123208

---------

Co-authored-by: Matt Arsenault <arsenm2@gmail.com>
This commit is contained in:
Fabian Ritter 2025-01-20 15:47:11 +01:00 committed by GitHub
parent fcec8756e2
commit cc5eba1737
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 57 additions and 0 deletions

View File

@ -15877,6 +15877,12 @@ SITargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI_,
RC = TRI->getAGPRClassForBitWidth(Width);
if (RC) {
Reg = TRI->getMatchingSuperReg(Reg, AMDGPU::sub0, RC);
if (!Reg) {
// The register class does not contain the requested register,
// e.g., because it is an SGPR pair that would violate alignment
// requirements.
return std::pair(0U, nullptr);
}
return std::pair(Reg, RC);
}
}

View File

@ -102,3 +102,54 @@ define <2 x i8> @inline_asm_2xi8_in_s_def() {
%r = and <2 x i8> %phys, %virt
ret <2 x i8> %r
}
; The register is wide enough, but it does not satisfy alignment constraints:
; ERR: error: couldn't allocate input reg for constraint '{s[1:2]}'
define void @misaligned_sgpr_2xi32_in(<2 x i32> inreg %arg0) {
call void asm sideeffect "; use $0", "{s[1:2]}"(<2 x i32> %arg0)
ret void
}
; ERR: error: couldn't allocate input reg for constraint '{s[23:24]}'
define void @misaligned_sgpr_2xi32_in_23(<2 x i32> inreg %arg0) {
call void asm sideeffect "; use $0", "{s[23:24]}"(<2 x i32> %arg0)
ret void
}
; ERR: error: couldn't allocate input reg for constraint '{s[1:4]}'
define void @misaligned_sgpr_4xi32_in(<4 x i32> inreg %arg0) {
call void asm sideeffect "; use $0", "{s[1:4]}"(<4 x i32> %arg0)
ret void
}
; ERR: error: couldn't allocate input reg for constraint '{s[2:5]}'
define void @misaligned_sgpr_4xi32_in_2(<4 x i32> inreg %arg0) {
call void asm sideeffect "; use $0", "{s[2:5]}"(<4 x i32> %arg0)
ret void
}
; ERR: error: couldn't allocate output register for constraint '{s[1:2]}'
define <2 x i32> @misaligned_sgpr_2xi32_out() {
%asm = call <2 x i32> asm sideeffect "; def $0", "={s[1:2]}"()
ret <2 x i32> %asm
}
; ERR: error: couldn't allocate output register for constraint '{s[23:24]}'
define <2 x i32> @misaligned_sgpr_2xi32_out_23() {
%asm = call <2 x i32> asm sideeffect "; def $0", "={s[23:24]}"()
ret <2 x i32> %asm
}
; ERR: error: couldn't allocate output register for constraint '{s[1:4]}'
define <4 x i32> @misaligned_sgpr_4xi32_out() {
%asm = call <4 x i32> asm sideeffect "; def $0", "={s[1:4]}"()
ret <4 x i32> %asm
}
; ERR: error: couldn't allocate output register for constraint '{s[2:5]}'
define <4 x i32> @misaligned_sgpr_4xi32_out_2() {
%asm = call <4 x i32> asm sideeffect "; def $0", "={s[2:5]}"()
ret <4 x i32> %asm
}