diff --git a/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp b/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp --- a/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp +++ b/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp @@ -3882,8 +3882,10 @@ switch (Result) { default: break; case Match_MissingFeature: - // FIXME: this case should be analyzed and error message corrected. - return Error(IDLoc, "instruction not supported on this GPU"); + // It has been verified that the specified instruction + // mnemonic is valid. A match was found but it requires + // features which are not supported on this GPU. + return Error(IDLoc, "operands are not valid for this GPU or mode"); case Match_InvalidOperand: { SMLoc ErrorLoc = IDLoc; diff --git a/llvm/test/MC/AMDGPU/add-sub-no-carry.s b/llvm/test/MC/AMDGPU/add-sub-no-carry.s --- a/llvm/test/MC/AMDGPU/add-sub-no-carry.s +++ b/llvm/test/MC/AMDGPU/add-sub-no-carry.s @@ -1,94 +1,115 @@ // RUN: llvm-mc -arch=amdgcn -mcpu=gfx900 -show-encoding %s | FileCheck -check-prefixes=GFX9 %s -// RUN: not llvm-mc -arch=amdgcn -mcpu=fiji %s 2>&1 | FileCheck -check-prefixes=ERR-SICIVI --implicit-check-not=error: %s -// RUN: not llvm-mc -arch=amdgcn -mcpu=bonaire %s 2>&1 | FileCheck -check-prefixes=ERR-SICIVI --implicit-check-not=error: %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=fiji %s 2>&1 | FileCheck -check-prefixes=ERR-VI,ERR-SICIVI --implicit-check-not=error: %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=bonaire %s 2>&1 | FileCheck -check-prefixes=ERR-SICI,ERR-SICIVI --implicit-check-not=error: %s // FIXME: pre-gfx9 errors should be more useful v_add_u32 v1, v2, v3 // GFX9: v_add_u32_e32 v1, v2, v3 ; encoding: [0x02,0x07,0x02,0x68] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_add_u32 v1, v2, s1 // GFX9: v_add_u32_e64 v1, v2, s1 ; encoding: [0x01,0x00,0x34,0xd1,0x02,0x03,0x00,0x00] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_add_u32 v1, s1, v2 // GFX9: v_add_u32_e32 v1, s1, v2 ; encoding: [0x01,0x04,0x02,0x68] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_add_u32 v1, 4.0, v2 // GFX9: v_add_u32_e32 v1, 4.0, v2 ; encoding: [0xf6,0x04,0x02,0x68] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_add_u32 v1, v2, 4.0 // GFX9: v_add_u32_e64 v1, v2, 4.0 ; encoding: [0x01,0x00,0x34,0xd1,0x02,0xed,0x01,0x00] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_add_u32_e32 v1, v2, v3 // GFX9: v_add_u32_e32 v1, v2, v3 ; encoding: [0x02,0x07,0x02,0x68] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_add_u32_e32 v1, s1, v3 // GFX9: v_add_u32_e32 v1, s1, v3 ; encoding: [0x01,0x06,0x02,0x68] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_sub_u32 v1, v2, v3 // GFX9: v_sub_u32_e32 v1, v2, v3 ; encoding: [0x02,0x07,0x02,0x6a] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_sub_u32 v1, v2, s1 // GFX9: v_sub_u32_e64 v1, v2, s1 ; encoding: [0x01,0x00,0x35,0xd1,0x02,0x03,0x00,0x00] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_sub_u32 v1, s1, v2 // GFX9: v_sub_u32_e32 v1, s1, v2 ; encoding: [0x01,0x04,0x02,0x6a] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_sub_u32 v1, 4.0, v2 // GFX9: v_sub_u32_e32 v1, 4.0, v2 ; encoding: [0xf6,0x04,0x02,0x6a] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_sub_u32 v1, v2, 4.0 // GFX9: v_sub_u32_e64 v1, v2, 4.0 ; encoding: [0x01,0x00,0x35,0xd1,0x02,0xed,0x01,0x00] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_sub_u32_e32 v1, v2, v3 // GFX9: v_sub_u32_e32 v1, v2, v3 ; encoding: [0x02,0x07,0x02,0x6a] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_sub_u32_e32 v1, s1, v3 // GFX9: v_sub_u32_e32 v1, s1, v3 ; encoding: [0x01,0x06,0x02,0x6a] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_subrev_u32 v1, v2, v3 // GFX9: v_subrev_u32_e32 v1, v2, v3 ; encoding: [0x02,0x07,0x02,0x6c] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_subrev_u32 v1, v2, s1 // GFX9: v_subrev_u32_e64 v1, v2, s1 ; encoding: [0x01,0x00,0x36,0xd1,0x02,0x03,0x00,0x00] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_subrev_u32 v1, s1, v2 // GFX9: v_subrev_u32_e32 v1, s1, v2 ; encoding: [0x01,0x04,0x02,0x6c] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_subrev_u32 v1, 4.0, v2 // GFX9: v_subrev_u32_e32 v1, 4.0, v2 ; encoding: [0xf6,0x04,0x02,0x6c] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_subrev_u32 v1, v2, 4.0 // GFX9: v_subrev_u32_e64 v1, v2, 4.0 ; encoding: [0x01,0x00,0x36,0xd1,0x02,0xed,0x01,0x00] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_subrev_u32_e32 v1, v2, v3 // GFX9: v_subrev_u32_e32 v1, v2, v3 ; encoding: [0x02,0x07,0x02,0x6c] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode v_subrev_u32_e32 v1, s1, v3 // GFX9: v_subrev_u32_e32 v1, s1, v3 ; encoding: [0x01,0x06,0x02,0x6c] -// ERR-SICIVI: error: instruction not supported on this GPU +// ERR-SICI: error: instruction not supported on this GPU +// ERR-VI: error: operands are not valid for this GPU or mode diff --git a/llvm/test/MC/AMDGPU/buf-fmt-d16-packed.s b/llvm/test/MC/AMDGPU/buf-fmt-d16-packed.s --- a/llvm/test/MC/AMDGPU/buf-fmt-d16-packed.s +++ b/llvm/test/MC/AMDGPU/buf-fmt-d16-packed.s @@ -13,30 +13,30 @@ buffer_load_format_d16_xy v1, off, s[4:7], s1 // PACKED: buffer_load_format_d16_xy v1, off, s[4:7], s1 ; encoding: [0x00,0x00,0x24,0xe0,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode buffer_load_format_d16_xyz v[1:2], off, s[4:7], s1 // PACKED: buffer_load_format_d16_xyz v[1:2], off, s[4:7], s1 ; encoding: [0x00,0x00,0x28,0xe0,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode buffer_load_format_d16_xyzw v[1:2], off, s[4:7], s1 // PACKED: buffer_load_format_d16_xyzw v[1:2], off, s[4:7], s1 ; encoding: [0x00,0x00,0x2c,0xe0,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode buffer_store_format_d16_x v1, off, s[4:7], s1 // PACKED: buffer_store_format_d16_x v1, off, s[4:7], s1 ; encoding: [0x00,0x00,0x30,0xe0,0x00,0x01,0x01,0x01] buffer_store_format_d16_xy v1, off, s[4:7], s1 // PACKED: buffer_store_format_d16_xy v1, off, s[4:7], s1 ; encoding: [0x00,0x00,0x34,0xe0,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode buffer_store_format_d16_xyz v[1:2], off, s[4:7], s1 // PACKED: buffer_store_format_d16_xyz v[1:2], off, s[4:7], s1 ; encoding: [0x00,0x00,0x38,0xe0,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode buffer_store_format_d16_xyzw v[1:2], off, s[4:7], s1 // PACKED: buffer_store_format_d16_xyzw v[1:2], off, s[4:7], s1 ; encoding: [0x00,0x00,0x3c,0xe0,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode //===----------------------------------------------------------------------===// @@ -48,27 +48,27 @@ tbuffer_load_format_d16_xy v1, off, s[4:7], dfmt:15, nfmt:2, s1 // PACKED: tbuffer_load_format_d16_xy v1, off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x80,0x7c,0xe9,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode tbuffer_load_format_d16_xyz v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1 // PACKED: tbuffer_load_format_d16_xyz v[1:2], off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x00,0x7d,0xe9,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode tbuffer_load_format_d16_xyzw v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1 // PACKED: tbuffer_load_format_d16_xyzw v[1:2], off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x80,0x7d,0xe9,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode tbuffer_store_format_d16_x v1, off, s[4:7], dfmt:15, nfmt:2, s1 // PACKED: tbuffer_store_format_d16_x v1, off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x00,0x7e,0xe9,0x00,0x01,0x01,0x01] tbuffer_store_format_d16_xy v1, off, s[4:7], dfmt:15, nfmt:2, s1 // PACKED: tbuffer_store_format_d16_xy v1, off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x80,0x7e,0xe9,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode tbuffer_store_format_d16_xyz v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1 // PACKED: tbuffer_store_format_d16_xyz v[1:2], off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x00,0x7f,0xe9,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode tbuffer_store_format_d16_xyzw v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1 // PACKED: tbuffer_store_format_d16_xyzw v[1:2], off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x80,0x7f,0xe9,0x00,0x01,0x01,0x01] -// UNPACKED-ERR: error: instruction not supported on this GPU +// UNPACKED-ERR: error: operands are not valid for this GPU or mode diff --git a/llvm/test/MC/AMDGPU/buf-fmt-d16-unpacked.s b/llvm/test/MC/AMDGPU/buf-fmt-d16-unpacked.s --- a/llvm/test/MC/AMDGPU/buf-fmt-d16-unpacked.s +++ b/llvm/test/MC/AMDGPU/buf-fmt-d16-unpacked.s @@ -12,30 +12,30 @@ buffer_load_format_d16_xy v[1:2], off, s[4:7], s1 // UNPACKED: buffer_load_format_d16_xy v[1:2], off, s[4:7], s1 ; encoding: [0x00,0x00,0x24,0xe0,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode buffer_load_format_d16_xyz v[1:3], off, s[4:7], s1 // UNPACKED: buffer_load_format_d16_xyz v[1:3], off, s[4:7], s1 ; encoding: [0x00,0x00,0x28,0xe0,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode buffer_load_format_d16_xyzw v[1:4], off, s[4:7], s1 // UNPACKED: buffer_load_format_d16_xyzw v[1:4], off, s[4:7], s1 ; encoding: [0x00,0x00,0x2c,0xe0,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode buffer_store_format_d16_x v1, off, s[4:7], s1 // UNPACKED: buffer_store_format_d16_x v1, off, s[4:7], s1 ; encoding: [0x00,0x00,0x30,0xe0,0x00,0x01,0x01,0x01] buffer_store_format_d16_xy v[1:2], off, s[4:7], s1 // UNPACKED: buffer_store_format_d16_xy v[1:2], off, s[4:7], s1 ; encoding: [0x00,0x00,0x34,0xe0,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode buffer_store_format_d16_xyz v[1:3], off, s[4:7], s1 // UNPACKED: buffer_store_format_d16_xyz v[1:3], off, s[4:7], s1 ; encoding: [0x00,0x00,0x38,0xe0,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode buffer_store_format_d16_xyzw v[1:4], off, s[4:7], s1 // UNPACKED: buffer_store_format_d16_xyzw v[1:4], off, s[4:7], s1 ; encoding: [0x00,0x00,0x3c,0xe0,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode //===----------------------------------------------------------------------===// @@ -47,27 +47,27 @@ tbuffer_load_format_d16_xy v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1 // UNPACKED: tbuffer_load_format_d16_xy v[1:2], off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x80,0x7c,0xe9,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode tbuffer_load_format_d16_xyz v[1:3], off, s[4:7], dfmt:15, nfmt:2, s1 // UNPACKED: tbuffer_load_format_d16_xyz v[1:3], off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x00,0x7d,0xe9,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode tbuffer_load_format_d16_xyzw v[1:4], off, s[4:7], dfmt:15, nfmt:2, s1 // UNPACKED: tbuffer_load_format_d16_xyzw v[1:4], off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x80,0x7d,0xe9,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode tbuffer_store_format_d16_x v1, off, s[4:7], dfmt:15, nfmt:2, s1 // UNPACKED: tbuffer_store_format_d16_x v1, off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x00,0x7e,0xe9,0x00,0x01,0x01,0x01] tbuffer_store_format_d16_xy v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1 // UNPACKED: tbuffer_store_format_d16_xy v[1:2], off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x80,0x7e,0xe9,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode tbuffer_store_format_d16_xyz v[1:3], off, s[4:7], dfmt:15, nfmt:2, s1 // UNPACKED: tbuffer_store_format_d16_xyz v[1:3], off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x00,0x7f,0xe9,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode tbuffer_store_format_d16_xyzw v[1:4], off, s[4:7], dfmt:15, nfmt:2, s1 // UNPACKED: tbuffer_store_format_d16_xyzw v[1:4], off, s[4:7], s1 format:[BUF_DATA_FORMAT_RESERVED_15,BUF_NUM_FORMAT_USCALED] ; encoding: [0x00,0x80,0x7f,0xe9,0x00,0x01,0x01,0x01] -// PACKED-ERR: error: instruction not supported on this GPU +// PACKED-ERR: error: operands are not valid for this GPU or mode diff --git a/llvm/test/MC/AMDGPU/gfx1030_err.s b/llvm/test/MC/AMDGPU/gfx1030_err.s --- a/llvm/test/MC/AMDGPU/gfx1030_err.s +++ b/llvm/test/MC/AMDGPU/gfx1030_err.s @@ -26,7 +26,7 @@ // GFX10: error: specified hardware register is not supported on this GPU v_mac_f32 v0, v1, v2 -// GFX10: error: instruction not supported on this GPU +// GFX10: error: operands are not valid for this GPU or mode v_mad_f32 v0, v1, v2, v3 // GFX10: error: instruction not supported on this GPU diff --git a/llvm/test/MC/AMDGPU/gfx10_asm_all.s b/llvm/test/MC/AMDGPU/gfx10_asm_all.s --- a/llvm/test/MC/AMDGPU/gfx10_asm_all.s +++ b/llvm/test/MC/AMDGPU/gfx10_asm_all.s @@ -36894,35 +36894,35 @@ v_cndmask_b32_e32 v5, v1, v2, vcc // W64: encoding: [0x01,0x05,0x0a,0x02] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v255, v1, v2, vcc // W64: encoding: [0x01,0x05,0xfe,0x03] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, v255, v2, vcc // W64: encoding: [0xff,0x05,0x0a,0x02] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, 0, v2, vcc // W64: encoding: [0x80,0x04,0x0a,0x02] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, -1, v2, vcc // W64: encoding: [0xc1,0x04,0x0a,0x02] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, 0.5, v2, vcc // W64: encoding: [0xf0,0x04,0x0a,0x02] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, -4.0, v2, vcc // W64: encoding: [0xf7,0x04,0x0a,0x02] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, v1, v255, vcc // W64: encoding: [0x01,0xff,0x0b,0x02] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e64 v5, v1, v2, s[6:7] // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0x1a,0x00] @@ -36982,39 +36982,39 @@ v_cndmask_b32_e64 v5, v1, v2, vcc // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0xaa,0x01] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, v1, v2, vcc_lo // W32: encoding: [0x01,0x05,0x0a,0x02] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v255, v1, v2, vcc_lo // W32: encoding: [0x01,0x05,0xfe,0x03] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, v255, v2, vcc_lo // W32: encoding: [0xff,0x05,0x0a,0x02] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, 0, v2, vcc_lo // W32: encoding: [0x80,0x04,0x0a,0x02] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, -1, v2, vcc_lo // W32: encoding: [0xc1,0x04,0x0a,0x02] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, 0.5, v2, vcc_lo // W32: encoding: [0xf0,0x04,0x0a,0x02] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, -4.0, v2, vcc_lo // W32: encoding: [0xf7,0x04,0x0a,0x02] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v5, v1, v255, vcc_lo // W32: encoding: [0x01,0xff,0x0b,0x02] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cndmask_b32_e64 v5, v1, v2, s6 // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0x1a,0x00] @@ -37074,7 +37074,7 @@ v_cndmask_b32_e64 v5, v1, v2, vcc_lo // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0xaa,0x01] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_f32_e32 v5, v1, v2 // GFX10: encoding: [0x01,0x05,0x0a,0x06] @@ -45559,35 +45559,35 @@ v_add_co_ci_u32_e32 v5, vcc, v1, v2, vcc // W64: encoding: [0x01,0x05,0x0a,0x50] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v255, vcc, v1, v2, vcc // W64: encoding: [0x01,0x05,0xfe,0x51] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc, v255, v2, vcc // W64: encoding: [0xff,0x05,0x0a,0x50] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc, 0, v2, vcc // W64: encoding: [0x80,0x04,0x0a,0x50] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc, -1, v2, vcc // W64: encoding: [0xc1,0x04,0x0a,0x50] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc, 0.5, v2, vcc // W64: encoding: [0xf0,0x04,0x0a,0x50] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc, -4.0, v2, vcc // W64: encoding: [0xf7,0x04,0x0a,0x50] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc, v1, v255, vcc // W64: encoding: [0x01,0xff,0x0b,0x50] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e64 v5, s[12:13], v1, v2, s[6:7] // W64: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x05,0x1a,0x00] @@ -45663,35 +45663,35 @@ v_add_co_ci_u32_e32 v5, vcc_lo, v1, v2, vcc_lo // W32: encoding: [0x01,0x05,0x0a,0x50] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v255, vcc_lo, v1, v2, vcc_lo // W32: encoding: [0x01,0x05,0xfe,0x51] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc_lo, v255, v2, vcc_lo // W32: encoding: [0xff,0x05,0x0a,0x50] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc_lo, 0, v2, vcc_lo // W32: encoding: [0x80,0x04,0x0a,0x50] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc_lo, -1, v2, vcc_lo // W32: encoding: [0xc1,0x04,0x0a,0x50] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc_lo, 0.5, v2, vcc_lo // W32: encoding: [0xf0,0x04,0x0a,0x50] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc_lo, -4.0, v2, vcc_lo // W32: encoding: [0xf7,0x04,0x0a,0x50] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v5, vcc_lo, v1, v255, vcc_lo // W32: encoding: [0x01,0xff,0x0b,0x50] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e64 v5, s12, v1, v2, s6 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x05,0x1a,0x00] @@ -45767,283 +45767,283 @@ v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v255, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xfe,0x51,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v255, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0xff,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v255, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0xfe,0x0b,0x50,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x26,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x01,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x02,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x03,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x04,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x05,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x0e,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x16,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x16,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x00,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x01,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x02,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x03,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x04,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x05,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, sext(v1), v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x0e,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x01] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x02] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x03] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x04] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x05] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc, v1, sext(v2), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x0e] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v255, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0xfe,0x51,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v255, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0xff,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v255, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0xfe,0x0b,0x50,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x26,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x00,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x01,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x02,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x03,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x04,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x05,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x0e,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x16,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x16,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x00,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x01,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x02,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x03,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x04,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x05,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, sext(v1), v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x0e,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x01] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x02] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x03] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x04] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x05] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v5, vcc_lo, v1, sext(v2), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x0e] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc, v1, v2, vcc // W64: encoding: [0x01,0x05,0x0a,0x52] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v255, vcc, v1, v2, vcc // W64: encoding: [0x01,0x05,0xfe,0x53] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc, v255, v2, vcc // W64: encoding: [0xff,0x05,0x0a,0x52] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc, 0, v2, vcc // W64: encoding: [0x80,0x04,0x0a,0x52] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc, -1, v2, vcc // W64: encoding: [0xc1,0x04,0x0a,0x52] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc, 0.5, v2, vcc // W64: encoding: [0xf0,0x04,0x0a,0x52] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc, -4.0, v2, vcc // W64: encoding: [0xf7,0x04,0x0a,0x52] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc, v1, v255, vcc // W64: encoding: [0x01,0xff,0x0b,0x52] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e64 v5, s[12:13], v1, v2, s[6:7] // W64: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x05,0x1a,0x00] @@ -46119,35 +46119,35 @@ v_sub_co_ci_u32_e32 v5, vcc_lo, v1, v2, vcc_lo // W32: encoding: [0x01,0x05,0x0a,0x52] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v255, vcc_lo, v1, v2, vcc_lo // W32: encoding: [0x01,0x05,0xfe,0x53] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc_lo, v255, v2, vcc_lo // W32: encoding: [0xff,0x05,0x0a,0x52] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc_lo, 0, v2, vcc_lo // W32: encoding: [0x80,0x04,0x0a,0x52] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc_lo, -1, v2, vcc_lo // W32: encoding: [0xc1,0x04,0x0a,0x52] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc_lo, 0.5, v2, vcc_lo // W32: encoding: [0xf0,0x04,0x0a,0x52] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc_lo, -4.0, v2, vcc_lo // W32: encoding: [0xf7,0x04,0x0a,0x52] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v5, vcc_lo, v1, v255, vcc_lo // W32: encoding: [0x01,0xff,0x0b,0x52] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e64 v5, s12, v1, v2, s6 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x05,0x1a,0x00] @@ -46223,283 +46223,283 @@ v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v255, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xfe,0x53,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v255, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0xff,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v255, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0xfe,0x0b,0x52,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x26,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x01,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x02,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x03,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x04,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x05,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x0e,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x16,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x16,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x00,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x01,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x02,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x03,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x04,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x05,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, sext(v1), v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x0e,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x01] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x02] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x03] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x04] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x05] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc, v1, sext(v2), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x0e] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v255, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0xfe,0x53,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v255, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0xff,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v255, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0xfe,0x0b,0x52,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x26,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x00,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x01,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x02,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x03,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x04,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x05,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x0e,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x16,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x16,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x00,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x01,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x02,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x03,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x04,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x05,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, sext(v1), v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x0e,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x01] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x02] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x03] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x04] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x05] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, sext(v2), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x0e] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc, v1, v2, vcc // W64: encoding: [0x01,0x05,0x0a,0x54] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v255, vcc, v1, v2, vcc // W64: encoding: [0x01,0x05,0xfe,0x55] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc, v255, v2, vcc // W64: encoding: [0xff,0x05,0x0a,0x54] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc, 0, v2, vcc // W64: encoding: [0x80,0x04,0x0a,0x54] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc, -1, v2, vcc // W64: encoding: [0xc1,0x04,0x0a,0x54] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc, 0.5, v2, vcc // W64: encoding: [0xf0,0x04,0x0a,0x54] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc, -4.0, v2, vcc // W64: encoding: [0xf7,0x04,0x0a,0x54] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc, v1, v255, vcc // W64: encoding: [0x01,0xff,0x0b,0x54] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v2, s[6:7] // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x05,0x1a,0x00] @@ -46575,35 +46575,35 @@ v_subrev_co_ci_u32_e32 v5, vcc_lo, v1, v2, vcc_lo // W32: encoding: [0x01,0x05,0x0a,0x54] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v255, vcc_lo, v1, v2, vcc_lo // W32: encoding: [0x01,0x05,0xfe,0x55] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc_lo, v255, v2, vcc_lo // W32: encoding: [0xff,0x05,0x0a,0x54] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc_lo, 0, v2, vcc_lo // W32: encoding: [0x80,0x04,0x0a,0x54] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc_lo, -1, v2, vcc_lo // W32: encoding: [0xc1,0x04,0x0a,0x54] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc_lo, 0.5, v2, vcc_lo // W32: encoding: [0xf0,0x04,0x0a,0x54] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc_lo, -4.0, v2, vcc_lo // W32: encoding: [0xf7,0x04,0x0a,0x54] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v5, vcc_lo, v1, v255, vcc_lo // W32: encoding: [0x01,0xff,0x0b,0x54] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e64 v5, s12, v1, v2, s6 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x05,0x1a,0x00] @@ -46679,251 +46679,251 @@ v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v255, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xfe,0x55,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v255, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0xff,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v255, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0xfe,0x0b,0x54,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x26,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x01,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x02,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x03,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x04,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x05,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x0e,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x16,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x16,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x00,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x01,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x02,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x03,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x04,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x05,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, sext(v1), v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x0e,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x01] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x02] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x03] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x04] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x05] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc, v1, sext(v2), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x0e] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v255, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0xfe,0x55,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v255, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0xff,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v255, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0xfe,0x0b,0x54,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x26,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x00,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x01,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x02,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x03,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x04,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x05,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x0e,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x16,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x16,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x00,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x01,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x02,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x03,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x04,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x05,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, sext(v1), v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x0e,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x01] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x02] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x03] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x04] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x05] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, sext(v2), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x0e] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_fmac_f32_e32 v5, v1, v2 // GFX10: encoding: [0x01,0x05,0x0a,0x56] @@ -62983,67 +62983,67 @@ v_cmp_f_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x00,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x00,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x00,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x01,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x02,0x00] @@ -63187,7 +63187,7 @@ v_cmp_f_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x00,0x7c,0xff,0x86,0x06,0x06] @@ -63291,67 +63291,67 @@ v_cmp_f_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x00,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x00,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x00,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x01,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x02,0x00] @@ -63599,67 +63599,67 @@ v_cmp_lt_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x02,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x02,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x02,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x03,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x02,0x00] @@ -63803,7 +63803,7 @@ v_cmp_lt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x02,0x7c,0xff,0x86,0x06,0x06] @@ -63907,67 +63907,67 @@ v_cmp_lt_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x02,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x02,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x02,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x03,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x02,0x00] @@ -64215,67 +64215,67 @@ v_cmp_eq_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x04,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x04,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x04,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x05,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x02,0x00] @@ -64419,7 +64419,7 @@ v_cmp_eq_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x04,0x7c,0xff,0x86,0x06,0x06] @@ -64523,67 +64523,67 @@ v_cmp_eq_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x04,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x04,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x04,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x05,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x02,0x00] @@ -64831,67 +64831,67 @@ v_cmp_le_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x06,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x06,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x06,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x07,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x02,0x00] @@ -65035,7 +65035,7 @@ v_cmp_le_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x06,0x7c,0xff,0x86,0x06,0x06] @@ -65139,67 +65139,67 @@ v_cmp_le_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x06,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x06,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x06,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x07,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x02,0x00] @@ -65447,67 +65447,67 @@ v_cmp_gt_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x08,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x08,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x08,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x09,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x02,0x00] @@ -65651,7 +65651,7 @@ v_cmp_gt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x08,0x7c,0xff,0x86,0x06,0x06] @@ -65755,67 +65755,67 @@ v_cmp_gt_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x08,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x08,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x08,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x09,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x02,0x00] @@ -66063,67 +66063,67 @@ v_cmp_lg_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x0a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x0a,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x0a,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x0b,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x02,0x00] @@ -66267,7 +66267,7 @@ v_cmp_lg_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x7c,0xff,0x86,0x06,0x06] @@ -66371,67 +66371,67 @@ v_cmp_lg_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x0a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x0a,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x0a,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x0b,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x02,0x00] @@ -66679,67 +66679,67 @@ v_cmp_ge_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x0c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x0c,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x0c,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x0d,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x02,0x00] @@ -66883,7 +66883,7 @@ v_cmp_ge_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0c,0x7c,0xff,0x86,0x06,0x06] @@ -66987,67 +66987,67 @@ v_cmp_ge_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x0c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x0c,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x0c,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x0d,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x02,0x00] @@ -67295,67 +67295,67 @@ v_cmp_o_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x0e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x0e,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x0e,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x0f,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x02,0x00] @@ -67499,7 +67499,7 @@ v_cmp_o_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0e,0x7c,0xff,0x86,0x06,0x06] @@ -67603,67 +67603,67 @@ v_cmp_o_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x0e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x0e,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x0e,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x0f,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x02,0x00] @@ -67911,67 +67911,67 @@ v_cmp_u_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x10,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x10,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x10,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x11,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x02,0x00] @@ -68115,7 +68115,7 @@ v_cmp_u_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x10,0x7c,0xff,0x86,0x06,0x06] @@ -68219,67 +68219,67 @@ v_cmp_u_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x10,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x10,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x10,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x11,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x02,0x00] @@ -68527,67 +68527,67 @@ v_cmp_nge_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x12,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x12,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x12,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x13,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x02,0x00] @@ -68731,7 +68731,7 @@ v_cmp_nge_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x12,0x7c,0xff,0x86,0x06,0x06] @@ -68835,67 +68835,67 @@ v_cmp_nge_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x12,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x12,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x12,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x13,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x02,0x00] @@ -69143,67 +69143,67 @@ v_cmp_nlg_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x14,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x14,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x14,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x15,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x00] @@ -69347,7 +69347,7 @@ v_cmp_nlg_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x14,0x7c,0xff,0x86,0x06,0x06] @@ -69451,67 +69451,67 @@ v_cmp_nlg_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x14,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x14,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x14,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x15,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x00] @@ -69759,67 +69759,67 @@ v_cmp_ngt_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x16,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x16,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x16,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x17,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x00] @@ -69963,7 +69963,7 @@ v_cmp_ngt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x16,0x7c,0xff,0x86,0x06,0x06] @@ -70067,67 +70067,67 @@ v_cmp_ngt_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x16,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x16,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x16,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x17,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x00] @@ -70375,67 +70375,67 @@ v_cmp_nle_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x18,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x18,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x18,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x19,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x00] @@ -70579,7 +70579,7 @@ v_cmp_nle_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x18,0x7c,0xff,0x86,0x06,0x06] @@ -70683,67 +70683,67 @@ v_cmp_nle_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x18,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x18,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x18,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x19,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x00] @@ -70991,67 +70991,67 @@ v_cmp_neq_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x1a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x1a,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x1a,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x1b,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x00] @@ -71195,7 +71195,7 @@ v_cmp_neq_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1a,0x7c,0xff,0x86,0x06,0x06] @@ -71299,67 +71299,67 @@ v_cmp_neq_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x1a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x1a,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x1a,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x1b,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x00] @@ -71607,67 +71607,67 @@ v_cmp_nlt_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x1c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x1c,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x1c,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x1d,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x00] @@ -71811,7 +71811,7 @@ v_cmp_nlt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1c,0x7c,0xff,0x86,0x06,0x06] @@ -71915,67 +71915,67 @@ v_cmp_nlt_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x1c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x1c,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x1c,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x1d,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x00] @@ -72223,67 +72223,67 @@ v_cmp_tru_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x1e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x1e,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x1e,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x1f,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x00] @@ -72427,7 +72427,7 @@ v_cmp_tru_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1e,0x7c,0xff,0x86,0x06,0x06] @@ -72531,67 +72531,67 @@ v_cmp_tru_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x1e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x1e,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x1e,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x1f,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x00] @@ -76199,59 +76199,59 @@ v_cmp_f_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x40,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x40,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x40,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x41,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x05,0x02,0x00] @@ -76367,59 +76367,59 @@ v_cmp_f_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x40,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x40,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x40,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x41,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x05,0x02,0x00] @@ -76535,59 +76535,59 @@ v_cmp_lt_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x42,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x42,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x42,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x43,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x05,0x02,0x00] @@ -76703,59 +76703,59 @@ v_cmp_lt_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x42,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x42,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x42,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x43,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x05,0x02,0x00] @@ -76871,59 +76871,59 @@ v_cmp_eq_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x44,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x44,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x44,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x45,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x05,0x02,0x00] @@ -77039,59 +77039,59 @@ v_cmp_eq_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x44,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x44,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x44,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x45,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x05,0x02,0x00] @@ -77207,59 +77207,59 @@ v_cmp_le_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x46,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x46,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x46,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x47,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x05,0x02,0x00] @@ -77375,59 +77375,59 @@ v_cmp_le_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x46,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x46,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x46,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x47,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x05,0x02,0x00] @@ -77543,59 +77543,59 @@ v_cmp_gt_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x48,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x48,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x48,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x49,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x05,0x02,0x00] @@ -77711,59 +77711,59 @@ v_cmp_gt_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x48,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x48,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x48,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x49,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x05,0x02,0x00] @@ -77879,59 +77879,59 @@ v_cmp_lg_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x4a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x4a,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x4a,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x4b,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x05,0x02,0x00] @@ -78047,59 +78047,59 @@ v_cmp_lg_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x4a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x4a,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x4a,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x4b,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x05,0x02,0x00] @@ -78215,59 +78215,59 @@ v_cmp_ge_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x4c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x4c,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x4c,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x4d,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x05,0x02,0x00] @@ -78383,59 +78383,59 @@ v_cmp_ge_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x4c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x4c,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x4c,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x4d,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x05,0x02,0x00] @@ -78551,59 +78551,59 @@ v_cmp_o_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x4e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x4e,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x4e,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x4f,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x05,0x02,0x00] @@ -78719,59 +78719,59 @@ v_cmp_o_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x4e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x4e,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x4e,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x4f,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x05,0x02,0x00] @@ -78887,59 +78887,59 @@ v_cmp_u_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x50,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x50,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x50,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x51,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x05,0x02,0x00] @@ -79055,59 +79055,59 @@ v_cmp_u_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x50,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x50,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x50,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x51,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x05,0x02,0x00] @@ -79223,59 +79223,59 @@ v_cmp_nge_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x52,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x52,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x52,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x53,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x05,0x02,0x00] @@ -79391,59 +79391,59 @@ v_cmp_nge_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x52,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x52,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x52,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x53,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x05,0x02,0x00] @@ -79559,59 +79559,59 @@ v_cmp_nlg_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x54,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x54,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x54,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x55,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x00] @@ -79727,59 +79727,59 @@ v_cmp_nlg_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x54,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x54,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x54,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x55,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x00] @@ -79895,59 +79895,59 @@ v_cmp_ngt_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x56,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x56,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x56,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x57,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x00] @@ -80063,59 +80063,59 @@ v_cmp_ngt_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x56,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x56,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x56,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x57,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x00] @@ -80231,59 +80231,59 @@ v_cmp_nle_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x58,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x58,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x58,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x59,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x00] @@ -80399,59 +80399,59 @@ v_cmp_nle_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x58,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x58,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x58,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x59,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x00] @@ -80567,59 +80567,59 @@ v_cmp_neq_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x5a,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x5a,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x5a,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x5b,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x00] @@ -80735,59 +80735,59 @@ v_cmp_neq_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x5a,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x5a,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x5a,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x5b,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x00] @@ -80903,59 +80903,59 @@ v_cmp_nlt_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x5c,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x5c,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x5c,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x5d,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x00] @@ -81071,59 +81071,59 @@ v_cmp_nlt_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x5c,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x5c,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x5c,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x5d,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x00] @@ -81239,59 +81239,59 @@ v_cmp_tru_f64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x5e,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x5e,0x7c,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x5e,0x7c,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x5f,0x7c] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x00] @@ -81407,59 +81407,59 @@ v_cmp_tru_f64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x5e,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x5e,0x7c,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x5e,0x7c,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x5f,0x7c] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x00] @@ -83396,67 +83396,67 @@ v_cmp_f_i32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x00,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x00,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x00,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x01,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x05,0x02,0x00] @@ -83572,67 +83572,67 @@ v_cmp_lt_i32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x02,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x02,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x02,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x03,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x05,0x02,0x00] @@ -83748,67 +83748,67 @@ v_cmp_eq_i32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x04,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x04,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x04,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x05,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x05,0x02,0x00] @@ -83924,67 +83924,67 @@ v_cmp_le_i32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x06,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x06,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x06,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x07,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x05,0x02,0x00] @@ -84100,67 +84100,67 @@ v_cmp_gt_i32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x08,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x08,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x08,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x09,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x05,0x02,0x00] @@ -84276,67 +84276,67 @@ v_cmp_ne_i32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x0a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x0a,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x0a,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x0b,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x05,0x02,0x00] @@ -84452,67 +84452,67 @@ v_cmp_ge_i32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x0c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x0c,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x0c,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x0d,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x05,0x02,0x00] @@ -84628,67 +84628,67 @@ v_cmp_t_i32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x0e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x0e,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x0e,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x0f,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x05,0x02,0x00] @@ -84816,7 +84816,7 @@ v_cmp_f_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x00,0x7d,0xff,0x86,0x06,0x06] @@ -84924,7 +84924,7 @@ v_cmp_lt_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x02,0x7d,0xff,0x86,0x06,0x06] @@ -85032,7 +85032,7 @@ v_cmp_eq_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x04,0x7d,0xff,0x86,0x06,0x06] @@ -85140,7 +85140,7 @@ v_cmp_le_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x06,0x7d,0xff,0x86,0x06,0x06] @@ -85248,7 +85248,7 @@ v_cmp_gt_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x08,0x7d,0xff,0x86,0x06,0x06] @@ -85356,7 +85356,7 @@ v_cmp_ne_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0a,0x7d,0xff,0x86,0x06,0x06] @@ -85464,7 +85464,7 @@ v_cmp_ge_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0c,0x7d,0xff,0x86,0x06,0x06] @@ -85572,7 +85572,7 @@ v_cmp_t_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x0e,0x7d,0xff,0x86,0x06,0x06] @@ -85668,67 +85668,67 @@ v_cmp_f_i32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x00,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x00,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x00,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x01,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x05,0x02,0x00] @@ -85844,67 +85844,67 @@ v_cmp_lt_i32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x02,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x02,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x02,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x03,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x05,0x02,0x00] @@ -86020,67 +86020,67 @@ v_cmp_eq_i32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x04,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x04,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x04,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x05,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x05,0x02,0x00] @@ -86196,67 +86196,67 @@ v_cmp_le_i32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x06,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x06,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x06,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x07,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x05,0x02,0x00] @@ -86372,67 +86372,67 @@ v_cmp_gt_i32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x08,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x08,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x08,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x09,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x05,0x02,0x00] @@ -86548,67 +86548,67 @@ v_cmp_ne_i32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x0a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x0a,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x0a,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x0b,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x05,0x02,0x00] @@ -86724,67 +86724,67 @@ v_cmp_ge_i32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x0c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x0c,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x0c,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x0d,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x05,0x02,0x00] @@ -86900,67 +86900,67 @@ v_cmp_t_i32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x0e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x0e,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x0e,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x0f,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x05,0x02,0x00] @@ -87940,67 +87940,67 @@ v_cmp_class_f32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x10,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x10,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x10,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x11,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x05,0x02,0x00] @@ -88132,7 +88132,7 @@ v_cmp_class_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x10,0x7d,0xff,0x86,0x06,0x06] @@ -88232,67 +88232,67 @@ v_cmp_class_f32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x10,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x10,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x10,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x11,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x05,0x02,0x00] @@ -88524,67 +88524,67 @@ v_cmp_lt_i16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x12,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x12,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x12,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x12,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x12,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x13,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x05,0x02,0x00] @@ -88700,67 +88700,67 @@ v_cmp_eq_i16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x14,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x14,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x14,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x14,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x14,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x15,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x05,0x02,0x00] @@ -88876,67 +88876,67 @@ v_cmp_le_i16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x16,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x16,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x16,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x16,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x16,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x17,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x05,0x02,0x00] @@ -89052,67 +89052,67 @@ v_cmp_gt_i16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x18,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x18,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x18,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x18,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x18,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x19,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x05,0x02,0x00] @@ -89228,67 +89228,67 @@ v_cmp_ne_i16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x1a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x1a,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x1a,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x1a,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x1a,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x1b,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x05,0x02,0x00] @@ -89404,67 +89404,67 @@ v_cmp_ge_i16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x1c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x1c,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x1c,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x1c,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x1c,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x1d,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x05,0x02,0x00] @@ -89592,7 +89592,7 @@ v_cmp_lt_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x12,0x7d,0xff,0x86,0x06,0x06] @@ -89700,7 +89700,7 @@ v_cmp_eq_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x14,0x7d,0xff,0x86,0x06,0x06] @@ -89808,7 +89808,7 @@ v_cmp_le_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x16,0x7d,0xff,0x86,0x06,0x06] @@ -89916,7 +89916,7 @@ v_cmp_gt_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x18,0x7d,0xff,0x86,0x06,0x06] @@ -90024,7 +90024,7 @@ v_cmp_ne_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1a,0x7d,0xff,0x86,0x06,0x06] @@ -90132,7 +90132,7 @@ v_cmp_ge_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1c,0x7d,0xff,0x86,0x06,0x06] @@ -90228,67 +90228,67 @@ v_cmp_lt_i16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x12,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x12,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x12,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x12,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x12,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x13,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x05,0x02,0x00] @@ -90404,67 +90404,67 @@ v_cmp_eq_i16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x14,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x14,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x14,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x14,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x14,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x15,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x05,0x02,0x00] @@ -90580,67 +90580,67 @@ v_cmp_le_i16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x16,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x16,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x16,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x16,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x16,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x17,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x05,0x02,0x00] @@ -90756,67 +90756,67 @@ v_cmp_gt_i16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x18,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x18,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x18,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x18,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x18,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x19,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x05,0x02,0x00] @@ -90932,67 +90932,67 @@ v_cmp_ne_i16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x1a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x1a,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x1a,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x1a,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x1a,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x1b,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x05,0x02,0x00] @@ -91108,67 +91108,67 @@ v_cmp_ge_i16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x1c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x1c,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x1c,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x1c,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x1c,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x1d,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x05,0x02,0x00] @@ -91932,67 +91932,67 @@ v_cmp_class_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x1e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x1e,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x1e,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x1f,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0x05,0x02,0x00] @@ -92124,7 +92124,7 @@ v_cmp_class_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x1e,0x7d,0xff,0x86,0x06,0x06] @@ -102988,59 +102988,59 @@ v_cmp_f_i64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x40,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x40,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x40,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x41,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x05,0x02,0x00] @@ -103140,59 +103140,59 @@ v_cmp_lt_i64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x42,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x42,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x42,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x43,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x05,0x02,0x00] @@ -103292,59 +103292,59 @@ v_cmp_eq_i64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x44,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x44,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x44,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x45,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x05,0x02,0x00] @@ -103444,59 +103444,59 @@ v_cmp_le_i64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x46,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x46,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x46,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x47,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x05,0x02,0x00] @@ -103596,59 +103596,59 @@ v_cmp_gt_i64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x48,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x48,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x48,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x49,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x05,0x02,0x00] @@ -103748,59 +103748,59 @@ v_cmp_ne_i64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x4a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x4a,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x4a,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x4b,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x05,0x02,0x00] @@ -103900,59 +103900,59 @@ v_cmp_ge_i64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x4c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x4c,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x4c,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x4d,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x05,0x02,0x00] @@ -104052,59 +104052,59 @@ v_cmp_t_i64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0x4e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0x4e,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0x4e,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0x4f,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x05,0x02,0x00] @@ -104204,59 +104204,59 @@ v_cmp_class_f64 vcc, v[1:2], v2 // W64: encoding: [0x01,0x05,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, v[254:255], v2 // W64: encoding: [0xfe,0x05,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, s[2:3], v2 // W64: encoding: [0x02,0x04,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, s[4:5], v2 // W64: encoding: [0x04,0x04,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, s[100:101], v2 // W64: encoding: [0x64,0x04,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, vcc, v2 // W64: encoding: [0x6a,0x04,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, exec, v2 // W64: encoding: [0x7e,0x04,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x50,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x50,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x50,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc, v[1:2], v255 // W64: encoding: [0x01,0xff,0x51,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64_e64 s[10:11], v[1:2], v2 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x05,0x02,0x00] @@ -104368,59 +104368,59 @@ v_cmp_f_u64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0xc0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0xc0,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0xc0,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0xc1,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x05,0x02,0x00] @@ -104520,59 +104520,59 @@ v_cmp_lt_u64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0xc2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0xc2,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0xc2,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0xc3,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x05,0x02,0x00] @@ -104672,59 +104672,59 @@ v_cmp_eq_u64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0xc4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0xc4,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0xc4,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0xc5,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x05,0x02,0x00] @@ -104824,59 +104824,59 @@ v_cmp_le_u64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0xc6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0xc6,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0xc6,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0xc7,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x05,0x02,0x00] @@ -104976,59 +104976,59 @@ v_cmp_gt_u64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0xc8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0xc8,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0xc8,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0xc9,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x05,0x02,0x00] @@ -105128,59 +105128,59 @@ v_cmp_ne_u64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0xca,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0xca,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0xca,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0xcb,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x05,0x02,0x00] @@ -105280,59 +105280,59 @@ v_cmp_ge_u64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0xcc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0xcc,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0xcc,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0xcd,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x05,0x02,0x00] @@ -105432,59 +105432,59 @@ v_cmp_t_u64 vcc, v[1:2], v[2:3] // W64: encoding: [0x01,0x05,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, v[254:255], v[2:3] // W64: encoding: [0xfe,0x05,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, s[2:3], v[2:3] // W64: encoding: [0x02,0x04,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, s[4:5], v[2:3] // W64: encoding: [0x04,0x04,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, s[100:101], v[2:3] // W64: encoding: [0x64,0x04,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, vcc, v[2:3] // W64: encoding: [0x6a,0x04,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, exec, v[2:3] // W64: encoding: [0x7e,0x04,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, 0, v[2:3] // W64: encoding: [0x80,0x04,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, -1, v[2:3] // W64: encoding: [0xc1,0x04,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, 0.5, v[2:3] // W64: encoding: [0xf0,0x04,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, -4.0, v[2:3] // W64: encoding: [0xf7,0x04,0xce,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, 0xaf123456, v[2:3] // W64: encoding: [0xff,0x04,0xce,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, 0x3f717273, v[2:3] // W64: encoding: [0xff,0x04,0xce,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc, v[1:2], v[254:255] // W64: encoding: [0x01,0xfd,0xcf,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64_e64 s[10:11], v[1:2], v[2:3] // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x05,0x02,0x00] @@ -105584,59 +105584,59 @@ v_cmp_f_i64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x40,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x40,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x40,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x41,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_i64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x05,0x02,0x00] @@ -105736,59 +105736,59 @@ v_cmp_lt_i64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x42,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x42,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x42,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x43,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_i64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x05,0x02,0x00] @@ -105888,59 +105888,59 @@ v_cmp_eq_i64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x44,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x44,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x44,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x45,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_i64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x05,0x02,0x00] @@ -106040,59 +106040,59 @@ v_cmp_le_i64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x46,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x46,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x46,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x47,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_i64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x05,0x02,0x00] @@ -106192,59 +106192,59 @@ v_cmp_gt_i64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x48,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x48,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x48,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x49,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_i64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x05,0x02,0x00] @@ -106344,59 +106344,59 @@ v_cmp_ne_i64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x4a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x4a,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x4a,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x4b,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_i64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x05,0x02,0x00] @@ -106496,59 +106496,59 @@ v_cmp_ge_i64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x4c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x4c,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x4c,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x4d,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_i64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x05,0x02,0x00] @@ -106648,59 +106648,59 @@ v_cmp_t_i64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0x4e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0x4e,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0x4e,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0x4f,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_i64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x05,0x02,0x00] @@ -106800,59 +106800,59 @@ v_cmp_class_f64 vcc_lo, v[1:2], v2 // W32: encoding: [0x01,0x05,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, v[254:255], v2 // W32: encoding: [0xfe,0x05,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, s[2:3], v2 // W32: encoding: [0x02,0x04,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, s[4:5], v2 // W32: encoding: [0x04,0x04,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, s[100:101], v2 // W32: encoding: [0x64,0x04,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, vcc, v2 // W32: encoding: [0x6a,0x04,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, exec, v2 // W32: encoding: [0x7e,0x04,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x50,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x50,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x50,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64 vcc_lo, v[1:2], v255 // W32: encoding: [0x01,0xff,0x51,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_class_f64_e64 s10, v[1:2], v2 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x05,0x02,0x00] @@ -106964,59 +106964,59 @@ v_cmp_f_u64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0xc0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0xc0,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0xc0,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0xc1,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x05,0x02,0x00] @@ -107116,59 +107116,59 @@ v_cmp_lt_u64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0xc2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0xc2,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0xc2,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0xc3,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x05,0x02,0x00] @@ -107268,59 +107268,59 @@ v_cmp_eq_u64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0xc4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0xc4,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0xc4,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0xc5,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x05,0x02,0x00] @@ -107420,59 +107420,59 @@ v_cmp_le_u64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0xc6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0xc6,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0xc6,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0xc7,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x05,0x02,0x00] @@ -107572,59 +107572,59 @@ v_cmp_gt_u64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0xc8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0xc8,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0xc8,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0xc9,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x05,0x02,0x00] @@ -107724,59 +107724,59 @@ v_cmp_ne_u64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0xca,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0xca,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0xca,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0xcb,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x05,0x02,0x00] @@ -107876,59 +107876,59 @@ v_cmp_ge_u64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0xcc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0xcc,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0xcc,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0xcd,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x05,0x02,0x00] @@ -108028,59 +108028,59 @@ v_cmp_t_u64 vcc_lo, v[1:2], v[2:3] // W32: encoding: [0x01,0x05,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, v[254:255], v[2:3] // W32: encoding: [0xfe,0x05,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, s[2:3], v[2:3] // W32: encoding: [0x02,0x04,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, s[4:5], v[2:3] // W32: encoding: [0x04,0x04,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, s[100:101], v[2:3] // W32: encoding: [0x64,0x04,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, vcc, v[2:3] // W32: encoding: [0x6a,0x04,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, exec, v[2:3] // W32: encoding: [0x7e,0x04,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, 0, v[2:3] // W32: encoding: [0x80,0x04,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, -1, v[2:3] // W32: encoding: [0xc1,0x04,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, 0.5, v[2:3] // W32: encoding: [0xf0,0x04,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, -4.0, v[2:3] // W32: encoding: [0xf7,0x04,0xce,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, 0xaf123456, v[2:3] // W32: encoding: [0xff,0x04,0xce,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, 0x3f717273, v[2:3] // W32: encoding: [0xff,0x04,0xce,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64 vcc_lo, v[1:2], v[254:255] // W32: encoding: [0x01,0xfd,0xcf,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u64_e64 s10, v[1:2], v[2:3] // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x05,0x02,0x00] @@ -108204,67 +108204,67 @@ v_cmp_lt_u16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x52,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x52,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x52,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x52,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x52,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x53,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x05,0x02,0x00] @@ -108380,67 +108380,67 @@ v_cmp_eq_u16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x54,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x54,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x54,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x54,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x54,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x55,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x05,0x02,0x00] @@ -108556,67 +108556,67 @@ v_cmp_le_u16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x56,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x56,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x56,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x56,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x56,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x57,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x05,0x02,0x00] @@ -108732,67 +108732,67 @@ v_cmp_gt_u16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x58,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x58,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x58,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x58,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x58,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x59,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x05,0x02,0x00] @@ -108908,67 +108908,67 @@ v_cmp_ne_u16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x5a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x5a,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x5a,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x5a,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x5a,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x5b,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x05,0x02,0x00] @@ -109084,67 +109084,67 @@ v_cmp_ge_u16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x5c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, 0.5, v2 // W64: encoding: [0xff,0x04,0x5c,0x7d,0x00,0x38,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, -4.0, v2 // W64: encoding: [0xff,0x04,0x5c,0x7d,0x00,0xc4,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x5c,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x5c,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x5d,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x05,0x02,0x00] @@ -109260,67 +109260,67 @@ v_cmp_f_u32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x80,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x80,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x80,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x81,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x05,0x02,0x00] @@ -109436,67 +109436,67 @@ v_cmp_lt_u32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x82,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x82,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x82,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x83,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x05,0x02,0x00] @@ -109612,67 +109612,67 @@ v_cmp_eq_u32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x84,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x84,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x84,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x85,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x05,0x02,0x00] @@ -109788,67 +109788,67 @@ v_cmp_le_u32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x86,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x86,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x86,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x87,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x05,0x02,0x00] @@ -109964,67 +109964,67 @@ v_cmp_gt_u32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x88,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x88,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x88,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x89,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x05,0x02,0x00] @@ -110140,67 +110140,67 @@ v_cmp_ne_u32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x8a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x8a,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x8a,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x8b,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x05,0x02,0x00] @@ -110316,67 +110316,67 @@ v_cmp_ge_u32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x8c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x8c,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x8c,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x8d,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x05,0x02,0x00] @@ -110492,67 +110492,67 @@ v_cmp_t_u32 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x8e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, 0xaf123456, v2 // W64: encoding: [0xff,0x04,0x8e,0x7d,0x56,0x34,0x12,0xaf] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, 0x3f717273, v2 // W64: encoding: [0xff,0x04,0x8e,0x7d,0x73,0x72,0x71,0x3f] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x8f,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x05,0x02,0x00] @@ -110668,67 +110668,67 @@ v_cmp_f_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x90,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x90,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x90,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x91,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x00] @@ -110860,67 +110860,67 @@ v_cmp_lt_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x92,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x92,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x92,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x93,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x00] @@ -111052,67 +111052,67 @@ v_cmp_eq_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x94,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x94,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x94,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x95,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x02,0x00] @@ -111244,67 +111244,67 @@ v_cmp_le_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x96,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x96,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x96,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x97,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x00] @@ -111436,67 +111436,67 @@ v_cmp_gt_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x98,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x98,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x98,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x99,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x00] @@ -111628,67 +111628,67 @@ v_cmp_lg_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x9a,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x9a,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x9a,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x9b,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x00] @@ -111820,67 +111820,67 @@ v_cmp_ge_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x9c,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x9c,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x9c,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x9d,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x02,0x00] @@ -112012,67 +112012,67 @@ v_cmp_o_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0x9e,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0x9e,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0x9e,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0x9f,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x00] @@ -112204,67 +112204,67 @@ v_cmp_u_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0xd0,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0xd0,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0xd0,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0xd1,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x00] @@ -112396,67 +112396,67 @@ v_cmp_nge_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0xd2,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0xd2,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0xd2,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0xd3,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x00] @@ -112588,67 +112588,67 @@ v_cmp_nlg_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0xd4,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0xd4,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0xd4,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0xd5,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x02,0x00] @@ -112780,67 +112780,67 @@ v_cmp_ngt_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0xd6,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0xd6,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0xd6,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0xd7,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x00] @@ -112972,67 +112972,67 @@ v_cmp_nle_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0xd8,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0xd8,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0xd8,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0xd9,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x02,0x00] @@ -113164,67 +113164,67 @@ v_cmp_neq_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0xda,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0xda,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0xda,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0xdb,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x02,0x00] @@ -113356,67 +113356,67 @@ v_cmp_nlt_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0xdc,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0xdc,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0xdc,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0xdd,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x02,0x00] @@ -113548,67 +113548,67 @@ v_cmp_tru_f16 vcc, v1, v2 // W64: encoding: [0x01,0x05,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, v255, v2 // W64: encoding: [0xff,0x05,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, s1, v2 // W64: encoding: [0x01,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, s101, v2 // W64: encoding: [0x65,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, vcc_lo, v2 // W64: encoding: [0x6a,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, vcc_hi, v2 // W64: encoding: [0x6b,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, m0, v2 // W64: encoding: [0x7c,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, exec_lo, v2 // W64: encoding: [0x7e,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, exec_hi, v2 // W64: encoding: [0x7f,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, 0, v2 // W64: encoding: [0x80,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, -1, v2 // W64: encoding: [0xc1,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, 0.5, v2 // W64: encoding: [0xf0,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, -4.0, v2 // W64: encoding: [0xf7,0x04,0xde,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, 0xfe0b, v2 // W64: encoding: [0xff,0x04,0xde,0x7d,0x0b,0xfe,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, 0x3456, v2 // W64: encoding: [0xff,0x04,0xde,0x7d,0x56,0x34,0x00,0x00] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc, v1, v255 // W64: encoding: [0x01,0xff,0xdf,0x7d] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16_e64 s[10:11], v1, v2 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x02,0x00] @@ -113740,67 +113740,67 @@ v_cmp_lt_u16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x52,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x52,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x52,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x52,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x52,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x53,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x05,0x02,0x00] @@ -113916,67 +113916,67 @@ v_cmp_eq_u16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x54,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x54,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x54,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x54,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x54,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x55,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x05,0x02,0x00] @@ -114092,67 +114092,67 @@ v_cmp_le_u16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x56,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x56,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x56,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x56,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x56,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x57,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x05,0x02,0x00] @@ -114268,67 +114268,67 @@ v_cmp_gt_u16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x58,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x58,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x58,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x58,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x58,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x59,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x05,0x02,0x00] @@ -114444,67 +114444,67 @@ v_cmp_ne_u16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x5a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x5a,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x5a,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x5a,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x5a,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x5b,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x05,0x02,0x00] @@ -114620,67 +114620,67 @@ v_cmp_ge_u16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x5c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, 0.5, v2 // W32: encoding: [0xff,0x04,0x5c,0x7d,0x00,0x38,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, -4.0, v2 // W32: encoding: [0xff,0x04,0x5c,0x7d,0x00,0xc4,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x5c,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x5c,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x5d,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x05,0x02,0x00] @@ -114796,67 +114796,67 @@ v_cmp_f_u32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x80,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x80,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x80,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x81,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x05,0x02,0x00] @@ -114972,67 +114972,67 @@ v_cmp_lt_u32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x82,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x82,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x82,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x83,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x05,0x02,0x00] @@ -115148,67 +115148,67 @@ v_cmp_eq_u32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x84,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x84,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x84,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x85,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x05,0x02,0x00] @@ -115324,67 +115324,67 @@ v_cmp_le_u32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x86,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x86,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x86,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x87,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x05,0x02,0x00] @@ -115500,67 +115500,67 @@ v_cmp_gt_u32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x88,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x88,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x88,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x89,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x05,0x02,0x00] @@ -115676,67 +115676,67 @@ v_cmp_ne_u32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x8a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x8a,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x8a,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x8b,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x05,0x02,0x00] @@ -115852,67 +115852,67 @@ v_cmp_ge_u32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x8c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x8c,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x8c,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x8d,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x05,0x02,0x00] @@ -116028,67 +116028,67 @@ v_cmp_t_u32 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x8e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, 0xaf123456, v2 // W32: encoding: [0xff,0x04,0x8e,0x7d,0x56,0x34,0x12,0xaf] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, 0x3f717273, v2 // W32: encoding: [0xff,0x04,0x8e,0x7d,0x73,0x72,0x71,0x3f] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x8f,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x05,0x02,0x00] @@ -116204,67 +116204,67 @@ v_cmp_f_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x90,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x90,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x90,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x91,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x00] @@ -116396,67 +116396,67 @@ v_cmp_lt_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x92,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x92,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x92,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x93,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x00] @@ -116588,67 +116588,67 @@ v_cmp_eq_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x94,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x94,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x94,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x95,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x02,0x00] @@ -116780,67 +116780,67 @@ v_cmp_le_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x96,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x96,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x96,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x97,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x00] @@ -116972,67 +116972,67 @@ v_cmp_gt_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x98,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x98,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x98,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x99,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x00] @@ -117164,67 +117164,67 @@ v_cmp_lg_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x9a,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x9a,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x9a,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x9b,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x00] @@ -117356,67 +117356,67 @@ v_cmp_ge_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x9c,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x9c,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x9c,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x9d,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x02,0x00] @@ -117548,67 +117548,67 @@ v_cmp_o_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0x9e,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0x9e,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0x9e,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0x9f,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x00] @@ -117740,67 +117740,67 @@ v_cmp_u_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0xd0,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0xd0,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0xd0,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0xd1,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x00] @@ -117932,67 +117932,67 @@ v_cmp_nge_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0xd2,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0xd2,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0xd2,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0xd3,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x00] @@ -118124,67 +118124,67 @@ v_cmp_nlg_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0xd4,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0xd4,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0xd4,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0xd5,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x02,0x00] @@ -118316,67 +118316,67 @@ v_cmp_ngt_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0xd6,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0xd6,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0xd6,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0xd7,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x00] @@ -118508,67 +118508,67 @@ v_cmp_nle_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0xd8,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0xd8,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0xd8,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0xd9,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x02,0x00] @@ -118700,67 +118700,67 @@ v_cmp_neq_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0xda,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0xda,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0xda,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0xdb,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x02,0x00] @@ -118892,67 +118892,67 @@ v_cmp_nlt_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0xdc,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0xdc,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0xdc,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0xdd,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x02,0x00] @@ -119084,67 +119084,67 @@ v_cmp_tru_f16 vcc_lo, v1, v2 // W32: encoding: [0x01,0x05,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, v255, v2 // W32: encoding: [0xff,0x05,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, s1, v2 // W32: encoding: [0x01,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, s101, v2 // W32: encoding: [0x65,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, vcc_lo, v2 // W32: encoding: [0x6a,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, vcc_hi, v2 // W32: encoding: [0x6b,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, m0, v2 // W32: encoding: [0x7c,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, exec_lo, v2 // W32: encoding: [0x7e,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, exec_hi, v2 // W32: encoding: [0x7f,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, 0, v2 // W32: encoding: [0x80,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, -1, v2 // W32: encoding: [0xc1,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, 0.5, v2 // W32: encoding: [0xf0,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, -4.0, v2 // W32: encoding: [0xf7,0x04,0xde,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, 0xfe0b, v2 // W32: encoding: [0xff,0x04,0xde,0x7d,0x0b,0xfe,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, 0x3456, v2 // W32: encoding: [0xff,0x04,0xde,0x7d,0x56,0x34,0x00,0x00] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16 vcc_lo, v1, v255 // W32: encoding: [0x01,0xff,0xdf,0x7d] -// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16_e64 s10, v1, v2 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x02,0x00] @@ -119288,7 +119288,7 @@ v_cmp_lt_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x52,0x7d,0xff,0x86,0x06,0x06] @@ -119396,7 +119396,7 @@ v_cmp_eq_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x54,0x7d,0xff,0x86,0x06,0x06] @@ -119504,7 +119504,7 @@ v_cmp_le_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x56,0x7d,0xff,0x86,0x06,0x06] @@ -119612,7 +119612,7 @@ v_cmp_gt_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x58,0x7d,0xff,0x86,0x06,0x06] @@ -119720,7 +119720,7 @@ v_cmp_ne_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x5a,0x7d,0xff,0x86,0x06,0x06] @@ -119828,7 +119828,7 @@ v_cmp_ge_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x5c,0x7d,0xff,0x86,0x06,0x06] @@ -119936,7 +119936,7 @@ v_cmp_f_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x80,0x7d,0xff,0x86,0x06,0x06] @@ -120044,7 +120044,7 @@ v_cmp_lt_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x82,0x7d,0xff,0x86,0x06,0x06] @@ -120152,7 +120152,7 @@ v_cmp_eq_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x84,0x7d,0xff,0x86,0x06,0x06] @@ -120260,7 +120260,7 @@ v_cmp_le_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x86,0x7d,0xff,0x86,0x06,0x06] @@ -120368,7 +120368,7 @@ v_cmp_gt_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x88,0x7d,0xff,0x86,0x06,0x06] @@ -120476,7 +120476,7 @@ v_cmp_ne_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ne_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x8a,0x7d,0xff,0x86,0x06,0x06] @@ -120584,7 +120584,7 @@ v_cmp_ge_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x8c,0x7d,0xff,0x86,0x06,0x06] @@ -120692,7 +120692,7 @@ v_cmp_t_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_t_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x8e,0x7d,0xff,0x86,0x06,0x06] @@ -120800,7 +120800,7 @@ v_cmp_f_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_f_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x90,0x7d,0xff,0x86,0x06,0x06] @@ -120916,7 +120916,7 @@ v_cmp_lt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x92,0x7d,0xff,0x86,0x06,0x06] @@ -121032,7 +121032,7 @@ v_cmp_eq_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_eq_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x94,0x7d,0xff,0x86,0x06,0x06] @@ -121148,7 +121148,7 @@ v_cmp_le_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_le_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x96,0x7d,0xff,0x86,0x06,0x06] @@ -121264,7 +121264,7 @@ v_cmp_gt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_gt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x98,0x7d,0xff,0x86,0x06,0x06] @@ -121380,7 +121380,7 @@ v_cmp_lg_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_lg_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x9a,0x7d,0xff,0x86,0x06,0x06] @@ -121496,7 +121496,7 @@ v_cmp_ge_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ge_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x9c,0x7d,0xff,0x86,0x06,0x06] @@ -121612,7 +121612,7 @@ v_cmp_o_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_o_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0x9e,0x7d,0xff,0x86,0x06,0x06] @@ -121728,7 +121728,7 @@ v_cmp_u_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_u_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xd0,0x7d,0xff,0x86,0x06,0x06] @@ -121844,7 +121844,7 @@ v_cmp_nge_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nge_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xd2,0x7d,0xff,0x86,0x06,0x06] @@ -121960,7 +121960,7 @@ v_cmp_nlg_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlg_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xd4,0x7d,0xff,0x86,0x06,0x06] @@ -122076,7 +122076,7 @@ v_cmp_ngt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_ngt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xd6,0x7d,0xff,0x86,0x06,0x06] @@ -122192,7 +122192,7 @@ v_cmp_nle_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nle_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xd8,0x7d,0xff,0x86,0x06,0x06] @@ -122308,7 +122308,7 @@ v_cmp_neq_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_neq_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xda,0x7d,0xff,0x86,0x06,0x06] @@ -122424,7 +122424,7 @@ v_cmp_nlt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_nlt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xdc,0x7d,0xff,0x86,0x06,0x06] @@ -122540,7 +122540,7 @@ v_cmp_tru_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x00,0x06,0x06] -// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU +// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode v_cmp_tru_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD // W64: encoding: [0xf9,0x04,0xde,0x7d,0xff,0x86,0x06,0x06] diff --git a/llvm/test/MC/AMDGPU/gfx10_asm_dpp16.s b/llvm/test/MC/AMDGPU/gfx10_asm_dpp16.s --- a/llvm/test/MC/AMDGPU/gfx10_asm_dpp16.s +++ b/llvm/test/MC/AMDGPU/gfx10_asm_dpp16.s @@ -317,27 +317,27 @@ v_add_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 // W32: [0xfa,0x04,0x0a,0x50,0x01,0x1b,0x00,0x00] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 // W32: [0xfa,0x04,0x0a,0x52,0x01,0x1b,0x00,0x00] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 // W32: [0xfa,0x04,0x0a,0x54,0x01,0x1b,0x00,0x00] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_add_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 // W64: [0xfa,0x04,0x0a,0x50,0x01,0x1b,0x00,0x00] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 // W64: [0xfa,0x04,0x0a,0x52,0x01,0x1b,0x00,0x00] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 // W64: [0xfa,0x04,0x0a,0x54,0x01,0x1b,0x00,0x00] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_fmac_f32_dpp v5, v1, v2 quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 // GFX10: [0xfa,0x04,0x0a,0x56,0x01,0x1b,0x00,0x00] @@ -605,27 +605,27 @@ v_add_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 fi:1 // W32: [0xfa,0x04,0x0a,0x50,0x01,0x1b,0x04,0x00] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 fi:1 // W32: [0xfa,0x04,0x0a,0x52,0x01,0x1b,0x04,0x00] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 fi:1 // W32: [0xfa,0x04,0x0a,0x54,0x01,0x1b,0x04,0x00] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_add_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 fi:1 // W64: [0xfa,0x04,0x0a,0x50,0x01,0x1b,0x04,0x00] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 fi:1 // W64: [0xfa,0x04,0x0a,0x52,0x01,0x1b,0x04,0x00] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 fi:1 // W64: [0xfa,0x04,0x0a,0x54,0x01,0x1b,0x04,0x00] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_fmac_f32_dpp v5, v1, v2 quad_perm:[3,2,1,0] row_mask:0x0 bank_mask:0x0 fi:1 // GFX10: [0xfa,0x04,0x0a,0x56,0x01,0x1b,0x04,0x00] diff --git a/llvm/test/MC/AMDGPU/gfx10_asm_dpp8.s b/llvm/test/MC/AMDGPU/gfx10_asm_dpp8.s --- a/llvm/test/MC/AMDGPU/gfx10_asm_dpp8.s +++ b/llvm/test/MC/AMDGPU/gfx10_asm_dpp8.s @@ -506,19 +506,19 @@ v_cndmask_b32_dpp v0, v1, v2, vcc_lo dpp8:[7,6,5,4,3,2,1,0] // W32: v_cndmask_b32_dpp v0, v1, v2, vcc_lo dpp8:[7,6,5,4,3,2,1,0] ; encoding: [0xe9,0x04,0x00,0x02,0x01,0x77,0x39,0x05] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_cndmask_b32_dpp v0, v1, v2, vcc_lo dpp8:[0,1,2,3,4,5,6,7] fi:1 // W32: v_cndmask_b32_dpp v0, v1, v2, vcc_lo dpp8:[0,1,2,3,4,5,6,7] fi:1 ; encoding: [0xea,0x04,0x00,0x02,0x01,0x88,0xc6,0xfa] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_cndmask_b32_dpp v0, v1, v2, vcc dpp8:[7,6,5,4,3,2,1,0] // W64: v_cndmask_b32_dpp v0, v1, v2, vcc dpp8:[7,6,5,4,3,2,1,0] ; encoding: [0xe9,0x04,0x00,0x02,0x01,0x77,0x39,0x05] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_cndmask_b32_dpp v0, v1, v2, vcc dpp8:[0,1,2,3,4,5,6,7] fi:1 // W64: v_cndmask_b32_dpp v0, v1, v2, vcc dpp8:[0,1,2,3,4,5,6,7] fi:1 ; encoding: [0xea,0x04,0x00,0x02,0x01,0x88,0xc6,0xfa] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_cndmask_b32_dpp v0, v1, v2 dpp8:[0,1,2,3,4,5,6,7] fi:1 // W32: v_cndmask_b32_dpp v0, v1, v2, vcc_lo dpp8:[0,1,2,3,4,5,6,7] fi:1 ; encoding: [0xea,0x04,0x00,0x02,0x01,0x88,0xc6,0xfa] @@ -526,27 +526,27 @@ v_add_co_ci_u32_dpp v0, vcc_lo, v0, v0, vcc_lo dpp8:[7,6,5,4,3,2,1,0] // W32: [0xe9,0x00,0x00,0x50,0x00,0x77,0x39,0x05] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_dpp v0, vcc_lo, v0, v0, vcc_lo dpp8:[7,6,5,4,3,2,1,0] fi:0 // W32: [0xe9,0x00,0x00,0x52,0x00,0x77,0x39,0x05] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_dpp v0, vcc_lo, v0, v0, vcc_lo dpp8:[7,6,5,4,3,2,1,0] fi:1 // W32: [0xea,0x00,0x00,0x54,0x00,0x77,0x39,0x05] -// W64-ERR: error: instruction not supported on this GPU +// W64-ERR: error: operands are not valid for this GPU or mode v_add_co_ci_u32_dpp v0, vcc, v0, v0, vcc dpp8:[7,6,5,4,3,2,1,0] fi:1 // W64: [0xea,0x00,0x00,0x50,0x00,0x77,0x39,0x05] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_dpp v0, vcc, v0, v0, vcc dpp8:[7,6,5,4,3,2,1,0] fi:1 // W64: [0xea,0x00,0x00,0x52,0x00,0x77,0x39,0x05] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_dpp v0, vcc, v0, v0, vcc dpp8:[7,6,5,4,3,2,1,0] // W64: [0xe9,0x00,0x00,0x54,0x00,0x77,0x39,0x05] -// W32-ERR: error: instruction not supported on this GPU +// W32-ERR: error: operands are not valid for this GPU or mode v_add_nc_u32_dpp v5, v1, v255 dpp8:[7,6,5,4,3,2,1,0] // GFX10: [0xe9,0xfe,0x0b,0x4a,0x01,0x77,0x39,0x05] diff --git a/llvm/test/MC/AMDGPU/gfx10_asm_mimg_err.s b/llvm/test/MC/AMDGPU/gfx10_asm_mimg_err.s --- a/llvm/test/MC/AMDGPU/gfx10_asm_mimg_err.s +++ b/llvm/test/MC/AMDGPU/gfx10_asm_mimg_err.s @@ -1,38 +1,38 @@ // RUN: not llvm-mc -arch=amdgcn -mcpu=gfx1010 %s 2>&1 | FileCheck --check-prefixes=NOGFX10 --implicit-check-not=error: %s -; TODO: more helpful error message for missing dim operand +// TODO: more helpful error message for missing dim operand image_load v[0:3], v0, s[0:7] dmask:0xf unorm -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: instruction not supported on this GPU +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: operands are not valid for this GPU or mode image_load v[0:3], v0, s[0:7] dmask:0xf dim:SQ_RSRC_IMG_1D da -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction image_load_pck v[0:3], v0, s[0:7] dmask:0xf dim:SQ_RSRC_IMG_1D d16 -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction image_load v[0:1], v0, s[0:7] dmask:0xf dim:SQ_RSRC_IMG_1D -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image data size does not match dmask and tfe +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image data size does not match dmask and tfe image_load v[0:3], v[0:1], s[0:7] dmask:0xf dim:SQ_RSRC_IMG_1D -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 image_load_mip v[0:3], v[0:2], s[0:7] dmask:0xf dim:SQ_RSRC_IMG_CUBE -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 image_sample_d v[0:3], [v0, v1, v2, v3, v4], s[0:7], s[8:11] dmask:0xf dim:SQ_RSRC_IMG_1D_ARRAY -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 image_sample_b_cl v[0:3], v[0:3], s[0:7], s[8:11] dmask:0xf dim:SQ_RSRC_IMG_CUBE -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 image_sample_c_d v[0:3], [v0, v1, v2, v3, v4, v5, v6], s[0:7], s[8:11] dmask:0xf dim:SQ_RSRC_IMG_2D_ARRAY -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 image_sample_c_d_cl v[0:3], [v0, v1, v2, v3, v4, v5, v6, v7], s[0:7], s[8:11] dmask:0xf dim:SQ_RSRC_IMG_2D_ARRAY -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 image_sample_c_d_cl_o v[0:3], v[0:7], s[0:7], s[8:11] dmask:0xf dim:SQ_RSRC_IMG_2D -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: image address size does not match dim and a16 image_load v[0:1], v0, s[0:7] dmask:0x9 dim:1 D -; NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: failed parsing operand +// NOGFX10: :[[@LINE-1]]:{{[0-9]+}}: error: failed parsing operand diff --git a/llvm/test/MC/AMDGPU/lds_direct-err.s b/llvm/test/MC/AMDGPU/lds_direct-err.s --- a/llvm/test/MC/AMDGPU/lds_direct-err.s +++ b/llvm/test/MC/AMDGPU/lds_direct-err.s @@ -58,7 +58,7 @@ //---------------------------------------------------------------------------// v_writelane_b32 v0, lds_direct, s0 -// NOGFX9: error: instruction not supported on this GPU +// NOGFX9: error: operands are not valid for this GPU or mode //---------------------------------------------------------------------------// // lds_direct cannot be used with 64-bit and larger operands diff --git a/llvm/test/MC/AMDGPU/literals.s b/llvm/test/MC/AMDGPU/literals.s --- a/llvm/test/MC/AMDGPU/literals.s +++ b/llvm/test/MC/AMDGPU/literals.s @@ -570,12 +570,14 @@ // GFX9: v_add_u16_sdwa v0, v0, src_scc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD ; encoding: [0xf9,0xfa,0x01,0x4c,0x00,0x06,0x06,0x86] v_add_u16_sdwa v0, v0, scc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD -// NOSICIVI: error: instruction not supported on this GPU // GFX9: v_add_u32_e32 v0, src_execz, v0 ; encoding: [0xfc,0x00,0x00,0x68] +// NOSICI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_add_u32 v0, execz, v0 -// NOSICIVI: error: instruction not supported on this GPU // GFX9: v_add_u32_e64 v0, src_scc, v0 ; encoding: [0x00,0x00,0x34,0xd1,0xfd,0x00,0x02,0x00] +// NOSICI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_add_u32_e64 v0, scc, v0 // SICI: v_cmp_eq_i64_e32 vcc, src_scc, v[0:1] ; encoding: [0xfd,0x00,0x44,0x7d] @@ -797,8 +799,9 @@ // NOVI: error: register not available on this GPU v_add_u32 v0, private_base, s0 -// NOSICIVI: error: instruction not supported on this GPU // NOGFX9: error: invalid operand (violates constant bus restrictions) +// NOSICI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_add_u32 v0, scc, s0 // v_div_fmas implicitly reads VCC diff --git a/llvm/test/MC/AMDGPU/mtbuf.s b/llvm/test/MC/AMDGPU/mtbuf.s --- a/llvm/test/MC/AMDGPU/mtbuf.s +++ b/llvm/test/MC/AMDGPU/mtbuf.s @@ -277,7 +277,7 @@ // Check addr64 tbuffer_store_format_xyzw v[1:4], v[1:2], ttmp[4:7], s0, format:[BUF_DATA_FORMAT_32,BUF_NUM_FORMAT_FLOAT] addr64 // SICI: tbuffer_store_format_xyzw v[1:4], v[1:2], ttmp[4:7], s0 format:[BUF_DATA_FORMAT_32,BUF_NUM_FORMAT_FLOAT] addr64 ; encoding: [0x00,0x80,0xa7,0xeb,0x01,0x01,0x1d,0x00] -// VI-ERR: error: instruction not supported on this GPU +// VI-ERR: error: operands are not valid for this GPU or mode //===----------------------------------------------------------------------===// // Tests for symbolic format errors handling diff --git a/llvm/test/MC/AMDGPU/mubuf.s b/llvm/test/MC/AMDGPU/mubuf.s --- a/llvm/test/MC/AMDGPU/mubuf.s +++ b/llvm/test/MC/AMDGPU/mubuf.s @@ -164,35 +164,35 @@ buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 // SICI: buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 ; encoding: [0x00,0x80,0x30,0xe0,0x02,0x01,0x01,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 // SICI: buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 ; encoding: [0x04,0x80,0x30,0xe0,0x02,0x01,0x01,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 glc // SICI: buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 glc ; encoding: [0x04,0xc0,0x30,0xe0,0x02,0x01,0x01,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 slc // SICI: buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 slc ; encoding: [0x04,0x80,0x30,0xe0,0x02,0x01,0x41,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 tfe // SICI: buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 tfe ; encoding: [0x04,0x80,0x30,0xe0,0x02,0x01,0x81,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 glc tfe // SICI: buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 glc tfe ; encoding: [0x00,0xc0,0x30,0xe0,0x02,0x01,0x81,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 glc slc tfe // SICI: buffer_load_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 glc slc tfe ; encoding: [0x04,0xc0,0x30,0xe0,0x02,0x01,0xc1,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_load_dword v1, v[2:3], ttmp[4:7], ttmp1 addr64 offset:4 glc slc tfe // SICI: buffer_load_dword v1, v[2:3], ttmp[4:7], ttmp1 addr64 offset:4 glc slc tfe ; encoding: [0x04,0xc0,0x30,0xe0,0x02,0x01,0xdd,0x71] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode //===----------------------------------------------------------------------===// // store - immediate offset only @@ -344,35 +344,35 @@ buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 // SICI: buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 ; encoding: [0x00,0x80,0x70,0xe0,0x02,0x01,0x01,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 // SICI: buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 ; encoding: [0x04,0x80,0x70,0xe0,0x02,0x01,0x01,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 glc // SICI: buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 glc ; encoding: [0x04,0xc0,0x70,0xe0,0x02,0x01,0x01,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 slc // SICI: buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 slc ; encoding: [0x04,0x80,0x70,0xe0,0x02,0x01,0x41,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 tfe // SICI: buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 tfe ; encoding: [0x04,0x80,0x70,0xe0,0x02,0x01,0x81,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 glc tfe // SICI: buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 glc tfe ; encoding: [0x00,0xc0,0x70,0xe0,0x02,0x01,0x81,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 glc slc tfe // SICI: buffer_store_dword v1, v[2:3], s[4:7], s1 addr64 offset:4 glc slc tfe ; encoding: [0x04,0xc0,0x70,0xe0,0x02,0x01,0xc1,0x01] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_store_dword v1, v[2:3], ttmp[4:7], ttmp1 addr64 offset:4 glc slc tfe // SICI: buffer_store_dword v1, v[2:3], ttmp[4:7], ttmp1 addr64 offset:4 glc slc tfe ; encoding: [0x04,0xc0,0x70,0xe0,0x02,0x01,0xdd,0x71] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode //===----------------------------------------------------------------------===// // Instructions @@ -513,23 +513,23 @@ //===----------------------------------------------------------------------===// buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 // SICI: buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 ; encoding: [0x00,0x80,0xf0,0xe0,0x02,0x01,0x02,0xb8] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_atomic_inc v1, v[2:3], s[8:11], s4 addr64 // SICI: buffer_atomic_inc v1, v[2:3], s[8:11], s4 addr64 ; encoding: [0x00,0x80,0xf0,0xe0,0x02,0x01,0x02,0x04] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 slc // SICI: buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 slc ; encoding: [0x00,0x80,0xf0,0xe0,0x02,0x01,0x42,0xb8] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 offset:4 // SICI: buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 offset:4 ; encoding: [0x04,0x80,0xf0,0xe0,0x02,0x01,0x02,0xb8] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 offset:4 slc // SICI: buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 offset:4 slc ; encoding: [0x04,0x80,0xf0,0xe0,0x02,0x01,0x42,0xb8] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_atomic_inc v1, off, s[8:11], 56 // SICI: buffer_atomic_inc v1, off, s[8:11], 56 ; encoding: [0x00,0x00,0xf0,0xe0,0x00,0x01,0x02,0xb8] @@ -613,23 +613,23 @@ buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 glc // SICI: buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 glc ; encoding: [0x00,0xc0,0xf0,0xe0,0x02,0x01,0x02,0xb8] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_atomic_inc v1, v[2:3], s[8:11], s4 addr64 glc // SICI: buffer_atomic_inc v1, v[2:3], s[8:11], s4 addr64 glc ; encoding: [0x00,0xc0,0xf0,0xe0,0x02,0x01,0x02,0x04] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 glc slc // SICI: buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 glc slc ; encoding: [0x00,0xc0,0xf0,0xe0,0x02,0x01,0x42,0xb8] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 offset:4 glc // SICI: buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 offset:4 glc ; encoding: [0x04,0xc0,0xf0,0xe0,0x02,0x01,0x02,0xb8] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 offset:4 glc slc // SICI: buffer_atomic_inc v1, v[2:3], s[8:11], 56 addr64 offset:4 glc slc ; encoding: [0x04,0xc0,0xf0,0xe0,0x02,0x01,0x42,0xb8] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode buffer_atomic_inc v1, off, s[8:11], 56 glc // SICI: buffer_atomic_inc v1, off, s[8:11], 56 glc ; encoding: [0x00,0x40,0xf0,0xe0,0x00,0x01,0x02,0xb8] @@ -844,15 +844,15 @@ // VI: buffer_store_lds_dword s[4:7], s8 offset:4 lds glc slc ; encoding: [0x04,0x40,0xf7,0xe0,0x00,0x00,0x01,0x08] buffer_load_dwordx2 v[1:2], off, s[4:7], s1 lds -// NOSICI: error: instruction not supported on this GPU +// NOSICI: error: operands are not valid for this GPU or mode // VI: buffer_load_dwordx2 v[1:2], off, s[4:7], s1 lds ; encoding: [0x00,0x00,0x55,0xe0,0x00,0x01,0x01,0x01] buffer_load_dwordx3 v[0:2], off, s[4:7], s0 offset:4095 lds -// NOSICI: error: instruction not supported on this GPU +// NOSICI: error: operands are not valid for this GPU or mode // VI: buffer_load_dwordx3 v[0:2], off, s[4:7], s0 offset:4095 lds ; encoding: [0xff,0x0f,0x59,0xe0,0x00,0x00,0x01,0x00] buffer_load_dwordx4 v[1:4], off, s[4:7], s1 lds -// NOSICI: error: instruction not supported on this GPU +// NOSICI: error: operands are not valid for this GPU or mode // VI: buffer_load_dwordx4 v[1:4], off, s[4:7], s1 lds ; encoding: [0x00,0x00,0x5d,0xe0,0x00,0x01,0x01,0x01] //===----------------------------------------------------------------------===// diff --git a/llvm/test/MC/AMDGPU/smem.s b/llvm/test/MC/AMDGPU/smem.s --- a/llvm/test/MC/AMDGPU/smem.s +++ b/llvm/test/MC/AMDGPU/smem.s @@ -1,4 +1,5 @@ // RUN: not llvm-mc -arch=amdgcn -mcpu=tahiti -show-encoding %s | FileCheck -check-prefix=GCN -check-prefix=SICI %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=bonaire -show-encoding %s | FileCheck -check-prefix=GCN -check-prefix=SICI -check-prefix=CI %s // RUN: not llvm-mc -arch=amdgcn -mcpu=kaveri -show-encoding %s | FileCheck -check-prefix=GCN -check-prefix=SICI %s // RUN: not llvm-mc -arch=amdgcn -mcpu=tonga -show-encoding %s | FileCheck -check-prefix=GCN -check-prefix=VI -check-prefix=GFX89 %s // RUN: not llvm-mc -arch=amdgcn -mcpu=gfx900 -show-encoding %s | FileCheck -check-prefix=GCN -check-prefix=GFX89 -check-prefix=GFX9 %s @@ -720,11 +721,11 @@ // NOVI: error: expected a 20-bit unsigned offset // GFX9: s_load_dword s1, s[2:3], -0x1 ; encoding: [0x41,0x00,0x02,0xc0,0xff,0xff,0x1f,0x00] // GFX10: s_load_dword s1, s[2:3], -0x1 ; encoding: [0x41,0x00,0x00,0xf4,0xff,0xff,0x1f,0xfa] -// NOSICI: error: instruction not supported on this GPU +// NOSICI: error: operands are not valid for this GPU or mode s_buffer_load_dword s10, s[92:95], -1 // NOVI: error: expected a 20-bit unsigned offset -// NOSICI: error: instruction not supported on this GPU +// NOSICI: error: operands are not valid for this GPU or mode // NOGFX9: error: expected a 20-bit unsigned offset s_atomic_swap s5, s[2:3], -1 @@ -761,13 +762,13 @@ // NOVI: error: expected a 20-bit unsigned offset s_load_dword s1, s[2:3], 0xFFFFFFFFFFF00000 -// NOSICI: error: instruction not supported on this GPU +// NOSICI: error: operands are not valid for this GPU or mode // GFX10: s_load_dword s1, s[2:3], -0x100000 ; encoding: [0x41,0x00,0x00,0xf4,0x00,0x00,0x10,0xfa] // GFX9: s_load_dword s1, s[2:3], -0x100000 ; encoding: [0x41,0x00,0x02,0xc0,0x00,0x00,0x10,0x00] // NOVI: error: expected a 20-bit unsigned offset s_buffer_load_dword s10, s[92:95], 0xFFFFFFFFFFF00000 -// NOSICI: error: instruction not supported on this GPU +// NOSICI: error: operands are not valid for this GPU or mode // NOGFX9: error: expected a 20-bit unsigned offset // NOVI: error: expected a 20-bit unsigned offset diff --git a/llvm/test/MC/AMDGPU/smrd.s b/llvm/test/MC/AMDGPU/smrd.s --- a/llvm/test/MC/AMDGPU/smrd.s +++ b/llvm/test/MC/AMDGPU/smrd.s @@ -20,22 +20,22 @@ // VI: s_load_dword s1, s[2:3], 0xff ; encoding: [0x41,0x00,0x02,0xc0,0xff,0x00,0x00,0x00] s_load_dword s1, s[2:3], 0x100 -// NOSI: error: instruction not supported on this GPU +// NOSI: error: operands are not valid for this GPU or mode // CI: s_load_dword s1, s[2:3], 0x100 ; encoding: [0xff,0x82,0x00,0xc0,0x00,0x01,0x00,0x00] // VI: s_load_dword s1, s[2:3], 0x100 ; encoding: [0x41,0x00,0x02,0xc0,0x00,0x01,0x00,0x00] s_load_dword s1, s[2:3], 0xfffff -// NOSI: error: instruction not supported on this GPU +// NOSI: error: operands are not valid for this GPU or mode // CI: s_load_dword s1, s[2:3], 0xfffff ; encoding: [0xff,0x82,0x00,0xc0,0xff,0xff,0x0f,0x00] // VI: s_load_dword s1, s[2:3], 0xfffff ; encoding: [0x41,0x00,0x02,0xc0,0xff,0xff,0x0f,0x00] s_load_dword s1, s[2:3], 0x100000 -// NOSI: error: instruction not supported on this GPU +// NOSI: error: operands are not valid for this GPU or mode // CI: s_load_dword s1, s[2:3], 0x100000 ; encoding: [0xff,0x82,0x00,0xc0,0x00,0x00,0x10,0x00] // NOVI: error: expected a 20-bit unsigned offset s_load_dword s1, s[2:3], 0xffffffff -// NOSI: error: instruction not supported on this GPU +// NOSI: error: operands are not valid for this GPU or mode // CI: s_load_dword s1, s[2:3], 0xffffffff ; encoding: [0xff,0x82,0x00,0xc0,0xff,0xff,0xff,0xff] // NOVI: error: expected a 20-bit unsigned offset diff --git a/llvm/test/MC/AMDGPU/vop2.s b/llvm/test/MC/AMDGPU/vop2.s --- a/llvm/test/MC/AMDGPU/vop2.s +++ b/llvm/test/MC/AMDGPU/vop2.s @@ -143,7 +143,7 @@ v_writelane_b32 v2, 1, s4 // SICI: v_writelane_b32 v255, 0xaf123456, 2 ; encoding: [0xff,0x04,0xff,0x05,0x56,0x34,0x12,0xaf] -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_writelane_b32 v255, 0xaf123456, 2 // SICI: v_add_f32_e32 v1, v2, v3 ; encoding: [0x02,0x07,0x02,0x06] diff --git a/llvm/test/MC/AMDGPU/vop3-gfx9.s b/llvm/test/MC/AMDGPU/vop3-gfx9.s --- a/llvm/test/MC/AMDGPU/vop3-gfx9.s +++ b/llvm/test/MC/AMDGPU/vop3-gfx9.s @@ -1,4 +1,7 @@ -// RUN: not llvm-mc -arch=amdgcn -mcpu=gfx900 -show-encoding %s | FileCheck -check-prefix=GFX9 %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=tahiti -show-encoding %s | FileCheck -check-prefixes=GCN,SI,SICI,SICIVI %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=hawaii -show-encoding %s | FileCheck -check-prefixes=GCN,CI,SICI,SICIVI %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=tonga -show-encoding %s | FileCheck -check-prefixes=GCN,VI,SICIVI %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=gfx900 -show-encoding %s | FileCheck -check-prefixes=GCN,GFX9 %s // RUN: not llvm-mc -arch=amdgcn -mcpu=tahiti %s 2>&1 | FileCheck -check-prefixes=NOSI,NOSICI,NOGCN --implicit-check-not=error: %s // RUN: not llvm-mc -arch=amdgcn -mcpu=hawaii %s 2>&1 | FileCheck -check-prefixes=NOCI,NOSICI,NOGCN --implicit-check-not=error: %s // RUN: not llvm-mc -arch=amdgcn -mcpu=tonga %s 2>&1 | FileCheck -check-prefixes=NOVI,NOGCN --implicit-check-not=error: %s @@ -235,33 +238,37 @@ v_fma_f16_e64 v5, v1, v2, v3 // GFX9: v_fma_f16 v5, v1, v2, v3 ; encoding: [0x05,0x00,0x06,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_fma_f16 v5, v1, v2, v3 ; encoding: [0x05,0x00,0xee,0xd1,0x01,0x05,0x0e,0x04] v_fma_f16 v5, v1, -v2, v3 // GFX9: v_fma_f16 v5, v1, -v2, v3 ; encoding: [0x05,0x00,0x06,0xd2,0x01,0x05,0x0e,0x44] // NOSICI: error: instruction not supported on this GPU +// VI: v_fma_f16 v5, v1, -v2, v3 ; encoding: [0x05,0x00,0xee,0xd1,0x01,0x05,0x0e,0x44] v_fma_f16 v5, v1, v2, |v3| // GFX9: v_fma_f16 v5, v1, v2, |v3| ; encoding: [0x05,0x04,0x06,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_fma_f16 v5, v1, v2, |v3| ; encoding: [0x05,0x04,0xee,0xd1,0x01,0x05,0x0e,0x04] v_fma_f16 v5, v1, v2, v3 clamp // GFX9: v_fma_f16 v5, v1, v2, v3 clamp ; encoding: [0x05,0x80,0x06,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_fma_f16 v5, v1, v2, v3 clamp ; encoding: [0x05,0x80,0xee,0xd1,0x01,0x05,0x0e,0x04] v_fma_f16 v5, v1, v2, v3 op_sel:[1,0,0,0] // GFX9: v_fma_f16 v5, v1, v2, v3 op_sel:[1,0,0,0] ; encoding: [0x05,0x08,0x06,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_fma_f16 v5, v1, v2, v3 op_sel:[0,1,0,0] // GFX9: v_fma_f16 v5, v1, v2, v3 op_sel:[0,1,0,0] ; encoding: [0x05,0x10,0x06,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_fma_f16 v5, v1, v2, v3 op_sel:[1,1,1,1] // GFX9: v_fma_f16 v5, v1, v2, v3 op_sel:[1,1,1,1] ; encoding: [0x05,0x78,0x06,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_fma_legacy_f16_e64 v5, v1, v2, v3 // GFX9: v_fma_legacy_f16 v5, v1, v2, v3 ; encoding: [0x05,0x00,0xee,0xd1,0x01,0x05,0x0e,0x04] @@ -282,41 +289,47 @@ v_div_fixup_f16_e64 v5, 0.5, v2, v3 // GFX9: v_div_fixup_f16 v5, 0.5, v2, v3 ; encoding: [0x05,0x00,0x07,0xd2,0xf0,0x04,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_div_fixup_f16 v5, 0.5, v2, v3 ; encoding: [0x05,0x00,0xef,0xd1,0xf0,0x04,0x0e,0x04] v_div_fixup_f16 v5, v1, 0.5, v3 // GFX9: v_div_fixup_f16 v5, v1, 0.5, v3 ; encoding: [0x05,0x00,0x07,0xd2,0x01,0xe1,0x0d,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_div_fixup_f16 v5, v1, 0.5, v3 ; encoding: [0x05,0x00,0xef,0xd1,0x01,0xe1,0x0d,0x04] v_div_fixup_f16 v5, v1, v2, 0.5 // GFX9: v_div_fixup_f16 v5, v1, v2, 0.5 ; encoding: [0x05,0x00,0x07,0xd2,0x01,0x05,0xc2,0x03] // NOSICI: error: instruction not supported on this GPU +// VI: v_div_fixup_f16 v5, v1, v2, 0.5 ; encoding: [0x05,0x00,0xef,0xd1,0x01,0x05,0xc2,0x03] v_div_fixup_f16 v5, -v1, v2, v3 // GFX9: v_div_fixup_f16 v5, -v1, v2, v3 ; encoding: [0x05,0x00,0x07,0xd2,0x01,0x05,0x0e,0x24] // NOSICI: error: instruction not supported on this GPU +// VI: v_div_fixup_f16 v5, -v1, v2, v3 ; encoding: [0x05,0x00,0xef,0xd1,0x01,0x05,0x0e,0x24] v_div_fixup_f16 v5, |v1|, v2, v3 // GFX9: v_div_fixup_f16 v5, |v1|, v2, v3 ; encoding: [0x05,0x01,0x07,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_div_fixup_f16 v5, |v1|, v2, v3 ; encoding: [0x05,0x01,0xef,0xd1,0x01,0x05,0x0e,0x04] v_div_fixup_f16 v5, v1, v2, v3 clamp // GFX9: v_div_fixup_f16 v5, v1, v2, v3 clamp ; encoding: [0x05,0x80,0x07,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_div_fixup_f16 v5, v1, v2, v3 clamp ; encoding: [0x05,0x80,0xef,0xd1,0x01,0x05,0x0e,0x04] v_div_fixup_f16 v5, v1, v2, v3 op_sel:[1,0,0,0] // GFX9: v_div_fixup_f16 v5, v1, v2, v3 op_sel:[1,0,0,0] ; encoding: [0x05,0x08,0x07,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_div_fixup_f16 v5, v1, v2, v3 op_sel:[0,0,1,0] // GFX9: v_div_fixup_f16 v5, v1, v2, v3 op_sel:[0,0,1,0] ; encoding: [0x05,0x20,0x07,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_div_fixup_f16 v5, v1, v2, v3 op_sel:[0,0,0,1] // GFX9: v_div_fixup_f16 v5, v1, v2, v3 op_sel:[0,0,0,1] ; encoding: [0x05,0x40,0x07,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_div_fixup_legacy_f16_e64 v5, 0.5, v2, v3 // GFX9: v_div_fixup_legacy_f16 v5, 0.5, v2, v3 ; encoding: [0x05,0x00,0xef,0xd1,0xf0,0x04,0x0e,0x04] @@ -345,64 +358,72 @@ v_mad_f16_e64 v5, 0.5, v2, v3 // GFX9: v_mad_f16 v5, 0.5, v2, v3 ; encoding: [0x05,0x00,0x03,0xd2,0xf0,0x04,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_f16 v5, 0.5, v2, v3 ; encoding: [0x05,0x00,0xea,0xd1,0xf0,0x04,0x0e,0x04] v_mad_f16 v5, v1, 0.5, v3 // GFX9: v_mad_f16 v5, v1, 0.5, v3 ; encoding: [0x05,0x00,0x03,0xd2,0x01,0xe1,0x0d,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_f16 v5, v1, 0.5, v3 ; encoding: [0x05,0x00,0xea,0xd1,0x01,0xe1,0x0d,0x04] v_mad_f16 v5, v1, v2, 0.5 // GFX9: v_mad_f16 v5, v1, v2, 0.5 ; encoding: [0x05,0x00,0x03,0xd2,0x01,0x05,0xc2,0x03] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_f16 v5, v1, v2, 0.5 ; encoding: [0x05,0x00,0xea,0xd1,0x01,0x05,0xc2,0x03] v_mad_f16 v5, v1, v2, -v3 // GFX9: v_mad_f16 v5, v1, v2, -v3 ; encoding: [0x05,0x00,0x03,0xd2,0x01,0x05,0x0e,0x84] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_f16 v5, v1, v2, -v3 ; encoding: [0x05,0x00,0xea,0xd1,0x01,0x05,0x0e,0x84] v_mad_f16 v5, v1, v2, |v3| // GFX9: v_mad_f16 v5, v1, v2, |v3| ; encoding: [0x05,0x04,0x03,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_f16 v5, v1, v2, |v3| ; encoding: [0x05,0x04,0xea,0xd1,0x01,0x05,0x0e,0x04] v_mad_f16 v5, v1, v2, v3 op_sel:[0,0,0,0] // GFX9: v_mad_f16 v5, v1, v2, v3 ; encoding: [0x05,0x00,0x03,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_mad_f16 v5, v1, v2, v3 op_sel:[1,0,0,0] // GFX9: v_mad_f16 v5, v1, v2, v3 op_sel:[1,0,0,0] ; encoding: [0x05,0x08,0x03,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_mad_f16 v5, v1, v2, v3 op_sel:[0,1,0,0] // GFX9: v_mad_f16 v5, v1, v2, v3 op_sel:[0,1,0,0] ; encoding: [0x05,0x10,0x03,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_mad_f16 v5, v1, v2, v3 op_sel:[0,0,1,0] // GFX9: v_mad_f16 v5, v1, v2, v3 op_sel:[0,0,1,0] ; encoding: [0x05,0x20,0x03,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_mad_f16 v5, v1, v2, v3 op_sel:[0,0,0,1] // GFX9: v_mad_f16 v5, v1, v2, v3 op_sel:[0,0,0,1] ; encoding: [0x05,0x40,0x03,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_mad_f16 v5, v1, v2, v3 op_sel:[1,1,1,1] // GFX9: v_mad_f16 v5, v1, v2, v3 op_sel:[1,1,1,1] ; encoding: [0x05,0x78,0x03,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_mad_f16 v5, v1, v2, v3 clamp // GFX9: v_mad_f16 v5, v1, v2, v3 clamp ; encoding: [0x05,0x80,0x03,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_f16 v5, v1, v2, v3 clamp ; encoding: [0x05,0x80,0xea,0xd1,0x01,0x05,0x0e,0x04] v_mad_i16_e64 v5, 0, v2, v3 // GFX9: v_mad_i16 v5, 0, v2, v3 ; encoding: [0x05,0x00,0x05,0xd2,0x80,0x04,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_i16 v5, 0, v2, v3 ; encoding: [0x05,0x00,0xec,0xd1,0x80,0x04,0x0e,0x04] v_mad_i16 v5, v1, -1, v3 // GFX9: v_mad_i16 v5, v1, -1, v3 ; encoding: [0x05,0x00,0x05,0xd2,0x01,0x83,0x0d,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_i16 v5, v1, -1, v3 ; encoding: [0x05,0x00,0xec,0xd1,0x01,0x83,0x0d,0x04] v_mad_i16 v5, v1, v2, -4.0 // NOGFX9: error: invalid literal operand @@ -412,16 +433,17 @@ v_mad_i16 v5, v1, v2, v3 clamp // GFX9: v_mad_i16 v5, v1, v2, v3 clamp ; encoding: [0x05,0x80,0x05,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_i16 v5, v1, v2, v3 clamp ; encoding: [0x05,0x80,0xec,0xd1,0x01,0x05,0x0e,0x04] v_mad_i16 v5, v1, v2, v3 op_sel:[0,0,0,1] // GFX9: v_mad_i16 v5, v1, v2, v3 op_sel:[0,0,0,1] ; encoding: [0x05,0x40,0x05,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_mad_i16 v5, v1, v2, v3 op_sel:[1,1,1,1] // GFX9: v_mad_i16 v5, v1, v2, v3 op_sel:[1,1,1,1] ; encoding: [0x05,0x78,0x05,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_mad_legacy_f16_e64 v5, 0.5, v2, v3 // GFX9: v_mad_legacy_f16 v5, 0.5, v2, v3 ; encoding: [0x05,0x00,0xea,0xd1,0xf0,0x04,0x0e,0x04] @@ -482,10 +504,12 @@ v_mad_u16_e64 v5, 0, v2, v3 // GFX9: v_mad_u16 v5, 0, v2, v3 ; encoding: [0x05,0x00,0x04,0xd2,0x80,0x04,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_u16 v5, 0, v2, v3 ; encoding: [0x05,0x00,0xeb,0xd1,0x80,0x04,0x0e,0x04] v_mad_u16 v5, v1, -1, v3 // GFX9: v_mad_u16 v5, v1, -1, v3 ; encoding: [0x05,0x00,0x04,0xd2,0x01,0x83,0x0d,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_u16 v5, v1, -1, v3 ; encoding: [0x05,0x00,0xeb,0xd1,0x01,0x83,0x0d,0x04] v_mad_u16 v5, v1, v2, -4.0 // NOGFX9: error: invalid literal operand @@ -495,45 +519,52 @@ v_mad_u16 v5, v1, v2, v3 clamp // GFX9: v_mad_u16 v5, v1, v2, v3 clamp ; encoding: [0x05,0x80,0x04,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_mad_u16 v5, v1, v2, v3 clamp ; encoding: [0x05,0x80,0xeb,0xd1,0x01,0x05,0x0e,0x04] v_mad_u16 v5, v1, v2, v3 op_sel:[1,0,0,0] // GFX9: v_mad_u16 v5, v1, v2, v3 op_sel:[1,0,0,0] ; encoding: [0x05,0x08,0x04,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_mad_u16 v5, v1, v2, v3 op_sel:[0,0,0,1] // GFX9: v_mad_u16 v5, v1, v2, v3 op_sel:[0,0,0,1] ; encoding: [0x05,0x40,0x04,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_mad_u16 v5, v1, v2, v3 op_sel:[1,1,1,1] // GFX9: v_mad_u16 v5, v1, v2, v3 op_sel:[1,1,1,1] ; encoding: [0x05,0x78,0x04,0xd2,0x01,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode v_interp_p2_f16 v5, v2, attr0.x, v3 // GFX9: v_interp_p2_f16 v5, v2, attr0.x, v3 ; encoding: [0x05,0x00,0x77,0xd2,0x00,0x04,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_interp_p2_f16 v5, v2, attr0.x, v3 ; encoding: [0x05,0x00,0x76,0xd2,0x00,0x04,0x0e,0x04] v_interp_p2_f16 v5, -v2, attr0.x, v3 // GFX9: v_interp_p2_f16 v5, -v2, attr0.x, v3 ; encoding: [0x05,0x00,0x77,0xd2,0x00,0x04,0x0e,0x44] // NOSICI: error: instruction not supported on this GPU +// VI: v_interp_p2_f16 v5, -v2, attr0.x, v3 ; encoding: [0x05,0x00,0x76,0xd2,0x00,0x04,0x0e,0x44] v_interp_p2_f16 v5, v2, attr0.x, |v3| // GFX9: v_interp_p2_f16 v5, v2, attr0.x, |v3| ; encoding: [0x05,0x04,0x77,0xd2,0x00,0x04,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_interp_p2_f16 v5, v2, attr0.x, |v3| ; encoding: [0x05,0x04,0x76,0xd2,0x00,0x04,0x0e,0x04] v_interp_p2_f16 v5, v2, attr0.w, v3 // GFX9: v_interp_p2_f16 v5, v2, attr0.w, v3 ; encoding: [0x05,0x00,0x77,0xd2,0xc0,0x04,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_interp_p2_f16 v5, v2, attr0.w, v3 ; encoding: [0x05,0x00,0x76,0xd2,0xc0,0x04,0x0e,0x04] v_interp_p2_f16 v5, v2, attr0.x, v3 high // GFX9: v_interp_p2_f16 v5, v2, attr0.x, v3 high ; encoding: [0x05,0x00,0x77,0xd2,0x00,0x05,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_interp_p2_f16 v5, v2, attr0.x, v3 high ; encoding: [0x05,0x00,0x76,0xd2,0x00,0x05,0x0e,0x04] v_interp_p2_f16 v5, v2, attr0.x, v3 clamp // GFX9: v_interp_p2_f16 v5, v2, attr0.x, v3 clamp ; encoding: [0x05,0x80,0x77,0xd2,0x00,0x04,0x0e,0x04] // NOSICI: error: instruction not supported on this GPU +// VI: v_interp_p2_f16 v5, v2, attr0.x, v3 clamp ; encoding: [0x05,0x80,0x76,0xd2,0x00,0x04,0x0e,0x04] v_interp_p2_legacy_f16 v5, v2, attr31.x, v3 // GFX9: v_interp_p2_legacy_f16 v5, v2, attr31.x, v3 ; encoding: [0x05,0x00,0x76,0xd2,0x1f,0x04,0x0e,0x04] @@ -648,18 +679,22 @@ v_add_co_u32 v84, vcc, v13, v31 // GFX9: v_add_co_u32_e32 v84, vcc, v13, v31 ; encoding: [0x0d,0x3f,0xa8,0x32] // NOVI: error: instruction not supported on this GPU +// SICI: v_add_i32_e64 v84, vcc, v13, v31 ; encoding: [0x54,0x6a,0x4a,0xd2,0x0d,0x3f,0x02,0x00] v_sub_co_u32 v84, vcc, v13, v31 // GFX9: v_sub_co_u32_e32 v84, vcc, v13, v31 ; encoding: [0x0d,0x3f,0xa8,0x34] // NOVI: error: instruction not supported on this GPU +// SICI: v_sub_i32_e64 v84, vcc, v13, v31 ; encoding: [0x54,0x6a,0x4c,0xd2,0x0d,0x3f,0x02,0x00] v_subrev_co_u32 v84, vcc, v13, v31 // GFX9: v_subrev_co_u32_e32 v84, vcc, v13, v31 ; encoding: [0x0d,0x3f,0xa8,0x36] // NOVI: error: instruction not supported on this GPU +// SICI: v_subrev_i32_e64 v84, vcc, v13, v31 ; encoding: [0x54,0x6a,0x4e,0xd2,0x0d,0x3f,0x02,0x00] v_add_i32 v1, v2, v3 // GFX9: v_add_i32 v1, v2, v3 ; encoding: [0x01,0x00,0x9c,0xd2,0x02,0x07,0x02,0x00] -// NOGCN: error: instruction not supported on this GPU +// NOSICI: error: operands are not valid for this GPU or mode +// NOVI: error: instruction not supported on this GPU v_add_i32 v1, v2, v3 clamp // GFX9: v_add_i32 v1, v2, v3 clamp ; encoding: [0x01,0x80,0x9c,0xd2,0x02,0x07,0x02,0x00] @@ -668,7 +703,8 @@ v_sub_i32 v1, v2, v3 // GFX9: v_sub_i32 v1, v2, v3 ; encoding: [0x01,0x00,0x9d,0xd2,0x02,0x07,0x02,0x00] -// NOGCN: error: instruction not supported on this GPU +// NOSICI: error: operands are not valid for this GPU or mode +// NOVI: error: instruction not supported on this GPU v_sub_i32 v1, v2, v3 clamp // GFX9: v_sub_i32 v1, v2, v3 clamp ; encoding: [0x01,0x80,0x9d,0xd2,0x02,0x07,0x02,0x00] diff --git a/llvm/test/MC/AMDGPU/vop3-literal.s b/llvm/test/MC/AMDGPU/vop3-literal.s --- a/llvm/test/MC/AMDGPU/vop3-literal.s +++ b/llvm/test/MC/AMDGPU/vop3-literal.s @@ -273,43 +273,43 @@ v_cmpx_class_f32_e64 0xaf123456, v2 // GFX10: v_cmpx_class_f32_e64 0xaf123456, v2 ; encoding: [0x00,0x00,0x98,0xd4,0xff,0x04,0x02,0x00,0x56,0x34,0x12,0xaf] -// GFX9-ERR: error: instruction not supported on this GPU +// GFX9-ERR: error: operands are not valid for this GPU or mode v_cmpx_class_f32_e64 v1, 0xaf123456 // GFX10: v_cmpx_class_f32_e64 v1, 0xaf123456 ; encoding: [0x00,0x00,0x98,0xd4,0x01,0xff,0x01,0x00,0x56,0x34,0x12,0xaf] -// GFX9-ERR: error: instruction not supported on this GPU +// GFX9-ERR: error: operands are not valid for this GPU or mode v_cmpx_class_f32_e64 0xaf123456, 0xaf123456 // GFX10: v_cmpx_class_f32_e64 0xaf123456, 0xaf123456 ; encoding: [0x00,0x00,0x98,0xd4,0xff,0xfe,0x01,0x00,0x56,0x34,0x12,0xaf] -// GFX9-ERR: error: instruction not supported on this GPU +// GFX9-ERR: error: operands are not valid for this GPU or mode v_cmpx_class_f32_e64 0xaf123456, 0xaf123455 // GFX10-ERR: error: invalid literal operand -// GFX9-ERR: error: instruction not supported on this GPU +// GFX9-ERR: error: operands are not valid for this GPU or mode v_cmpx_lt_i16_e64 v1, 0x3456 // GFX10: v_cmpx_lt_i16_e64 v1, 0x3456 ; encoding: [0x00,0x00,0x99,0xd4,0x01,0xff,0x01,0x00,0x56,0x34,0x00,0x00] -// GFX9-ERR: error: instruction not supported on this GPU +// GFX9-ERR: error: operands are not valid for this GPU or mode v_cmpx_lt_i16_e64 0x3456, v2 // GFX10: v_cmpx_lt_i16_e64 0x3456, v2 ; encoding: [0x00,0x00,0x99,0xd4,0xff,0x04,0x02,0x00,0x56,0x34,0x00,0x00] -// GFX9-ERR: error: instruction not supported on this GPU +// GFX9-ERR: error: operands are not valid for this GPU or mode v_cmpx_lt_i16_e64 0x3456, 0x3456 // GFX10: v_cmpx_lt_i16_e64 0x3456, 0x3456 ; encoding: [0x00,0x00,0x99,0xd4,0xff,0xfe,0x01,0x00,0x56,0x34,0x00,0x00] -// GFX9-ERR: error: instruction not supported on this GPU +// GFX9-ERR: error: operands are not valid for this GPU or mode v_cmpx_f_i64_e64 0xaf123456, v[2:3] // GFX10: v_cmpx_f_i64_e64 0xaf123456, v[2:3] ; encoding: [0x00,0x00,0xb0,0xd4,0xff,0x04,0x02,0x00,0x56,0x34,0x12,0xaf] -// GFX9-ERR: error: instruction not supported on this GPU +// GFX9-ERR: error: operands are not valid for this GPU or mode v_cmpx_f_i64_e64 v[1:2], 0x3f717273 // GFX10: v_cmpx_f_i64_e64 v[1:2], 0x3f717273 ; encoding: [0x00,0x00,0xb0,0xd4,0x01,0xff,0x01,0x00,0x73,0x72,0x71,0x3f] -// GFX9-ERR: error: instruction not supported on this GPU +// GFX9-ERR: error: operands are not valid for this GPU or mode v_cmpx_f_i64_e64 0x3f717273, 0x3f717273 // GFX10: v_cmpx_f_i64_e64 0x3f717273, 0x3f717273 ; encoding: [0x00,0x00,0xb0,0xd4,0xff,0xfe,0x01,0x00,0x73,0x72,0x71,0x3f] -// GFX9-ERR: error: instruction not supported on this GPU +// GFX9-ERR: error: operands are not valid for this GPU or mode v_lshlrev_b64 v[5:6], 0xaf123456, v[2:3] // GFX10: v_lshlrev_b64 v[5:6], 0xaf123456, v[2:3] ; encoding: [0x05,0x00,0xff,0xd6,0xff,0x04,0x02,0x00,0x56,0x34,0x12,0xaf] diff --git a/llvm/test/MC/AMDGPU/vop_sdwa.s b/llvm/test/MC/AMDGPU/vop_sdwa.s --- a/llvm/test/MC/AMDGPU/vop_sdwa.s +++ b/llvm/test/MC/AMDGPU/vop_sdwa.s @@ -524,17 +524,17 @@ v_ldexp_f16 v1, v2, v3 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 // NOSICI: error: instruction not supported on this GPU -// NOGFX9: error: instruction not supported on this GPU +// NOGFX9: error: operands are not valid for this GPU or mode // VI: v_add_u32_sdwa v1, vcc, v2, v3 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 ; encoding: [0xf9,0x06,0x02,0x32,0x02,0x06,0x05,0x02] v_add_u32_sdwa v1, vcc, v2, v3 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 // NOSICI: error: instruction not supported on this GPU -// NOGFX9: error: instruction not supported on this GPU +// NOGFX9: error: operands are not valid for this GPU or mode // VI: v_sub_u32_sdwa v1, vcc, v2, v3 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 ; encoding: [0xf9,0x06,0x02,0x34,0x02,0x06,0x05,0x02] v_sub_u32_sdwa v1, vcc, v2, v3 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 // NOSICI: error: instruction not supported on this GPU -// NOGFX9: error: instruction not supported on this GPU +// NOGFX9: error: operands are not valid for this GPU or mode // VI: v_subrev_u32_sdwa v1, vcc, v2, v3 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 ; encoding: [0xf9,0x06,0x02,0x36,0x02,0x06,0x05,0x02] v_subrev_u32_sdwa v1, vcc, v2, v3 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 @@ -685,22 +685,22 @@ // NOSICI: error: invalid operand for instruction // VI: v_mac_f32_sdwa v3, v4, v5 dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:WORD_1 src1_sel:DWORD ; encoding: [0xf9,0x0a,0x06,0x2c,0x04,0x16,0x05,0x06] -// NOGFX9: error: instruction not supported on this GPU +// NOGFX9: error: operands are not valid for this GPU or mode v_mac_f32 v3, v4, v5 dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:WORD_1 // NOSICI: error: invalid operand for instruction // VI: v_mac_f32_sdwa v15, v99, v194 dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:WORD_0 src1_sel:DWORD ; encoding: [0xf9,0x84,0x1f,0x2c,0x63,0x0e,0x04,0x06] -// NOGFX9: error: instruction not supported on this GPU +// NOGFX9: error: operands are not valid for this GPU or mode v_mac_f32 v15, v99, v194 dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:WORD_0 // NOSICI: error: invalid operand for instruction // NOVI: error: invalid operand for instruction -// NOGFX9: error: instruction not supported on this GPU +// NOGFX9: error: operands are not valid for this GPU or mode v_mac_f32 v194, v13, v1 dst_sel:BYTE_0 dst_unused:UNUSED_SEXT src0_sel:BYTE_3 src1_sel:BYTE_2 // NOSICI: error: instruction not supported on this GPU // VI: v_mac_f16_sdwa v1, v2, v3 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 ; encoding: [0xf9,0x06,0x02,0x46,0x02,0x06,0x05,0x02] -// NOGFX9: error: instruction not supported on this GPU +// NOGFX9: error: operands are not valid for this GPU or mode v_mac_f16 v1, v2, v3 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 //===----------------------------------------------------------------------===// @@ -763,12 +763,12 @@ v_cmp_eq_f32_sdwa ttmp[12:13], v1, v2 src0_sel:WORD_1 src1_sel:BYTE_2 // NOSICI: error: sdwa variant of this instruction is not supported -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode // NOGFX9: error: register not available on this GPU v_cmp_eq_f32_sdwa tba, v1, v2 src0_sel:WORD_1 src1_sel:BYTE_2 // NOSICI: error: sdwa variant of this instruction is not supported -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode // NOGFX9: error: register not available on this GPU v_cmp_eq_f32_sdwa tma, v1, v2 src0_sel:WORD_1 src1_sel:BYTE_2 @@ -1042,12 +1042,12 @@ //===----------------------------------------------------------------------===// // NOSICI: error: sdwa variant of this instruction is not supported -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode // GFX9: v_cmp_eq_f32_sdwa s[2:3], v1, v2 src0_sel:WORD_1 src1_sel:BYTE_2 ; encoding: [0xf9,0x04,0x84,0x7c,0x01,0x82,0x05,0x02] v_cmp_eq_f32_sdwa s[2:3], v1, v2 src0_sel:WORD_1 src1_sel:BYTE_2 // NOSICI: error: sdwa variant of this instruction is not supported -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode // GFX9: v_cmp_eq_f32_sdwa exec, v1, v2 src0_sel:WORD_1 src1_sel:BYTE_2 ; encoding: [0xf9,0x04,0x84,0x7c,0x01,0xfe,0x05,0x02] v_cmp_eq_f32_sdwa exec, v1, v2 src0_sel:WORD_1 src1_sel:BYTE_2 @@ -1061,22 +1061,22 @@ //===----------------------------------------------------------------------===// // NOSICI: error: invalid operand for instruction -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode // GFX9: v_trunc_f32_sdwa v1, v2 mul:2 dst_sel:BYTE_0 dst_unused:UNUSED_PRESERVE src0_sel:DWORD ; encoding: [0xf9,0x38,0x02,0x7e,0x02,0x50,0x06,0x00] v_trunc_f32 v1, v2 mul:2 dst_sel:BYTE_0 dst_unused:UNUSED_PRESERVE src0_sel:DWORD // NOSICI: error: invalid operand for instruction -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode // GFX9: v_trunc_f32_sdwa v1, v2 clamp div:2 dst_sel:BYTE_0 dst_unused:UNUSED_PRESERVE src0_sel:DWORD ; encoding: [0xf9,0x38,0x02,0x7e,0x02,0xf0,0x06,0x00] v_trunc_f32 v1, v2 clamp div:2 dst_sel:BYTE_0 dst_unused:UNUSED_PRESERVE src0_sel:DWORD // NOSICI: error: invalid operand for instruction -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode // GFX9: v_add_f32_sdwa v0, v0, v0 mul:2 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 ; encoding: [0xf9,0x00,0x00,0x02,0x00,0x46,0x05,0x02] v_add_f32 v0, v0, v0 mul:2 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 // NOSICI: error: invalid operand for instruction -// NOVI: error: instruction not supported on this GPU +// NOVI: error: operands are not valid for this GPU or mode // GFX9: v_add_f32_sdwa v0, v0, v0 clamp div:2 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 ; encoding: [0xf9,0x00,0x00,0x02,0x00,0xe6,0x05,0x02] v_add_f32 v0, v0, v0 clamp div:2 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:BYTE_2 diff --git a/llvm/test/MC/AMDGPU/wave32.s b/llvm/test/MC/AMDGPU/wave32.s --- a/llvm/test/MC/AMDGPU/wave32.s +++ b/llvm/test/MC/AMDGPU/wave32.s @@ -9,10 +9,10 @@ v_cmp_ge_i32_e32 vcc_lo, s0, v1 // GFX1032: v_cmp_ge_i32_e32 vcc_lo, s0, v1 ; encoding: [0x00,0x02,0x0c,0x7d] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_cmp_ge_i32_e32 vcc, s0, v2 -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_cmp_ge_i32_e32 vcc, s0, v2 ; encoding: [0x00,0x04,0x0c,0x7d] v_cmp_le_f16_sdwa s0, v3, v4 src0_sel:WORD_1 src1_sel:DWORD @@ -25,10 +25,10 @@ v_cmp_class_f32_e32 vcc_lo, s0, v0 // GFX1032: v_cmp_class_f32_e32 vcc_lo, s0, v0 ; encoding: [0x00,0x00,0x10,0x7d] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_cmp_class_f32_e32 vcc, s0, v0 -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_cmp_class_f32_e32 vcc, s0, v0 ; encoding: [0x00,0x00,0x10,0x7d] // TODO-GFX10: The following encoding does not match SP3's encoding, which is: @@ -40,7 +40,7 @@ // TODO-GFX10: The following encoding does not match SP3's encoding, which is: // [0xf9,0x04,0x1e,0x7d,0x01,0x06,0x06,0x06] v_cmp_class_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_cmp_class_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD ; encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x00,0x06,0x06] v_cmp_class_f16_sdwa s0, v1, v2 src0_sel:DWORD src1_sel:DWORD @@ -57,10 +57,10 @@ v_cndmask_b32_e32 v1, v2, v3, vcc_lo // GFX1032: v_cndmask_b32_e32 v1, v2, v3, vcc_lo ; encoding: [0x02,0x07,0x02,0x02] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_cndmask_b32_e32 v1, v2, v3, vcc -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_cndmask_b32_e32 v1, v2, v3, vcc ; encoding: [0x02,0x07,0x02,0x02] v_cndmask_b32_sdwa v5, v1, v2 dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD @@ -69,10 +69,10 @@ v_cndmask_b32_sdwa v5, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD // GFX1032: v_cndmask_b32_sdwa v5, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD ; encoding: [0xf9,0x04,0x0a,0x02,0x01,0x16,0x06,0x06] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_cndmask_b32_sdwa v5, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_cndmask_b32_sdwa v5, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD ; encoding: [0xf9,0x04,0x0a,0x02,0x01,0x16,0x06,0x06] v_cndmask_b32_dpp v5, v1, v2 quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 @@ -81,10 +81,10 @@ v_cndmask_b32_dpp v5, v1, v2, vcc_lo quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 // GFX1032: v_cndmask_b32_dpp v5, v1, v2, vcc_lo quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 ; encoding: [0xfa,0x04,0x0a,0x02,0x01,0xe4,0x00,0x00] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_cndmask_b32_dpp v5, v1, v2, vcc quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_cndmask_b32_dpp v5, v1, v2, vcc quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 ; encoding: [0xfa,0x04,0x0a,0x02,0x01,0xe4,0x00,0x00] v_add_co_u32_e32 v2, vcc_lo, s0, v2 @@ -97,10 +97,10 @@ v_add_co_ci_u32_e32 v3, vcc_lo, v3, v4, vcc_lo // GFX1032: v_add_co_ci_u32_e32 v3, vcc_lo, v3, v4, vcc_lo ; encoding: [0x03,0x09,0x06,0x50] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_add_co_ci_u32_e32 v3, vcc, v3, v4, vcc -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_add_co_ci_u32_e32 v3, vcc, v3, v4, vcc ; encoding: [0x03,0x09,0x06,0x50] v_add_co_ci_u32_e32 v3, v3, v4 @@ -125,10 +125,10 @@ v_sub_co_ci_u32_e32 v3, vcc_lo, v3, v4, vcc_lo // GFX1032: v_sub_co_ci_u32_e32 v3, vcc_lo, v3, v4, vcc_lo ; encoding: [0x03,0x09,0x06,0x52] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_e32 v3, vcc, v3, v4, vcc -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_sub_co_ci_u32_e32 v3, vcc, v3, v4, vcc ; encoding: [0x03,0x09,0x06,0x52] v_sub_co_ci_u32_e32 v3, v3, v4 @@ -137,10 +137,10 @@ v_subrev_co_ci_u32_e32 v1, vcc_lo, 0, v1, vcc_lo // GFX1032: v_subrev_co_ci_u32_e32 v1, vcc_lo, 0, v1, vcc_lo ; encoding: [0x80,0x02,0x02,0x54] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_e32 v1, vcc, 0, v1, vcc -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_subrev_co_ci_u32_e32 v1, vcc, 0, v1, vcc ; encoding: [0x80,0x02,0x02,0x54] v_subrev_co_ci_u32_e32 v1, 0, v1 @@ -161,10 +161,10 @@ v_add_co_ci_u32_sdwa v1, vcc_lo, v1, v4, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD // GFX1032: v_add_co_ci_u32_sdwa v1, vcc_lo, v1, v4, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD ; encoding: [0xf9,0x08,0x02,0x50,0x01,0x06,0x00,0x06] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v1, vcc, v1, v4, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_add_co_ci_u32_sdwa v1, vcc, v1, v4, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD ; encoding: [0xf9,0x08,0x02,0x50,0x01,0x06,0x00,0x06] v_add_co_ci_u32_sdwa v1, v1, v4 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD @@ -197,10 +197,10 @@ v_sub_co_ci_u32_sdwa v1, vcc_lo, v1, v4, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD // GFX1032: v_sub_co_ci_u32_sdwa v1, vcc_lo, v1, v4, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD ; encoding: [0xf9,0x08,0x02,0x52,0x01,0x06,0x00,0x06] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_sdwa v1, vcc, v1, v4, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_sub_co_ci_u32_sdwa v1, vcc, v1, v4, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD ; encoding: [0xf9,0x08,0x02,0x52,0x01,0x06,0x00,0x06] v_sub_co_ci_u32_sdwa v1, v1, v4 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD @@ -209,10 +209,10 @@ v_subrev_co_ci_u32_sdwa v1, vcc_lo, v1, v4, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD // GFX1032: v_subrev_co_ci_u32_sdwa v1, vcc_lo, v1, v4, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD ; encoding: [0xf9,0x08,0x02,0x54,0x01,0x06,0x00,0x06] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_sdwa v1, vcc, v1, v4, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_subrev_co_ci_u32_sdwa v1, vcc, v1, v4, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD ; encoding: [0xf9,0x08,0x02,0x54,0x01,0x06,0x00,0x06] v_subrev_co_ci_u32_sdwa v1, v1, v4 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD @@ -225,10 +225,10 @@ v_add_co_ci_u32_sdwa v1, vcc_lo, sext(v1), sext(v4), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD // GFX1032: v_add_co_ci_u32_sdwa v1, vcc_lo, sext(v1), sext(v4), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD ; encoding: [0xf9,0x08,0x02,0x50,0x01,0x06,0x08,0x0e] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_add_co_ci_u32_sdwa v1, vcc, sext(v1), sext(v4), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_add_co_ci_u32_sdwa v1, vcc, sext(v1), sext(v4), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD ; encoding: [0xf9,0x08,0x02,0x50,0x01,0x06,0x08,0x0e] v_add_co_u32_dpp v5, v1, v2 quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 @@ -249,10 +249,10 @@ v_add_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 // GFX1032: v_add_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 ; encoding: [0xfa,0x04,0x0a,0x50,0x01,0xe4,0x00,0x00] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_add_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_add_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 ; encoding: [0xfa,0x04,0x0a,0x50,0x01,0xe4,0x00,0x00] v_sub_co_u32_dpp v5, v1, v2 quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 @@ -269,10 +269,10 @@ v_sub_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 // GFX1032: v_sub_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 ; encoding: [0xfa,0x04,0x0a,0x52,0x01,0xe4,0x00,0x00] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_sub_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_sub_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 ; encoding: [0xfa,0x04,0x0a,0x52,0x01,0xe4,0x00,0x00] v_subrev_co_u32_dpp v5, v1, v2 quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 @@ -289,10 +289,10 @@ v_subrev_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 // GFX1032: v_subrev_co_ci_u32_dpp v5, vcc_lo, v1, v2, vcc_lo quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 ; encoding: [0xfa,0x04,0x0a,0x54,0x01,0xe4,0x00,0x00] -// GFX1064-ERR: :[[@LINE-2]]:1: error: instruction not supported on this GPU +// GFX1064-ERR: :[[@LINE-2]]:1: error: operands are not valid for this GPU or mode v_subrev_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 -// GFX1032-ERR: :[[@LINE-1]]:1: error: instruction not supported on this GPU +// GFX1032-ERR: :[[@LINE-1]]:1: error: operands are not valid for this GPU or mode // GFX1064: v_subrev_co_ci_u32_dpp v5, vcc, v1, v2, vcc quad_perm:[0,1,2,3] row_mask:0x0 bank_mask:0x0 ; encoding: [0xfa,0x04,0x0a,0x54,0x01,0xe4,0x00,0x00] v_add_co_u32 v0, s0, v0, v2