mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-19 23:23:38 -04:00
834873d34d
Differential Revision: https://reviews.llvm.org/D61156 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359316 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
1016 B
LLVM
26 lines
1016 B
LLVM
; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
|
|
|
|
; GCN-LABEL: {{^}}max_sgprs_gfx10:
|
|
; GCN: NumSgprs: 108
|
|
define amdgpu_kernel void @max_sgprs_gfx10() #0 {
|
|
call void asm sideeffect "", "~{s[0:7]}" ()
|
|
call void asm sideeffect "", "~{s[8:15]}" ()
|
|
call void asm sideeffect "", "~{s[16:23]}" ()
|
|
call void asm sideeffect "", "~{s[24:31]}" ()
|
|
call void asm sideeffect "", "~{s[32:39]}" ()
|
|
call void asm sideeffect "", "~{s[40:47]}" ()
|
|
call void asm sideeffect "", "~{s[48:55]}" ()
|
|
call void asm sideeffect "", "~{s[56:63]}" ()
|
|
call void asm sideeffect "", "~{s[64:71]}" ()
|
|
call void asm sideeffect "", "~{s[72:79]}" ()
|
|
call void asm sideeffect "", "~{s[80:87]}" ()
|
|
call void asm sideeffect "", "~{s[88:95]}" ()
|
|
call void asm sideeffect "", "~{s[96:99]}" ()
|
|
call void asm sideeffect "", "~{s[100:104]}" ()
|
|
call void asm sideeffect "", "~{s105}" ()
|
|
call void asm sideeffect "", "~{vcc}" ()
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { nounwind "target-cpu"="gfx1010" }
|