brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.5 KiB · e360356 Raw
37 lines · plain
1; RUN: llc -mtriple=amdgcn--amdpal < %s | FileCheck -check-prefix=GCN %s2; RUN: llc -mtriple=amdgcn--amdpal -mcpu=tonga < %s | FileCheck -check-prefix=GCN %s3; RUN: llc -mtriple=amdgcn--amdpal -mcpu=gfx900 < %s | FileCheck -check-prefix=GCN -enable-var-scope %s4 5; amdpal pixel shader: check for 0x2c0a (SPI_SHADER_PGM_RSRC1_PS) in pal6; metadata. Check for 0x2c0b (SPI_SHADER_PGM_RSRC2_PS) in pal metadata, and7; it has a value starting 0x42 as it is set to 0x42000000 in the metadata8; below. Also check that .internal_pipeline_hash is propagated.9; GCN-LABEL: {{^}}ps_amdpal:10; GCN: .amdgpu_pal_metadata11; GCN:         .internal_pipeline_hash:12; GCN-NEXT:      - 0x123456789abcdef013; GCN-NEXT:      - 0xfedcba987654321014; GCN:         .registers:15; GCN:           '0x2c0a (SPI_SHADER_PGM_RSRC1_PS)':16; GCN:           '0x2c0b (SPI_SHADER_PGM_RSRC2_PS)': 0x4217define amdgpu_ps half @ps_amdpal(half %arg0) {18  %add = fadd half %arg0, 1.019  ret half %add20}21 22; amdgpu.pal.metadata.msgpack represents this:23;24; 	.amdgpu_pal_metadata25; ---26; amdpal.pipelines:27;   - .internal_pipeline_hash:28;       - 0x123456789abcdef029;       - 0xfedcba987654321030;     .registers:31;       '0x2c0b (SPI_SHADER_PGM_RSRC2_PS)': 0x4200000032; ...33; 	.end_amdgpu_pal_metadata34 35!amdgpu.pal.metadata.msgpack = !{!0}36!0 = !{!"\81\b0\61\6d\64\70\61\6c\2e\70\69\70\65\6c\69\6e\65\73\91\82\b7\2e\69\6e\74\65\72\6e\61\6c\5f\70\69\70\65\6c\69\6e\65\5f\68\61\73\68\92\cf\12\34\56\78\9a\bc\de\f0\cf\fe\dc\ba\98\76\54\32\10\aa\2e\72\65\67\69\73\74\65\72\73\81\cd\2c\0b\ce\42\00\00\00"};37