mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
c7c3bd2914
Differential Revision: https://reviews.llvm.org/D61156 llvm-svn: 359316
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" }
|