207
|
1 ; RUN: llc -mtriple=amdgcn--amdpal -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
|
|
2 ; RUN: llc -mtriple=amdgcn--amdpal -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
|
|
3 ; RUN: llc -mtriple=amdgcn--amdpal -mcpu=gfx900 -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -enable-var-scope %s
|
150
|
4
|
|
5 ; GCN-LABEL: {{^}}gs_amdpal:
|
207
|
6 ; GCN: .amdgpu_pal_metadata
|
|
7 ; GCN-NEXT: ---
|
|
8 ; GCN-NEXT: amdpal.pipelines:
|
|
9 ; GCN-NEXT: - .hardware_stages:
|
|
10 ; GCN-NEXT: .gs:
|
|
11 ; GCN-NEXT: .entry_point: gs_amdpal
|
|
12 ; GCN-NEXT: .scratch_memory_size: 0
|
|
13 ; GCN: .registers:
|
|
14 ; GCN-NEXT: 0x2c8a (SPI_SHADER_PGM_RSRC1_GS): 0
|
|
15 ; GCN-NEXT: ...
|
|
16 ; GCN-NEXT: .end_amdgpu_pal_metadata
|
150
|
17 define amdgpu_gs half @gs_amdpal(half %arg0) {
|
|
18 %add = fadd half %arg0, 1.0
|
|
19 ret half %add
|
|
20 }
|