[AMDGPU] Check for immediate SrcC in mfma in AsmParser
[llvm-core.git] / test / MC / AMDGPU / gfx10-constant-bus.s
blob2fc844582e51fa72332ac8b29bd785ff345eeb32
1 // RUN: not llvm-mc -arch=amdgcn -mcpu=gfx1010 -show-encoding %s 2>&1 | FileCheck -check-prefix=GFX10 %s
2 // RUN: not llvm-mc -arch=amdgcn -mcpu=gfx1010 -show-encoding %s 2>&1 | FileCheck -check-prefix=GFX10-ERR %s
4 //-----------------------------------------------------------------------------------------
5 // On GFX10 we can use two scalar operands
7 v_add_f32 v0, s0, s1
8 // GFX10: v_add_f32_e64 v0, s0, s1 ; encoding: [0x00,0x00,0x03,0xd5,0x00,0x02,0x00,0x00]
10 v_madak_f32 v0, s0, v1, 42.42
11 // GFX10: v_madak_f32 v0, s0, v1, 0x4229ae14 ; encoding: [0x00,0x02,0x00,0x42,0x14,0xae,0x29,0x42]
13 v_med3_f32 v0, s0, s0, s1
14 // GFX10: v_med3_f32 v0, s0, s0, s1 ; encoding: [0x00,0x00,0x57,0xd5,0x00,0x00,0x04,0x00]
16 //-----------------------------------------------------------------------------------------
17 // v_div_fmas implicitly reads VCC, so only one scalar operand is possible
19 v_div_fmas_f32 v5, s3, s3, s3
20 // GFX10: v_div_fmas_f32 v5, s3, s3, s3 ; encoding: [0x05,0x00,0x6f,0xd5,0x03,0x06,0x0c,0x00]
22 v_div_fmas_f32 v5, s3, s3, s2
23 // GFX10-ERR: error: invalid operand (violates constant bus restrictions)
25 v_div_fmas_f32 v5, s3, 0x123, v3
26 // GFX10-ERR: error: invalid operand (violates constant bus restrictions)
28 v_div_fmas_f64 v[5:6], 0x12345678, 0x12345678, 0x12345678
29 // GFX10: v_div_fmas_f64 v[5:6], 0x12345678, 0x12345678, 0x12345678 ; encoding: [0x05,0x00,0x70,0xd5,0xff,0xfe,0xfd,0x03,0x78,0x56,0x34,0x12]
31 v_div_fmas_f64 v[5:6], v[1:2], s[2:3], v[3:4]
32 // GFX10: v_div_fmas_f64 v[5:6], v[1:2], s[2:3], v[3:4] ; encoding: [0x05,0x00,0x70,0xd5,0x01,0x05,0x0c,0x04]
34 v_div_fmas_f64 v[5:6], v[1:2], s[2:3], 0x123456
35 // GFX10-ERR: error: invalid operand (violates constant bus restrictions)
37 //-----------------------------------------------------------------------------------------
38 // v_mad_u64_u32 has operands of different sizes.
39 // When these operands are literals, they are counted as 2 scalar values even if literals are identical.
41 v_mad_u64_u32 v[5:6], s12, v1, 0x12345678, 0x12345678
42 // GFX10: v_mad_u64_u32 v[5:6], s12, v1, 0x12345678, 0x12345678 ; encoding: [0x05,0x0c,0x76,0xd5,0x01,0xff,0xfd,0x03,0x78,0x56,0x34,0x12]
44 v_mad_u64_u32 v[5:6], s12, s1, 0x12345678, 0x12345678
45 // GFX10-ERR: error: invalid operand (violates constant bus restrictions)