43 lines · plain
1// RUN: llvm-mc -triple=amdgcn -mcpu=gfx900 -show-encoding %s | FileCheck -check-prefix=GFX9 %s2// RUN: not llvm-mc -triple=amdgcn -mcpu=tonga 2>&1 %s | FileCheck -check-prefix=VI-ERR --implicit-check-not=error: %s3 4ds_read_u8_d16 v8, v25// GFX9: ds_read_u8_d16 v8, v2 ; encoding: [0x00,0x00,0xac,0xd8,0x02,0x00,0x00,0x08]6// VI-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU7 8ds_read_u8_d16_hi v8, v29// GFX9: ds_read_u8_d16_hi v8, v2 ; encoding: [0x00,0x00,0xae,0xd8,0x02,0x00,0x00,0x08]10// VI-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU11 12ds_read_i8_d16 v8, v213// GFX9: ds_read_i8_d16 v8, v2 ; encoding: [0x00,0x00,0xb0,0xd8,0x02,0x00,0x00,0x08]14// VI-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU15 16ds_read_i8_d16_hi v8, v217// GFX9: ds_read_i8_d16_hi v8, v2 ; encoding: [0x00,0x00,0xb2,0xd8,0x02,0x00,0x00,0x08]18// VI-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU19 20ds_read_u16_d16 v8, v221// GFX9: ds_read_u16_d16 v8, v2 ; encoding: [0x00,0x00,0xb4,0xd8,0x02,0x00,0x00,0x08]22// VI-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU23 24ds_read_u16_d16_hi v8, v225// GFX9: ds_read_u16_d16_hi v8, v2 ; encoding: [0x00,0x00,0xb6,0xd8,0x02,0x00,0x00,0x08]26// VI-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU27 28ds_write_b8_d16_hi v8, v229// VI-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: instruction not supported on this GPU30// GFX9: ds_write_b8_d16_hi v8, v2 ; encoding: [0x00,0x00,0xa8,0xd8,0x08,0x02,0x00,0x00]31 32ds_write_b16_d16_hi v8, v233// VI-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: instruction not supported on this GPU34// GFX9: ds_write_b16_d16_hi v8, v2 ; encoding: [0x00,0x00,0xaa,0xd8,0x08,0x02,0x00,0x00]35 36ds_write_addtid_b32 v837// VI-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: instruction not supported on this GPU38// GFX9: ds_write_addtid_b32 v8 ; encoding: [0x00,0x00,0x3a,0xd8,0x00,0x08,0x00,0x00]39 40ds_read_addtid_b32 v841// VI-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: instruction not supported on this GPU42// GFX9: ds_read_addtid_b32 v8 ; encoding: [0x00,0x00,0x6c,0xd9,0x00,0x00,0x00,0x08]43