/* * Copyright © 2020 Valve Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. * */ #include "helpers.h" using namespace aco; BEGIN_TEST(optimize.neg) for (unsigned i = GFX9; i <= GFX10; i++) { //>> v1: %a, v1: %b, s1: %c, s1: %d, s2: %_:exec = p_startpgm if (!setup_cs("v1 v1 s1 s1", (chip_class)i)) continue; //! v1: %res0 = v_mul_f32 %a, -%b //! p_unit_test 0, %res0 Temp neg_b = bld.vop2(aco_opcode::v_xor_b32, bld.def(v1), Operand(0x80000000u), inputs[1]); writeout(0, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), inputs[0], neg_b)); //! v1: %neg_a = v_xor_b32 0x80000000, %a //~gfx[6-9]! v1: %res1 = v_mul_f32 0x123456, %neg_a //~gfx10! v1: %res1 = v_mul_f32 0x123456, -%a //! p_unit_test 1, %res1 Temp neg_a = bld.vop2(aco_opcode::v_xor_b32, bld.def(v1), Operand(0x80000000u), inputs[0]); writeout(1, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x123456u), neg_a)); //! v1: %res2 = v_mul_f32 %a, %b //! p_unit_test 2, %res2 Temp neg_neg_a = bld.vop2(aco_opcode::v_xor_b32, bld.def(v1), Operand(0x80000000u), neg_a); writeout(2, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), neg_neg_a, inputs[1])); /* we could optimize this case into just an abs(), but NIR already does this */ //! v1: %res3 = v_mul_f32 |%neg_a|, %b //! p_unit_test 3, %res3 Temp abs_neg_a = bld.vop2(aco_opcode::v_and_b32, bld.def(v1), Operand(0x7FFFFFFFu), neg_a); writeout(3, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), abs_neg_a, inputs[1])); //! v1: %res4 = v_mul_f32 -|%a|, %b //! p_unit_test 4, %res4 Temp abs_a = bld.vop2(aco_opcode::v_and_b32, bld.def(v1), Operand(0x7FFFFFFFu), inputs[0]); Temp neg_abs_a = bld.vop2(aco_opcode::v_xor_b32, bld.def(v1), Operand(0x80000000u), abs_a); writeout(4, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), neg_abs_a, inputs[1])); //! v1: %res5 = v_mul_f32 -%a, %b row_shl:1 bound_ctrl:1 //! p_unit_test 5, %res5 writeout(5, bld.vop2_dpp(aco_opcode::v_mul_f32, bld.def(v1), neg_a, inputs[1], dpp_row_sl(1))); //! v1: %res6 = v_subrev_f32 %a, %b //! p_unit_test 6, %res6 writeout(6, bld.vop2(aco_opcode::v_add_f32, bld.def(v1), neg_a, inputs[1])); //! v1: %res7 = v_sub_f32 %b, %a //! p_unit_test 7, %res7 writeout(7, bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[1], neg_a)); //! v1: %res8 = v_mul_f32 %a, -%c //! p_unit_test 8, %res8 Temp neg_c = bld.vop2(aco_opcode::v_xor_b32, bld.def(v1), Operand(0x80000000u), bld.copy(bld.def(v1), inputs[2])); writeout(8, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), inputs[0], neg_c)); finish_opt_test(); } END_TEST BEGIN_TEST(optimize.output_modifiers) //>> v1: %a, v1: %b, s2: %_:exec = p_startpgm if (!setup_cs("v1 v1", GFX9)) return; program->blocks[0].fp_mode.denorm16_64 = fp_denorm_flush; /* 32-bit modifiers */ //! v1: %res0 = v_add_f32 %a, %b *0.5 //! p_unit_test 0, %res0 Temp tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); writeout(0, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x3f000000u), tmp)); //! v1: %res1 = v_add_f32 %a, %b *2 //! p_unit_test 1, %res1 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); writeout(1, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x40000000u), tmp)); //! v1: %res2 = v_add_f32 %a, %b *4 //! p_unit_test 2, %res2 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); writeout(2, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x40800000u), tmp)); //! v1: %res3 = v_add_f32 %a, %b clamp //! p_unit_test 3, %res3 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); writeout(3, bld.vop3(aco_opcode::v_med3_f32, bld.def(v1), Operand(0u), Operand(0x3f800000u), tmp)); //! v1: %res4 = v_add_f32 %a, %b *2 clamp //! p_unit_test 4, %res4 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); tmp = bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x40000000u), tmp); writeout(4, bld.vop3(aco_opcode::v_med3_f32, bld.def(v1), Operand(0u), Operand(0x3f800000u), tmp)); /* 16-bit modifiers */ //! v2b: %res5 = v_add_f16 %a, %b *0.5 //! p_unit_test 5, %res5 tmp = bld.vop2(aco_opcode::v_add_f16, bld.def(v2b), inputs[0], inputs[1]); writeout(5, bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand((uint16_t)0x3800u), tmp)); //! v2b: %res6 = v_add_f16 %a, %b *2 //! p_unit_test 6, %res6 tmp = bld.vop2(aco_opcode::v_add_f16, bld.def(v2b), inputs[0], inputs[1]); writeout(6, bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand((uint16_t)0x4000u), tmp)); //! v2b: %res7 = v_add_f16 %a, %b *4 //! p_unit_test 7, %res7 tmp = bld.vop2(aco_opcode::v_add_f16, bld.def(v2b), inputs[0], inputs[1]); writeout(7, bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand((uint16_t)0x4400u), tmp)); //! v2b: %res8 = v_add_f16 %a, %b clamp //! p_unit_test 8, %res8 tmp = bld.vop2(aco_opcode::v_add_f16, bld.def(v2b), inputs[0], inputs[1]); writeout(8, bld.vop3(aco_opcode::v_med3_f16, bld.def(v2b), Operand((uint16_t)0u), Operand((uint16_t)0x3c00u), tmp)); //! v2b: %res9 = v_add_f16 %a, %b *2 clamp //! p_unit_test 9, %res9 tmp = bld.vop2(aco_opcode::v_add_f16, bld.def(v2b), inputs[0], inputs[1]); tmp = bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand((uint16_t)0x4000), tmp); writeout(9, bld.vop3(aco_opcode::v_med3_f16, bld.def(v2b), Operand((uint16_t)0u), Operand((uint16_t)0x3c00u), tmp)); /* clamping is done after omod */ //! v1: %res10_tmp = v_add_f32 %a, %b clamp //! v1: %res10 = v_mul_f32 2.0, %res10_tmp //! p_unit_test 10, %res10 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); tmp = bld.vop3(aco_opcode::v_med3_f32, bld.def(v1), Operand(0u), Operand(0x3f800000u), tmp); writeout(10, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x40000000u), tmp)); /* unsupported instructions */ //! v1: %res11_tmp = v_xor_b32 %a, %b //! v1: %res11 = v_mul_f32 2.0, %res11_tmp //! p_unit_test 11, %res11 tmp = bld.vop2(aco_opcode::v_xor_b32, bld.def(v1), inputs[0], inputs[1]); writeout(11, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x40000000u), tmp)); /* several users */ //! v1: %res12_tmp = v_add_f32 %a, %b //! p_unit_test %res12_tmp //! v1: %res12 = v_mul_f32 2.0, %res12_tmp //! p_unit_test 12, %res12 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); bld.pseudo(aco_opcode::p_unit_test, tmp); writeout(12, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x40000000u), tmp)); //! v1: %res13 = v_add_f32 %a, %b //! p_unit_test 13, %res13 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x40000000u), tmp); writeout(13, tmp); /* omod has no effect if denormals are enabled but clamp is fine */ //>> BB1 //! /* logical preds: / linear preds: / kind: uniform, */ program->next_fp_mode.denorm32 = fp_denorm_keep; program->next_fp_mode.denorm16_64 = fp_denorm_flush; bld.reset(program->create_and_insert_block()); //! v1: %res14_tmp = v_add_f32 %a, %b //! v1: %res14 = v_mul_f32 2.0, %res13_tmp //! p_unit_test 14, %res14 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); writeout(14, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x40000000u), tmp)); //! v1: %res15 = v_add_f32 %a, %b clamp //! p_unit_test 15, %res15 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); writeout(15, bld.vop3(aco_opcode::v_med3_f32, bld.def(v1), Operand(0u), Operand(0x3f800000u), tmp)); //>> BB2 //! /* logical preds: / linear preds: / kind: uniform, */ program->next_fp_mode.denorm32 = fp_denorm_flush; program->next_fp_mode.denorm16_64 = fp_denorm_keep; bld.reset(program->create_and_insert_block()); //! v2b: %res16_tmp = v_add_f16 %a, %b //! v2b: %res16 = v_mul_f16 2.0, %res15_tmp //! p_unit_test 16, %res16 tmp = bld.vop2(aco_opcode::v_add_f16, bld.def(v2b), inputs[0], inputs[1]); writeout(16, bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand((uint16_t)0x4000u), tmp)); //! v2b: %res17 = v_add_f16 %a, %b clamp //! p_unit_test 17, %res17 tmp = bld.vop2(aco_opcode::v_add_f16, bld.def(v2b), inputs[0], inputs[1]); writeout(17, bld.vop3(aco_opcode::v_med3_f16, bld.def(v2b), Operand((uint16_t)0u), Operand((uint16_t)0x3c00u), tmp)); /* omod flushes -0.0 to +0.0 */ //>> BB3 //! /* logical preds: / linear preds: / kind: uniform, */ program->next_fp_mode.denorm32 = fp_denorm_keep; program->next_fp_mode.denorm16_64 = fp_denorm_keep; program->next_fp_mode.preserve_signed_zero_inf_nan32 = true; program->next_fp_mode.preserve_signed_zero_inf_nan16_64 = false; bld.reset(program->create_and_insert_block()); //! v1: %res18_tmp = v_add_f32 %a, %b //! v1: %res18 = v_mul_f32 2.0, %res18_tmp //! p_unit_test 18, %res18 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); writeout(18, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand(0x40000000u), tmp)); //! v1: %res19 = v_add_f32 %a, %b clamp //! p_unit_test 19, %res19 tmp = bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[0], inputs[1]); writeout(19, bld.vop3(aco_opcode::v_med3_f32, bld.def(v1), Operand(0u), Operand(0x3f800000u), tmp)); //>> BB4 //! /* logical preds: / linear preds: / kind: uniform, */ program->next_fp_mode.preserve_signed_zero_inf_nan32 = false; program->next_fp_mode.preserve_signed_zero_inf_nan16_64 = true; bld.reset(program->create_and_insert_block()); //! v2b: %res20_tmp = v_add_f16 %a, %b //! v2b: %res20 = v_mul_f16 2.0, %res20_tmp //! p_unit_test 20, %res20 tmp = bld.vop2(aco_opcode::v_add_f16, bld.def(v2b), inputs[0], inputs[1]); writeout(20, bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand((uint16_t)0x4000u), tmp)); //! v2b: %res21 = v_add_f16 %a, %b clamp //! p_unit_test 21, %res21 tmp = bld.vop2(aco_opcode::v_add_f16, bld.def(v2b), inputs[0], inputs[1]); writeout(21, bld.vop3(aco_opcode::v_med3_f16, bld.def(v2b), Operand((uint16_t)0u), Operand((uint16_t)0x3c00u), tmp)); finish_opt_test(); END_TEST Temp create_subbrev_co(Operand op0, Operand op1, Operand op2) { return bld.vop2_e64(aco_opcode::v_subbrev_co_u32, bld.def(v1), bld.hint_vcc(bld.def(bld.lm)), op0, op1, op2); } BEGIN_TEST(optimize.cndmask) for (unsigned i = GFX9; i <= GFX10; i++) { //>> v1: %a, s1: %b, s2: %c, s2: %_:exec = p_startpgm if (!setup_cs("v1 s1 s2", (chip_class)i)) continue; Temp subbrev; //! v1: %res0 = v_cndmask_b32 0, %a, %c //! p_unit_test 0, %res0 subbrev = create_subbrev_co(Operand(0u), Operand(0u), Operand(inputs[2])); writeout(0, bld.vop2(aco_opcode::v_and_b32, bld.def(v1), inputs[0], subbrev)); //! v1: %res1 = v_cndmask_b32 0, 42, %c //! p_unit_test 1, %res1 subbrev = create_subbrev_co(Operand(0u), Operand(0u), Operand(inputs[2])); writeout(1, bld.vop2(aco_opcode::v_and_b32, bld.def(v1), Operand(42u), subbrev)); //~gfx9! v1: %subbrev, s2: %_ = v_subbrev_co_u32 0, 0, %c //~gfx9! v1: %res2 = v_and_b32 %b, %subbrev //~gfx10! v1: %res2 = v_cndmask_b32 0, %b, %c //! p_unit_test 2, %res2 subbrev = create_subbrev_co(Operand(0u), Operand(0u), Operand(inputs[2])); writeout(2, bld.vop2(aco_opcode::v_and_b32, bld.def(v1), inputs[1], subbrev)); //! v1: %subbrev1, s2: %_ = v_subbrev_co_u32 0, 0, %c //! v1: %xor = v_xor_b32 %a, %subbrev1 //! v1: %res3 = v_cndmask_b32 0, %xor, %c //! p_unit_test 3, %res3 subbrev = create_subbrev_co(Operand(0u), Operand(0u), Operand(inputs[2])); Temp xor_a = bld.vop2(aco_opcode::v_xor_b32, bld.def(v1), inputs[0], subbrev); writeout(3, bld.vop2(aco_opcode::v_and_b32, bld.def(v1), xor_a, subbrev)); //! v1: %res4 = v_cndmask_b32 0, %a, %c //! p_unit_test 4, %res4 Temp cndmask = bld.vop2_e64(aco_opcode::v_cndmask_b32, bld.def(v1), Operand(0u), Operand(1u), Operand(inputs[2])); Temp sub = bld.vsub32(bld.def(v1), Operand(0u), cndmask); writeout(4, bld.vop2(aco_opcode::v_and_b32, bld.def(v1), Operand(inputs[0]), sub)); finish_opt_test(); } END_TEST BEGIN_TEST(optimize.add_lshl) for (unsigned i = GFX9; i <= GFX10; i++) { //>> s1: %a, v1: %b, s2: %_:exec = p_startpgm if (!setup_cs("s1 v1", (chip_class)i)) continue; Temp shift; //! s1: %res0, s1: %_:scc = s_lshl3_add_u32 %a, 4 //! p_unit_test 0, %res0 shift = bld.sop2(aco_opcode::s_lshl_b32, bld.def(s1), bld.def(s1, scc), Operand(inputs[0]), Operand(3u)); writeout(0, bld.sop2(aco_opcode::s_add_u32, bld.def(s1), bld.def(s1, scc), shift, Operand(4u))); //! s1: %lshl1, s1: %_:scc = s_lshl3_add_u32 %a, 4 //! v1: %lshl_add = v_lshl_add_u32 %a, 3, %b //! v1: %res1 = v_add_u32 %lshl1, %lshl_add //! p_unit_test 1, %res1 shift = bld.sop2(aco_opcode::s_lshl_b32, bld.def(s1), bld.def(s1, scc), Operand(inputs[0]), Operand(3u)); Temp sadd = bld.sop2(aco_opcode::s_add_u32, bld.def(s1), bld.def(s1, scc), shift, Operand(4u)); Temp vadd = bld.vadd32(bld.def(v1), shift, Operand(inputs[1])); writeout(1, bld.vadd32(bld.def(v1), sadd, vadd)); finish_opt_test(); } END_TEST Temp create_mad_u32_u16(Operand a, Operand b, Operand c, bool is16bit = true) { a.set16bit(is16bit); b.set16bit(is16bit); return bld.vop3(aco_opcode::v_mad_u32_u16, bld.def(v1), a, b, c); } BEGIN_TEST(optimize.mad_u32_u16) for (unsigned i = GFX9; i <= GFX10; i++) { //>> v1: %a, v1: %b, s1: %c, s2: %_:exec = p_startpgm if (!setup_cs("v1 v1 s1", (chip_class)i)) continue; //! v1: %res0 = v_mul_u32_u24 (is16bit)%a, (is16bit)%b //! p_unit_test 0, %res0 writeout(0, create_mad_u32_u16(Operand(inputs[0]), Operand(inputs[1]), Operand(0u))); //! v1: %res1 = v_mul_u32_u24 42, (is16bit)%a //! p_unit_test 1, %res1 writeout(1, create_mad_u32_u16(Operand(42u), Operand(inputs[0]), Operand(0u))); //! v1: %res2 = v_mul_u32_u24 42, (is16bit)%a //! p_unit_test 2, %res2 writeout(2, create_mad_u32_u16(Operand(inputs[0]), Operand(42u), Operand(0u))); //! v1: %res3 = v_mul_u32_u24 (is16bit)%c, (is16bit)%a //! p_unit_test 3, %res3 writeout(3, create_mad_u32_u16(Operand(inputs[2]), Operand(inputs[0]), Operand(0u))); //! v1: %res4 = v_mad_u32_u16 42, (is16bit)%c, 0 //! p_unit_test 4, %res4 writeout(4, create_mad_u32_u16(Operand(42u), Operand(inputs[2]), Operand(0u))); //! v1: %res5 = v_mad_u32_u16 42, %a, 0 //! p_unit_test 5, %res5 writeout(5, create_mad_u32_u16(Operand(42u), Operand(inputs[0]), Operand(0u), false)); //~gfx9! v1: %mul6 = v_mul_lo_u16 %a, %b //~gfx9! v1: %res6 = v_add_u32 %mul6, %b //~gfx10! v1: %mul6 = v_mul_lo_u16_e64 %a, %b //~gfx10! v1: %res6 = v_add_u32 %mul6, %b //! p_unit_test 6, %res6 Temp mul; if (i >= GFX10) { mul = bld.vop3(aco_opcode::v_mul_lo_u16_e64, bld.def(v1), inputs[0], inputs[1]); } else { mul = bld.vop2(aco_opcode::v_mul_lo_u16, bld.def(v1), inputs[0], inputs[1]); } writeout(6, bld.vadd32(bld.def(v1), mul, inputs[1])); //~gfx9! v1: %res7 = v_mad_u32_u16 %a, %b, %b //~gfx10! v1: (nuw)%mul7 = v_mul_lo_u16_e64 %a, %b //~gfx10! v1: %res7 = v_add_u32 %mul7, %b //! p_unit_test 7, %res7 if (i >= GFX10) { mul = bld.nuw().vop3(aco_opcode::v_mul_lo_u16_e64, bld.def(v1), inputs[0], inputs[1]); } else { mul = bld.nuw().vop2(aco_opcode::v_mul_lo_u16, bld.def(v1), inputs[0], inputs[1]); } writeout(7, bld.vadd32(bld.def(v1), mul, inputs[1])); finish_opt_test(); } END_TEST BEGIN_TEST(optimize.bcnt) for (unsigned i = GFX8; i <= GFX10; i++) { //>> v1: %a, s1: %b, s2: %_:exec = p_startpgm if (!setup_cs("v1 s1", (chip_class)i)) continue; Temp bcnt; //! v1: %res0 = v_bcnt_u32_b32 %a, %a //! p_unit_test 0, %res0 bcnt = bld.vop3(aco_opcode::v_bcnt_u32_b32, bld.def(v1), Operand(inputs[0]), Operand(0u)); writeout(0, bld.vadd32(bld.def(v1), bcnt, Operand(inputs[0]))); //! v1: %res1 = v_bcnt_u32_b32 %a, %b //! p_unit_test 1, %res1 bcnt = bld.vop3(aco_opcode::v_bcnt_u32_b32, bld.def(v1), Operand(inputs[0]), Operand(0u)); writeout(1, bld.vadd32(bld.def(v1), bcnt, Operand(inputs[1]))); //! v1: %res2 = v_bcnt_u32_b32 %a, 42 //! p_unit_test 2, %res2 bcnt = bld.vop3(aco_opcode::v_bcnt_u32_b32, bld.def(v1), Operand(inputs[0]), Operand(0u)); writeout(2, bld.vadd32(bld.def(v1), bcnt, Operand(42u))); //! v1: %bnct3 = v_bcnt_u32_b32 %b, 0 //~gfx8! v1: %res3, s2: %_ = v_add_co_u32 %bcnt3, %a //~gfx(9|10)! v1: %res3 = v_add_u32 %bcnt3, %a //! p_unit_test 3, %res3 bcnt = bld.vop3(aco_opcode::v_bcnt_u32_b32, bld.def(v1), Operand(inputs[1]), Operand(0u)); writeout(3, bld.vadd32(bld.def(v1), bcnt, Operand(inputs[0]))); //! v1: %bnct4 = v_bcnt_u32_b32 %a, 0 //~gfx(8|9)! v1: %add4, s2: %carry = v_add_co_u32 %bcnt4, %a //~gfx10! v1: %add4, s2: %carry = v_add_co_u32_e64 %bcnt4, %a //! p_unit_test 4, %carry bcnt = bld.vop3(aco_opcode::v_bcnt_u32_b32, bld.def(v1), Operand(inputs[0]), Operand(0u)); Temp carry = bld.vadd32(bld.def(v1), bcnt, Operand(inputs[0]), true).def(1).getTemp(); writeout(4, carry); finish_opt_test(); } END_TEST struct clamp_config { const char *name; aco_opcode min, max, med3; Operand lb, ub; }; static const clamp_config clamp_configs[] = { /* 0.0, 4.0 */ {"_0,4f32", aco_opcode::v_min_f32, aco_opcode::v_max_f32, aco_opcode::v_med3_f32, Operand(0u), Operand(0x40800000u)}, {"_0,4f16", aco_opcode::v_min_f16, aco_opcode::v_max_f16, aco_opcode::v_med3_f16, Operand((uint16_t)0u), Operand((uint16_t)0x4400)}, /* -1.0, 0.0 */ {"_-1,0f32", aco_opcode::v_min_f32, aco_opcode::v_max_f32, aco_opcode::v_med3_f32, Operand(0xbf800000u), Operand(0u)}, {"_-1,0f16", aco_opcode::v_min_f16, aco_opcode::v_max_f16, aco_opcode::v_med3_f16, Operand((uint16_t)0xBC00), Operand((uint16_t)0u)}, /* 0, 3 */ {"_0,3u32", aco_opcode::v_min_u32, aco_opcode::v_max_u32, aco_opcode::v_med3_u32, Operand(0u), Operand(3u)}, {"_0,3u16", aco_opcode::v_min_u16, aco_opcode::v_max_u16, aco_opcode::v_med3_u16, Operand((uint16_t)0u), Operand((uint16_t)3u)}, {"_0,3i32", aco_opcode::v_min_i32, aco_opcode::v_max_i32, aco_opcode::v_med3_i32, Operand(0u), Operand(3u)}, {"_0,3i16", aco_opcode::v_min_i16, aco_opcode::v_max_i16, aco_opcode::v_med3_i16, Operand((uint16_t)0u), Operand((uint16_t)3u)}, /* -5, 0 */ {"_-5,0i32", aco_opcode::v_min_i32, aco_opcode::v_max_i32, aco_opcode::v_med3_i32, Operand(0xfffffffbu), Operand(0u)}, {"_-5,0i16", aco_opcode::v_min_i16, aco_opcode::v_max_i16, aco_opcode::v_med3_i16, Operand((uint16_t)0xfffbu), Operand((uint16_t)0u)}, }; BEGIN_TEST(optimize.clamp) for (clamp_config cfg : clamp_configs) { subvariant = cfg.name; if (!setup_cs("v1 v1 v1", GFX9)) continue; //! cfg: @match_func(min max med3 lb ub) fprintf(output, "cfg: %s ", instr_info.name[(int)cfg.min]); fprintf(output, "%s ", instr_info.name[(int)cfg.max]); fprintf(output, "%s ", instr_info.name[(int)cfg.med3]); aco_print_operand(&cfg.lb, output); fprintf(output, " "); aco_print_operand(&cfg.ub, output); fprintf(output, "\n"); //>> v1: %a, v1: %b, v1: %c, s2: %_:exec = p_startpgm //! v1: %res0 = @med3 @ub, @lb, %a //! p_unit_test 0, %res0 writeout(0, bld.vop2(cfg.min, bld.def(v1), cfg.ub, bld.vop2(cfg.max, bld.def(v1), cfg.lb, inputs[0]))); //! v1: %res1 = @med3 @lb, @ub, %a //! p_unit_test 1, %res1 writeout(1, bld.vop2(cfg.max, bld.def(v1), cfg.lb, bld.vop2(cfg.min, bld.def(v1), cfg.ub, inputs[0]))); /* min constant must be greater than max constant */ //! v1: %res2_tmp = @min @lb, %a //! v1: %res2 = @max @ub, %res2_tmp //! p_unit_test 2, %res2 writeout(2, bld.vop2(cfg.max, bld.def(v1), cfg.ub, bld.vop2(cfg.min, bld.def(v1), cfg.lb, inputs[0]))); //! v1: %res3_tmp = @max @ub, %a //! v1: %res3 = @min @lb, %res3_tmp //! p_unit_test 3, %res3 writeout(3, bld.vop2(cfg.min, bld.def(v1), cfg.lb, bld.vop2(cfg.max, bld.def(v1), cfg.ub, inputs[0]))); /* needs two constants */ //! v1: %res4_tmp = @max @lb, %a //! v1: %res4 = @min %b, %res4_tmp //! p_unit_test 4, %res4 writeout(4, bld.vop2(cfg.min, bld.def(v1), inputs[1], bld.vop2(cfg.max, bld.def(v1), cfg.lb, inputs[0]))); //! v1: %res5_tmp = @max %b, %a //! v1: %res5 = @min @ub, %res5_tmp //! p_unit_test 5, %res5 writeout(5, bld.vop2(cfg.min, bld.def(v1), cfg.ub, bld.vop2(cfg.max, bld.def(v1), inputs[1], inputs[0]))); //! v1: %res6_tmp = @max %c, %a //! v1: %res6 = @min %b, %res6_tmp //! p_unit_test 6, %res6 writeout(6, bld.vop2(cfg.min, bld.def(v1), inputs[1], bld.vop2(cfg.max, bld.def(v1), inputs[2], inputs[0]))); /* correct NaN behaviour with precise */ //! v1: %res7 = @med3 @ub, @lb, %a //! p_unit_test 7, %res7 Builder::Result max = bld.vop2(cfg.max, bld.def(v1), cfg.lb, inputs[0]); max.def(0).setPrecise(true); Builder::Result min = bld.vop2(cfg.min, bld.def(v1), cfg.ub, max); max.def(0).setPrecise(true); writeout(7, min); //! v1: (precise)%res8_tmp = @min @ub, %a //! v1: %res8 = @max @lb, %res8_tmp //! p_unit_test 8, %res8 min = bld.vop2(cfg.min, bld.def(v1), cfg.ub, inputs[0]); min.def(0).setPrecise(true); writeout(8, bld.vop2(cfg.max, bld.def(v1), cfg.lb, min)); finish_opt_test(); } END_TEST BEGIN_TEST(optimize.const_comparison_ordering) //>> v1: %a, v1: %b, v2: %c, v1: %d, s2: %_:exec = p_startpgm if (!setup_cs("v1 v1 v2 v1", GFX9)) return; /* optimize to unordered comparison */ //! s2: %res0 = v_cmp_nge_f32 4.0, %a //! p_unit_test 0, %res0 writeout(0, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f32, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_lt_f32, bld.def(bld.lm), Operand(0x40800000u), inputs[0]))); //! s2: %res1 = v_cmp_nge_f32 4.0, %a //! p_unit_test 1, %res1 writeout(1, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f32, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_nge_f32, bld.def(bld.lm), Operand(0x40800000u), inputs[0]))); //! s2: %res2 = v_cmp_nge_f32 0x40a00000, %a //! p_unit_test 2, %res2 writeout(2, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f32, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_lt_f32, bld.def(bld.lm), bld.copy(bld.def(v1), Operand(0x40a00000u)), inputs[0]))); /* optimize to ordered comparison */ //! s2: %res3 = v_cmp_lt_f32 4.0, %a //! p_unit_test 3, %res3 writeout(3, bld.sop2(aco_opcode::s_and_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_eq_f32, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_nge_f32, bld.def(bld.lm), Operand(0x40800000u), inputs[0]))); //! s2: %res4 = v_cmp_lt_f32 4.0, %a //! p_unit_test 4, %res4 writeout(4, bld.sop2(aco_opcode::s_and_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_eq_f32, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_lt_f32, bld.def(bld.lm), Operand(0x40800000u), inputs[0]))); //! s2: %res5 = v_cmp_lt_f32 0x40a00000, %a //! p_unit_test 5, %res5 writeout(5, bld.sop2(aco_opcode::s_and_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_eq_f32, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_nge_f32, bld.def(bld.lm), bld.copy(bld.def(v1), Operand(0x40a00000u)), inputs[0]))); /* similar but unoptimizable expressions */ //! s2: %tmp6_0 = v_cmp_lt_f32 4.0, %a //! s2: %tmp6_1 = v_cmp_neq_f32 %a, %a //! s2: %res6, s1: %_:scc = s_and_b64 %tmp6_1, %tmp6_0 //! p_unit_test 6, %res6 writeout(6, bld.sop2(aco_opcode::s_and_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f32, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_lt_f32, bld.def(bld.lm), Operand(0x40800000u), inputs[0]))); //! s2: %tmp7_0 = v_cmp_nge_f32 4.0, %a //! s2: %tmp7_1 = v_cmp_eq_f32 %a, %a //! s2: %res7, s1: %_:scc = s_or_b64 %tmp7_1, %tmp7_0 //! p_unit_test 7, %res7 writeout(7, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_eq_f32, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_nge_f32, bld.def(bld.lm), Operand(0x40800000u), inputs[0]))); //! s2: %tmp8_0 = v_cmp_lt_f32 4.0, %d //! s2: %tmp8_1 = v_cmp_neq_f32 %a, %a //! s2: %res8, s1: %_:scc = s_or_b64 %tmp8_1, %tmp8_0 //! p_unit_test 8, %res8 writeout(8, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f32, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_lt_f32, bld.def(bld.lm), Operand(0x40800000u), inputs[3]))); //! s2: %tmp9_0 = v_cmp_lt_f32 4.0, %a //! s2: %tmp9_1 = v_cmp_neq_f32 %a, %d //! s2: %res9, s1: %_:scc = s_or_b64 %tmp9_1, %tmp9_0 //! p_unit_test 9, %res9 writeout(9, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f32, bld.def(bld.lm), inputs[0], inputs[3]), bld.vopc(aco_opcode::v_cmp_lt_f32, bld.def(bld.lm), Operand(0x40800000u), inputs[0]))); /* bit sizes */ //! v2b: %b16 = p_extract_vector %b, 0 //! s2: %res10 = v_cmp_nge_f16 4.0, %b16 //! p_unit_test 10, %res10 Temp input1_16 = bld.pseudo(aco_opcode::p_extract_vector, bld.def(v2b), inputs[1], Operand(0u)); writeout(10, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f16, bld.def(bld.lm), input1_16, input1_16), bld.vopc(aco_opcode::v_cmp_lt_f16, bld.def(bld.lm), Operand((uint16_t)0x4400u), input1_16))); //! s2: %res11 = v_cmp_nge_f64 4.0, %c //! p_unit_test 11, %res11 writeout(11, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f64, bld.def(bld.lm), inputs[2], inputs[2]), bld.vopc(aco_opcode::v_cmp_lt_f64, bld.def(bld.lm), Operand(0x4010000000000000u), inputs[2]))); /* NaN */ uint16_t nan16 = 0x7e00; uint32_t nan32 = 0x7fc00000; uint64_t nan64 = 0xffffffffffffffffllu; //! s2: %tmp12_0 = v_cmp_lt_f16 0x7e00, %a //! s2: %tmp12_1 = v_cmp_neq_f16 %a, %a //! s2: %res12, s1: %_:scc = s_or_b64 %tmp12_1, %tmp12_0 //! p_unit_test 12, %res12 writeout(12, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f16, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_lt_f16, bld.def(bld.lm), Operand(nan16), inputs[0]))); //! s2: %tmp13_0 = v_cmp_lt_f32 0x7fc00000, %a //! s2: %tmp13_1 = v_cmp_neq_f32 %a, %a //! s2: %res13, s1: %_:scc = s_or_b64 %tmp13_1, %tmp13_0 //! p_unit_test 13, %res13 writeout(13, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f32, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_lt_f32, bld.def(bld.lm), Operand(nan32), inputs[0]))); //! s2: %tmp14_0 = v_cmp_lt_f64 -1, %a //! s2: %tmp14_1 = v_cmp_neq_f64 %a, %a //! s2: %res14, s1: %_:scc = s_or_b64 %tmp14_1, %tmp14_0 //! p_unit_test 14, %res14 writeout(14, bld.sop2(aco_opcode::s_or_b64, bld.def(bld.lm), bld.def(s1, scc), bld.vopc(aco_opcode::v_cmp_neq_f64, bld.def(bld.lm), inputs[0], inputs[0]), bld.vopc(aco_opcode::v_cmp_lt_f64, bld.def(bld.lm), Operand(nan64), inputs[0]))); finish_opt_test(); END_TEST BEGIN_TEST(optimize.add3) //>> v1: %a, v1: %b, v1: %c, s2: %_:exec = p_startpgm if (!setup_cs("v1 v1 v1", GFX9)) return; //! v1: %res0 = v_add3_u32 %a, %b, %c //! p_unit_test 0, %res0 Builder::Result tmp = bld.vop2(aco_opcode::v_add_u32, bld.def(v1), inputs[1], inputs[2]); writeout(0, bld.vop2(aco_opcode::v_add_u32, bld.def(v1), inputs[0], tmp)); //! v1: %tmp1 = v_add_u32 %b, %c clamp //! v1: %res1 = v_add_u32 %a, %tmp1 //! p_unit_test 1, %res1 tmp = bld.vop2_e64(aco_opcode::v_add_u32, bld.def(v1), inputs[1], inputs[2]); static_cast(tmp.instr)->clamp = true; writeout(1, bld.vop2(aco_opcode::v_add_u32, bld.def(v1), inputs[0], tmp)); //! v1: %tmp2 = v_add_u32 %b, %c //! v1: %res2 = v_add_u32 %a, %tmp2 clamp //! p_unit_test 2, %res2 tmp = bld.vop2(aco_opcode::v_add_u32, bld.def(v1), inputs[1], inputs[2]); tmp = bld.vop2_e64(aco_opcode::v_add_u32, bld.def(v1), inputs[0], tmp); static_cast(tmp.instr)->clamp = true; writeout(2, tmp); finish_opt_test(); END_TEST BEGIN_TEST(optimize.minmax) for (unsigned i = GFX8; i <= GFX10; i++) { //>> v1: %a, s2: %_:exec = p_startpgm if (!setup_cs("v1", (chip_class)i)) continue; //! v1: %res0 = v_max3_f32 0, -0, %a //! p_unit_test 0, %res0 Temp xor0 = bld.vop2(aco_opcode::v_xor_b32, bld.def(v1), Operand(0x80000000u), Operand(inputs[0])); Temp min = bld.vop2(aco_opcode::v_min_f32, bld.def(v1), Operand(0u), xor0); Temp xor1 = bld.vop2(aco_opcode::v_xor_b32, bld.def(v1), Operand(0x80000000u), min); writeout(0, bld.vop2(aco_opcode::v_max_f32, bld.def(v1), Operand(0u), xor1)); //! v1: %res1 = v_max3_f32 0, -0, -%a //! p_unit_test 1, %res1 min = bld.vop2(aco_opcode::v_min_f32, bld.def(v1), Operand(0u), Operand(inputs[0])); xor1 = bld.vop2(aco_opcode::v_xor_b32, bld.def(v1), Operand(0x80000000u), min); writeout(1, bld.vop2(aco_opcode::v_max_f32, bld.def(v1), Operand(0u), xor1)); finish_opt_test(); } END_TEST