/* * Copyright (C) 2021 Collabora, Ltd. * * 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 "va_compiler.h" #include "bi_test.h" #include "bi_builder.h" #include static inline void case_cb(bi_context *ctx) { bi_foreach_instr_global(ctx, I) { va_lower_isel(I); } } #define CASE(instr, expected) INSTRUCTION_CASE(instr, expected, case_cb) #define NEGCASE(instr) CASE(instr, instr) class LowerIsel : public testing::Test { protected: LowerIsel() { mem_ctx = ralloc_context(NULL); reg = bi_register(1); x = bi_register(2); y = bi_register(3); z = bi_register(4); } ~LowerIsel() { ralloc_free(mem_ctx); } void *mem_ctx; bi_index reg, x, y, z; }; TEST_F(LowerIsel, 8BitSwizzles) { for (unsigned i = 0; i < 4; ++i) { CASE(bi_swz_v4i8_to(b, reg, bi_byte(reg, i)), bi_iadd_v4u8_to(b, reg, bi_byte(reg, i), bi_zero(), false)); } } TEST_F(LowerIsel, 16BitSwizzles) { for (unsigned i = 0; i < 2; ++i) { for (unsigned j = 0; j < 2; ++j) { CASE(bi_swz_v2i16_to(b, reg, bi_swz_16(reg, i, j)), bi_iadd_v2u16_to(b, reg, bi_swz_16(reg, i, j), bi_zero(), false)); } } } TEST_F(LowerIsel, JumpsLoweredToBranches) { bi_block block = { }; CASE({ bi_instr *I = bi_jump(b, bi_imm_u32(0xDEADBEEF)); I->branch_target = █ }, { bi_instr *I = bi_branchz_i16(b, bi_zero(), bi_imm_u32(0xDEADBEEF), BI_CMPF_EQ); I->branch_target = █ }); } TEST_F(LowerIsel, IndirectJumpsLoweredToBranches) { CASE(bi_jump(b, bi_register(17)), bi_branchzi(b, bi_zero(), bi_register(17), BI_CMPF_EQ)); } TEST_F(LowerIsel, IntegerCSEL) { CASE(bi_csel_i32(b, reg, reg, reg, reg, BI_CMPF_EQ), bi_csel_u32(b, reg, reg, reg, reg, BI_CMPF_EQ)); CASE(bi_csel_v2i16(b, reg, reg, reg, reg, BI_CMPF_EQ), bi_csel_v2u16(b, reg, reg, reg, reg, BI_CMPF_EQ)); } TEST_F(LowerIsel, AvoidSimpleMux) { CASE(bi_mux_i32(b, x, y, z, BI_MUX_INT_ZERO), bi_csel_u32(b, z, bi_zero(), x, y, BI_CMPF_EQ)); CASE(bi_mux_i32(b, x, y, z, BI_MUX_NEG), bi_csel_s32(b, z, bi_zero(), x, y, BI_CMPF_LT)); CASE(bi_mux_i32(b, x, y, z, BI_MUX_FP_ZERO), bi_csel_f32(b, z, bi_zero(), x, y, BI_CMPF_EQ)); CASE(bi_mux_v2i16(b, x, y, z, BI_MUX_INT_ZERO), bi_csel_v2u16(b, z, bi_zero(), x, y, BI_CMPF_EQ)); CASE(bi_mux_v2i16(b, x, y, z, BI_MUX_NEG), bi_csel_v2s16(b, z, bi_zero(), x, y, BI_CMPF_LT)); CASE(bi_mux_v2i16(b, x, y, z, BI_MUX_FP_ZERO), bi_csel_v2f16(b, z, bi_zero(), x, y, BI_CMPF_EQ)); } TEST_F(LowerIsel, BitwiseMux) { NEGCASE(bi_mux_i32(b, x, y, z, BI_MUX_BIT)); NEGCASE(bi_mux_v2i16(b, x, y, z, BI_MUX_BIT)); NEGCASE(bi_mux_v4i8(b, x, y, z, BI_MUX_BIT)); } TEST_F(LowerIsel, MuxInt8) { NEGCASE(bi_mux_v4i8(b, x, y, z, BI_MUX_INT_ZERO)); NEGCASE(bi_mux_v4i8(b, x, y, z, BI_MUX_NEG)); NEGCASE(bi_mux_v4i8(b, x, y, z, BI_MUX_FP_ZERO)); } TEST_F(LowerIsel, FaddRscale) { CASE(bi_fadd_rscale_f32_to(b, reg, x, y, z, BI_SPECIAL_NONE), bi_fma_rscale_f32_to(b, reg, x, bi_imm_f32(1.0), y, z, BI_SPECIAL_NONE)); CASE(bi_fadd_rscale_f32_to(b, reg, x, y, z, BI_SPECIAL_N), bi_fma_rscale_f32_to(b, reg, x, bi_imm_f32(1.0), y, z, BI_SPECIAL_N)); } TEST_F(LowerIsel, Smoke) { NEGCASE(bi_fadd_f32_to(b, reg, reg, reg)); NEGCASE(bi_csel_s32_to(b, reg, reg, reg, reg, reg, BI_CMPF_LT)); NEGCASE(bi_csel_u32_to(b, reg, reg, reg, reg, reg, BI_CMPF_LT)); }