2016-11-04 22:34:53 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2016 Intel 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 <gtest/gtest.h>
|
|
|
|
|
#include "brw_eu.h"
|
|
|
|
|
#include "util/ralloc.h"
|
|
|
|
|
|
|
|
|
|
static const struct gen_info {
|
|
|
|
|
const char *name;
|
|
|
|
|
} gens[] = {
|
2018-03-16 10:52:55 -07:00
|
|
|
{ "brw", },
|
|
|
|
|
{ "g4x", },
|
|
|
|
|
{ "ilk", },
|
|
|
|
|
{ "snb", },
|
|
|
|
|
{ "ivb", },
|
|
|
|
|
{ "byt", },
|
|
|
|
|
{ "hsw", },
|
|
|
|
|
{ "bdw", },
|
|
|
|
|
{ "chv", },
|
|
|
|
|
{ "skl", },
|
|
|
|
|
{ "bxt", },
|
|
|
|
|
{ "kbl", },
|
2018-08-30 14:39:27 -07:00
|
|
|
{ "aml", },
|
2018-03-16 10:52:55 -07:00
|
|
|
{ "glk", },
|
|
|
|
|
{ "cfl", },
|
2018-08-30 14:39:57 -07:00
|
|
|
{ "whl", },
|
2018-03-16 10:52:55 -07:00
|
|
|
{ "cnl", },
|
2018-03-16 11:00:50 -07:00
|
|
|
{ "icl", },
|
2018-03-20 08:23:35 -07:00
|
|
|
{ "tgl", },
|
2016-11-04 22:34:53 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class validation_test: public ::testing::TestWithParam<struct gen_info> {
|
|
|
|
|
virtual void SetUp();
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
validation_test();
|
|
|
|
|
virtual ~validation_test();
|
|
|
|
|
|
|
|
|
|
struct brw_codegen *p;
|
|
|
|
|
struct gen_device_info devinfo;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
validation_test::validation_test()
|
|
|
|
|
{
|
|
|
|
|
p = rzalloc(NULL, struct brw_codegen);
|
|
|
|
|
memset(&devinfo, 0, sizeof(devinfo));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
validation_test::~validation_test()
|
|
|
|
|
{
|
|
|
|
|
ralloc_free(p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void validation_test::SetUp()
|
|
|
|
|
{
|
|
|
|
|
struct gen_info info = GetParam();
|
2018-03-16 10:52:55 -07:00
|
|
|
int devid = gen_device_name_to_pci_device_id(info.name);
|
2016-11-04 22:34:53 -07:00
|
|
|
|
2019-07-25 15:57:30 -07:00
|
|
|
gen_get_device_info_from_pci_id(devid, &devinfo);
|
2016-11-04 22:34:53 -07:00
|
|
|
|
|
|
|
|
brw_init_codegen(&devinfo, p, p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct gen_name {
|
|
|
|
|
template <class ParamType>
|
|
|
|
|
std::string
|
|
|
|
|
operator()(const ::testing::TestParamInfo<ParamType>& info) const {
|
|
|
|
|
return info.param.name;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
INSTANTIATE_TEST_CASE_P(eu_assembly, validation_test,
|
|
|
|
|
::testing::ValuesIn(gens),
|
|
|
|
|
gen_name());
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
|
validate(struct brw_codegen *p)
|
|
|
|
|
{
|
|
|
|
|
const bool print = getenv("TEST_DEBUG");
|
2017-11-18 02:48:45 +02:00
|
|
|
struct disasm_info *disasm = disasm_initialize(p->devinfo, NULL);
|
2016-11-04 22:34:53 -07:00
|
|
|
|
|
|
|
|
if (print) {
|
2017-11-18 02:48:45 +02:00
|
|
|
disasm_new_inst_group(disasm, 0);
|
|
|
|
|
disasm_new_inst_group(disasm, p->next_insn_offset);
|
2016-11-04 22:34:53 -07:00
|
|
|
}
|
|
|
|
|
|
2017-05-16 11:43:57 -07:00
|
|
|
bool ret = brw_validate_instructions(p->devinfo, p->store, 0,
|
2017-11-18 02:48:45 +02:00
|
|
|
p->next_insn_offset, disasm);
|
2016-11-04 22:34:53 -07:00
|
|
|
|
|
|
|
|
if (print) {
|
2017-11-18 02:48:45 +02:00
|
|
|
dump_assembly(p->store, disasm);
|
2016-11-04 22:34:53 -07:00
|
|
|
}
|
2017-11-18 02:48:45 +02:00
|
|
|
ralloc_free(disasm);
|
2016-11-04 22:34:53 -07:00
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-05 20:49:48 -07:00
|
|
|
#define last_inst (&p->store[p->nr_insn - 1])
|
2016-11-04 22:34:53 -07:00
|
|
|
#define g0 brw_vec8_grf(0, 0)
|
2017-08-29 18:29:29 -07:00
|
|
|
#define acc0 brw_acc_reg(8)
|
2016-11-04 22:34:53 -07:00
|
|
|
#define null brw_null_reg()
|
2017-07-27 18:29:50 -07:00
|
|
|
#define zero brw_imm_f(0.0f)
|
2016-11-04 22:34:53 -07:00
|
|
|
|
2016-11-05 20:49:48 -07:00
|
|
|
static void
|
|
|
|
|
clear_instructions(struct brw_codegen *p)
|
|
|
|
|
{
|
|
|
|
|
p->next_insn_offset = 0;
|
|
|
|
|
p->nr_insn = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-04 22:34:53 -07:00
|
|
|
TEST_P(validation_test, sanity)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, src0_null_reg)
|
|
|
|
|
{
|
|
|
|
|
brw_MOV(p, g0, null);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, src1_null_reg)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, null);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-05 15:49:14 -07:00
|
|
|
TEST_P(validation_test, math_src0_null_reg)
|
|
|
|
|
{
|
|
|
|
|
if (devinfo.gen >= 6) {
|
|
|
|
|
gen6_math(p, g0, BRW_MATH_FUNCTION_SIN, null, null);
|
|
|
|
|
} else {
|
|
|
|
|
gen4_math(p, g0, BRW_MATH_FUNCTION_SIN, 0, null, BRW_MATH_PRECISION_FULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, math_src1_null_reg)
|
|
|
|
|
{
|
|
|
|
|
if (devinfo.gen >= 6) {
|
|
|
|
|
gen6_math(p, g0, BRW_MATH_FUNCTION_POW, g0, null);
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
/* Math instructions on Gen4/5 are actually SEND messages with payloads.
|
|
|
|
|
* src1 is an immediate message descriptor set by gen4_math.
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-04 22:34:53 -07:00
|
|
|
TEST_P(validation_test, opcode46)
|
|
|
|
|
{
|
|
|
|
|
/* opcode 46 is "push" on Gen 4 and 5
|
|
|
|
|
* "fork" on Gen 6
|
|
|
|
|
* reserved on Gen 7
|
|
|
|
|
* "goto" on Gen8+
|
|
|
|
|
*/
|
2018-01-23 19:23:20 -08:00
|
|
|
brw_next_insn(p, brw_opcode_decode(&devinfo, 46));
|
2016-11-04 22:34:53 -07:00
|
|
|
|
|
|
|
|
if (devinfo.gen == 7) {
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-05 20:49:48 -07:00
|
|
|
|
2016-11-09 12:00:43 -08:00
|
|
|
/* When the Execution Data Type is wider than the destination data type, the
|
|
|
|
|
* destination must [...] specify a HorzStride equal to the ratio in sizes of
|
|
|
|
|
* the two data types.
|
|
|
|
|
*/
|
|
|
|
|
TEST_P(validation_test, dest_stride_must_be_equal_to_the_ratio_of_exec_size_to_dest_size)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_D);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_D);
|
2016-11-09 12:00:43 -08:00
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-09 12:00:43 -08:00
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_D);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_D);
|
2016-11-09 12:00:43 -08:00
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* When the Execution Data Type is wider than the destination data type, the
|
|
|
|
|
* destination must be aligned as required by the wider execution data type
|
|
|
|
|
* [...]
|
|
|
|
|
*/
|
|
|
|
|
TEST_P(validation_test, dst_subreg_must_be_aligned_to_exec_type_size)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, 2);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_D);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_D);
|
2016-11-09 12:00:43 -08:00
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_4);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, 8);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_D);
|
2016-11-09 12:00:43 -08:00
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_D);
|
2016-11-09 12:00:43 -08:00
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-05 20:49:48 -07:00
|
|
|
/* ExecSize must be greater than or equal to Width. */
|
|
|
|
|
TEST_P(validation_test, exec_size_less_than_width)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_16);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_16);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If ExecSize = Width and HorzStride ≠ 0,
|
|
|
|
|
* VertStride must be set to Width * HorzStride.
|
|
|
|
|
*/
|
|
|
|
|
TEST_P(validation_test, vertical_stride_is_width_by_horizontal_stride)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If Width = 1, HorzStride must be 0 regardless of the values
|
|
|
|
|
* of ExecSize and VertStride.
|
|
|
|
|
*/
|
|
|
|
|
TEST_P(validation_test, horizontal_stride_must_be_0_if_width_is_1)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_0);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_1);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_0);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_1);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If ExecSize = Width = 1, both VertStride and HorzStride must be 0. */
|
|
|
|
|
TEST_P(validation_test, scalar_region_must_be_0_1_0)
|
|
|
|
|
{
|
|
|
|
|
struct brw_reg g0_0 = brw_vec1_grf(0, 0);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0_0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_1);
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_1);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_1);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_0);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0_0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_1);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_1);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_1);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_0);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If VertStride = HorzStride = 0, Width must be 1 regardless of the value
|
|
|
|
|
* of ExecSize.
|
|
|
|
|
*/
|
|
|
|
|
TEST_P(validation_test, zero_stride_implies_0_1_0)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_0);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_2);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_0);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_0);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_2);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_0);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dst.HorzStride must not be 0. */
|
|
|
|
|
TEST_P(validation_test, dst_horizontal_stride_0)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_0);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
2018-02-08 10:23:11 -08:00
|
|
|
/* Align16 does not exist on Gen11+ */
|
|
|
|
|
if (devinfo.gen >= 11)
|
|
|
|
|
return;
|
|
|
|
|
|
2016-11-05 20:49:48 -07:00
|
|
|
brw_set_default_access_mode(p, BRW_ALIGN_16);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_0);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-26 16:51:58 -07:00
|
|
|
/* VertStride must be used to cross BRW_GENERAL_REGISTER_FILE register boundaries. This rule implies
|
|
|
|
|
* that elements within a 'Width' cannot cross BRW_GENERAL_REGISTER_FILE boundaries.
|
2016-11-05 20:49:48 -07:00
|
|
|
*/
|
|
|
|
|
TEST_P(validation_test, must_not_cross_grf_boundary_in_a_width)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src0_da1_subreg_nr(&devinfo, last_inst, 4);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src1_da1_subreg_nr(&devinfo, last_inst, 4);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Destination Horizontal must be 1 in Align16 */
|
|
|
|
|
TEST_P(validation_test, dst_hstride_on_align16_must_be_1)
|
|
|
|
|
{
|
2018-02-08 10:23:11 -08:00
|
|
|
/* Align16 does not exist on Gen11+ */
|
|
|
|
|
if (devinfo.gen >= 11)
|
|
|
|
|
return;
|
|
|
|
|
|
2016-11-05 20:49:48 -07:00
|
|
|
brw_set_default_access_mode(p, BRW_ALIGN_16);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* VertStride must be 0 or 4 in Align16 */
|
|
|
|
|
TEST_P(validation_test, vstride_on_align16_must_be_0_or_4)
|
|
|
|
|
{
|
2018-02-08 10:23:11 -08:00
|
|
|
/* Align16 does not exist on Gen11+ */
|
|
|
|
|
if (devinfo.gen >= 11)
|
|
|
|
|
return;
|
|
|
|
|
|
2016-11-05 20:49:48 -07:00
|
|
|
const struct {
|
|
|
|
|
enum brw_vertical_stride vstride;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} vstride[] = {
|
|
|
|
|
{ BRW_VERTICAL_STRIDE_0, true },
|
|
|
|
|
{ BRW_VERTICAL_STRIDE_1, false },
|
|
|
|
|
{ BRW_VERTICAL_STRIDE_2, devinfo.is_haswell || devinfo.gen >= 8 },
|
|
|
|
|
{ BRW_VERTICAL_STRIDE_4, true },
|
|
|
|
|
{ BRW_VERTICAL_STRIDE_8, false },
|
|
|
|
|
{ BRW_VERTICAL_STRIDE_16, false },
|
|
|
|
|
{ BRW_VERTICAL_STRIDE_32, false },
|
|
|
|
|
{ BRW_VERTICAL_STRIDE_ONE_DIMENSIONAL, false },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
brw_set_default_access_mode(p, BRW_ALIGN_16);
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(vstride); i++) {
|
2016-11-05 20:49:48 -07:00
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, vstride[i].vstride);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(vstride[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(vstride); i++) {
|
2016-11-05 20:49:48 -07:00
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, vstride[i].vstride);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(vstride[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-15 16:06:51 -08:00
|
|
|
|
2017-07-26 16:51:58 -07:00
|
|
|
/* In Direct Addressing mode, a source cannot span more than 2 adjacent BRW_GENERAL_REGISTER_FILE
|
2016-11-15 16:06:51 -08:00
|
|
|
* registers.
|
|
|
|
|
*/
|
|
|
|
|
TEST_P(validation_test, source_cannot_span_more_than_2_registers)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_32);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_16);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_8);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_16);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_16);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_8);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
brw_inst_set_src1_da1_subreg_nr(&devinfo, last_inst, 2);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_16);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-26 16:51:58 -07:00
|
|
|
/* A destination cannot span more than 2 adjacent BRW_GENERAL_REGISTER_FILE registers. */
|
2016-11-15 16:06:51 -08:00
|
|
|
TEST_P(validation_test, destination_cannot_span_more_than_2_registers)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_32);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_8);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, 6);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_4);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_16);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_16);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, src_region_spans_two_regs_dst_region_spans_one)
|
|
|
|
|
{
|
|
|
|
|
/* Writes to dest are to the lower OWord */
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_16);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
/* Writes to dest are to the upper OWord */
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, 16);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_16);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
/* Writes to dest are evenly split between OWords */
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_16);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_16);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_8);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
/* Writes to dest are uneven between OWords */
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_4);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, 10);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_16);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_2);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen >= 9) {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, dst_elements_must_be_evenly_split_between_registers)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, 4);
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen >= 9) {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_16);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen >= 6) {
|
|
|
|
|
gen6_math(p, g0, BRW_MATH_FUNCTION_SIN, g0, null);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
gen6_math(p, g0, BRW_MATH_FUNCTION_SIN, g0, null);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, 4);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, two_src_two_dst_source_offsets_must_be_same)
|
|
|
|
|
{
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_4);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_da1_subreg_nr(&devinfo, last_inst, 16);
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_2);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_1);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_0);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen <= 7) {
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_4);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_1);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_0);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_8);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_2);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, two_src_two_dst_each_dst_must_be_derived_from_one_src)
|
|
|
|
|
{
|
|
|
|
|
brw_MOV(p, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_16);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src0_da1_subreg_nr(&devinfo, last_inst, 8);
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_4);
|
2017-09-01 15:22:40 -07:00
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
2016-11-15 16:06:51 -08:00
|
|
|
|
2017-09-01 15:22:40 -07:00
|
|
|
if (devinfo.gen <= 7) {
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
2016-11-15 16:06:51 -08:00
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
2017-09-01 15:22:40 -07:00
|
|
|
brw_MOV(p, g0, g0);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, 16);
|
|
|
|
|
brw_inst_set_src0_da1_subreg_nr(&devinfo, last_inst, 8);
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_2);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_2);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
2016-11-15 16:06:51 -08:00
|
|
|
|
2017-09-01 15:22:40 -07:00
|
|
|
if (devinfo.gen <= 7) {
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
2016-11-15 16:06:51 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, one_src_two_dst)
|
|
|
|
|
{
|
|
|
|
|
struct brw_reg g0_0 = brw_vec1_grf(0, 0);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0_0, g0_0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_16);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_16);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_D);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_16);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_0);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_1);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_0);
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen >= 8) {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_ADD(p, g0, g0, g0);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_16);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
|
|
|
|
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_0);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_1);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_0);
|
2017-07-26 16:51:58 -07:00
|
|
|
brw_inst_set_src1_file_type(&devinfo, last_inst, BRW_GENERAL_REGISTER_FILE, BRW_REGISTER_TYPE_W);
|
2016-11-15 16:06:51 -08:00
|
|
|
|
|
|
|
|
if (devinfo.gen >= 8) {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-21 10:26:57 -08:00
|
|
|
|
|
|
|
|
TEST_P(validation_test, packed_byte_destination)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src_type;
|
|
|
|
|
bool neg, abs, sat;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} move[] = {
|
|
|
|
|
{ BRW_REGISTER_TYPE_UB, BRW_REGISTER_TYPE_UB, 0, 0, 0, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B , BRW_REGISTER_TYPE_B , 0, 0, 0, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_UB, BRW_REGISTER_TYPE_B , 0, 0, 0, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B , BRW_REGISTER_TYPE_UB, 0, 0, 0, true },
|
|
|
|
|
|
|
|
|
|
{ BRW_REGISTER_TYPE_UB, BRW_REGISTER_TYPE_UB, 1, 0, 0, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B , BRW_REGISTER_TYPE_B , 1, 0, 0, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_UB, BRW_REGISTER_TYPE_B , 1, 0, 0, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B , BRW_REGISTER_TYPE_UB, 1, 0, 0, false },
|
|
|
|
|
|
|
|
|
|
{ BRW_REGISTER_TYPE_UB, BRW_REGISTER_TYPE_UB, 0, 1, 0, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B , BRW_REGISTER_TYPE_B , 0, 1, 0, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_UB, BRW_REGISTER_TYPE_B , 0, 1, 0, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B , BRW_REGISTER_TYPE_UB, 0, 1, 0, false },
|
|
|
|
|
|
|
|
|
|
{ BRW_REGISTER_TYPE_UB, BRW_REGISTER_TYPE_UB, 0, 0, 1, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B , BRW_REGISTER_TYPE_B , 0, 0, 1, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_UB, BRW_REGISTER_TYPE_B , 0, 0, 1, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B , BRW_REGISTER_TYPE_UB, 0, 0, 1, false },
|
|
|
|
|
|
|
|
|
|
{ BRW_REGISTER_TYPE_UB, BRW_REGISTER_TYPE_UW, 0, 0, 0, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B , BRW_REGISTER_TYPE_W , 0, 0, 0, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_UB, BRW_REGISTER_TYPE_UD, 0, 0, 0, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B , BRW_REGISTER_TYPE_D , 0, 0, 0, false },
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(move); i++) {
|
2016-11-21 10:26:57 -08:00
|
|
|
brw_MOV(p, retype(g0, move[i].dst_type), retype(g0, move[i].src_type));
|
|
|
|
|
brw_inst_set_src0_negate(&devinfo, last_inst, move[i].neg);
|
|
|
|
|
brw_inst_set_src0_abs(&devinfo, last_inst, move[i].abs);
|
|
|
|
|
brw_inst_set_saturate(&devinfo, last_inst, move[i].sat);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(move[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
brw_SEL(p, retype(g0, BRW_REGISTER_TYPE_UB),
|
|
|
|
|
retype(g0, BRW_REGISTER_TYPE_UB),
|
|
|
|
|
retype(g0, BRW_REGISTER_TYPE_UB));
|
|
|
|
|
brw_inst_set_pred_control(&devinfo, last_inst, BRW_PREDICATE_NORMAL);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_SEL(p, retype(g0, BRW_REGISTER_TYPE_B),
|
|
|
|
|
retype(g0, BRW_REGISTER_TYPE_B),
|
|
|
|
|
retype(g0, BRW_REGISTER_TYPE_B));
|
|
|
|
|
brw_inst_set_pred_control(&devinfo, last_inst, BRW_PREDICATE_NORMAL);
|
|
|
|
|
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, byte_destination_relaxed_alignment)
|
|
|
|
|
{
|
|
|
|
|
brw_SEL(p, retype(g0, BRW_REGISTER_TYPE_B),
|
|
|
|
|
retype(g0, BRW_REGISTER_TYPE_W),
|
|
|
|
|
retype(g0, BRW_REGISTER_TYPE_W));
|
|
|
|
|
brw_inst_set_pred_control(&devinfo, last_inst, BRW_PREDICATE_NORMAL);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
|
|
|
|
|
brw_SEL(p, retype(g0, BRW_REGISTER_TYPE_B),
|
|
|
|
|
retype(g0, BRW_REGISTER_TYPE_W),
|
|
|
|
|
retype(g0, BRW_REGISTER_TYPE_W));
|
|
|
|
|
brw_inst_set_pred_control(&devinfo, last_inst, BRW_PREDICATE_NORMAL);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, 1);
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen > 4 || devinfo.is_g4x) {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
}
|
2017-07-27 18:29:50 -07:00
|
|
|
}
|
|
|
|
|
|
2019-02-08 09:20:56 +01:00
|
|
|
TEST_P(validation_test, byte_64bit_conversion)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src_type;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(dst_type, src_type, dst_stride, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
INST(B, Q, 1, false),
|
|
|
|
|
INST(B, UQ, 1, false),
|
|
|
|
|
INST(B, DF, 1, false),
|
|
|
|
|
INST(UB, Q, 1, false),
|
|
|
|
|
INST(UB, UQ, 1, false),
|
|
|
|
|
INST(UB, DF, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(B, Q, 2, false),
|
|
|
|
|
INST(B, UQ, 2, false),
|
|
|
|
|
INST(B , DF, 2, false),
|
|
|
|
|
INST(UB, Q, 2, false),
|
|
|
|
|
INST(UB, UQ, 2, false),
|
|
|
|
|
INST(UB, DF, 2, false),
|
|
|
|
|
|
|
|
|
|
INST(B, Q, 4, false),
|
|
|
|
|
INST(B, UQ, 4, false),
|
|
|
|
|
INST(B, DF, 4, false),
|
|
|
|
|
INST(UB, Q, 4, false),
|
|
|
|
|
INST(UB, UQ, 4, false),
|
|
|
|
|
INST(UB, DF, 4, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-08 09:20:56 +01:00
|
|
|
if (!devinfo.has_64bit_types && type_sz(inst[i].src_type) == 8)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
brw_MOV(p, retype(g0, inst[i].dst_type), retype(g0, inst[i].src_type));
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-01 11:41:33 +01:00
|
|
|
TEST_P(validation_test, half_float_conversion)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src_type;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
unsigned dst_subnr;
|
|
|
|
|
bool expected_result_bdw;
|
|
|
|
|
bool expected_result_chv_gen9;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST_C(dst_type, src_type, dst_stride, dst_subnr, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
dst_subnr, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
#define INST_S(dst_type, src_type, dst_stride, dst_subnr, \
|
|
|
|
|
expected_result_bdw, expected_result_chv_gen9) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
dst_subnr, \
|
|
|
|
|
expected_result_bdw, \
|
|
|
|
|
expected_result_chv_gen9, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* MOV to half-float destination */
|
|
|
|
|
INST_C(HF, B, 1, 0, false),
|
|
|
|
|
INST_C(HF, W, 1, 0, false),
|
|
|
|
|
INST_C(HF, HF, 1, 0, true),
|
|
|
|
|
INST_C(HF, HF, 1, 2, true),
|
|
|
|
|
INST_C(HF, D, 1, 0, false),
|
|
|
|
|
INST_S(HF, F, 1, 0, false, true),
|
|
|
|
|
INST_C(HF, Q, 1, 0, false),
|
|
|
|
|
INST_C(HF, B, 2, 0, true),
|
|
|
|
|
INST_C(HF, B, 2, 2, false),
|
|
|
|
|
INST_C(HF, W, 2, 0, true),
|
|
|
|
|
INST_C(HF, W, 2, 2, false),
|
|
|
|
|
INST_C(HF, HF, 2, 0, true),
|
|
|
|
|
INST_C(HF, HF, 2, 2, true),
|
|
|
|
|
INST_C(HF, D, 2, 0, true),
|
|
|
|
|
INST_C(HF, D, 2, 2, false),
|
|
|
|
|
INST_C(HF, F, 2, 0, true),
|
|
|
|
|
INST_S(HF, F, 2, 2, false, true),
|
|
|
|
|
INST_C(HF, Q, 2, 0, false),
|
|
|
|
|
INST_C(HF, DF, 2, 0, false),
|
|
|
|
|
INST_C(HF, B, 4, 0, false),
|
|
|
|
|
INST_C(HF, W, 4, 0, false),
|
|
|
|
|
INST_C(HF, HF, 4, 0, true),
|
|
|
|
|
INST_C(HF, HF, 4, 2, true),
|
|
|
|
|
INST_C(HF, D, 4, 0, false),
|
|
|
|
|
INST_C(HF, F, 4, 0, false),
|
|
|
|
|
INST_C(HF, Q, 4, 0, false),
|
|
|
|
|
INST_C(HF, DF, 4, 0, false),
|
|
|
|
|
|
|
|
|
|
/* MOV from half-float source */
|
|
|
|
|
INST_C( B, HF, 1, 0, false),
|
|
|
|
|
INST_C( W, HF, 1, 0, false),
|
|
|
|
|
INST_C( D, HF, 1, 0, true),
|
|
|
|
|
INST_C( D, HF, 1, 4, true),
|
|
|
|
|
INST_C( F, HF, 1, 0, true),
|
|
|
|
|
INST_C( F, HF, 1, 4, true),
|
|
|
|
|
INST_C( Q, HF, 1, 0, false),
|
|
|
|
|
INST_C(DF, HF, 1, 0, false),
|
|
|
|
|
INST_C( B, HF, 2, 0, false),
|
|
|
|
|
INST_C( W, HF, 2, 0, true),
|
|
|
|
|
INST_C( W, HF, 2, 2, false),
|
|
|
|
|
INST_C( D, HF, 2, 0, false),
|
|
|
|
|
INST_C( F, HF, 2, 0, true),
|
|
|
|
|
INST_C( B, HF, 4, 0, true),
|
|
|
|
|
INST_C( B, HF, 4, 1, false),
|
|
|
|
|
INST_C( W, HF, 4, 0, false),
|
|
|
|
|
|
|
|
|
|
#undef INST_C
|
|
|
|
|
#undef INST_S
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-01 11:41:33 +01:00
|
|
|
if (!devinfo.has_64bit_types &&
|
|
|
|
|
(type_sz(inst[i].src_type) == 8 || type_sz(inst[i].dst_type) == 8)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
brw_MOV(p, retype(g0, inst[i].dst_type), retype(g0, inst[i].src_type));
|
|
|
|
|
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, BRW_EXECUTE_4);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, inst[i].dst_subnr);
|
|
|
|
|
|
|
|
|
|
if (inst[i].src_type == BRW_REGISTER_TYPE_B) {
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_2);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_2);
|
|
|
|
|
} else {
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (devinfo.is_cherryview || devinfo.gen >= 9)
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result_chv_gen9, validate(p));
|
|
|
|
|
else
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result_bdw, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-06 09:13:22 +01:00
|
|
|
TEST_P(validation_test, mixed_float_source_indirect_addressing)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src0_type;
|
|
|
|
|
enum brw_reg_type src1_type;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
bool dst_indirect;
|
|
|
|
|
bool src0_indirect;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(dst_type, src0_type, src1_type, \
|
|
|
|
|
dst_stride, dst_indirect, src0_indirect, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
dst_indirect, \
|
|
|
|
|
src0_indirect, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Source and dest are mixed float: indirect src addressing not allowed */
|
|
|
|
|
INST(HF, F, F, 2, false, false, true),
|
|
|
|
|
INST(HF, F, F, 2, true, false, true),
|
|
|
|
|
INST(HF, F, F, 2, false, true, false),
|
|
|
|
|
INST(HF, F, F, 2, true, true, false),
|
|
|
|
|
INST( F, HF, F, 1, false, false, true),
|
|
|
|
|
INST( F, HF, F, 1, true, false, true),
|
|
|
|
|
INST( F, HF, F, 1, false, true, false),
|
|
|
|
|
INST( F, HF, F, 1, true, true, false),
|
|
|
|
|
|
|
|
|
|
INST(HF, HF, F, 2, false, false, true),
|
|
|
|
|
INST(HF, HF, F, 2, true, false, true),
|
|
|
|
|
INST(HF, HF, F, 2, false, true, false),
|
|
|
|
|
INST(HF, HF, F, 2, true, true, false),
|
|
|
|
|
INST( F, F, HF, 1, false, false, true),
|
|
|
|
|
INST( F, F, HF, 1, true, false, true),
|
|
|
|
|
INST( F, F, HF, 1, false, true, false),
|
|
|
|
|
INST( F, F, HF, 1, true, true, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-06 09:13:22 +01:00
|
|
|
brw_ADD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_address_mode(&devinfo, last_inst, inst[i].dst_indirect);
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
brw_inst_set_src0_address_mode(&devinfo, last_inst, inst[i].src0_indirect);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, mixed_float_align1_simd16)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
unsigned exec_size;
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src0_type;
|
|
|
|
|
enum brw_reg_type src1_type;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(exec_size, dst_type, src0_type, src1_type, \
|
|
|
|
|
dst_stride, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_EXECUTE_##exec_size, \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* No SIMD16 in mixed mode when destination is packed f16 */
|
|
|
|
|
INST( 8, HF, F, HF, 2, true),
|
|
|
|
|
INST(16, HF, HF, F, 2, true),
|
|
|
|
|
INST(16, HF, HF, F, 1, false),
|
|
|
|
|
INST(16, HF, F, HF, 1, false),
|
|
|
|
|
|
|
|
|
|
/* No SIMD16 in mixed mode when destination is f32 */
|
|
|
|
|
INST( 8, F, HF, F, 1, true),
|
|
|
|
|
INST( 8, F, F, HF, 1, true),
|
|
|
|
|
INST(16, F, HF, F, 1, false),
|
|
|
|
|
INST(16, F, F, HF, 1, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-06 09:13:22 +01:00
|
|
|
brw_ADD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, mixed_float_align1_packed_fp16_dst_acc_read_offset_0)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src0_type;
|
|
|
|
|
enum brw_reg_type src1_type;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
bool read_acc;
|
|
|
|
|
unsigned subnr;
|
|
|
|
|
bool expected_result_bdw;
|
|
|
|
|
bool expected_result_chv_skl;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(dst_type, src0_type, src1_type, dst_stride, read_acc, subnr, \
|
|
|
|
|
expected_result_bdw, expected_result_chv_skl) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
read_acc, \
|
|
|
|
|
subnr, \
|
|
|
|
|
expected_result_bdw, \
|
|
|
|
|
expected_result_chv_skl, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Destination is not packed */
|
|
|
|
|
INST(HF, HF, F, 2, true, 0, true, true),
|
|
|
|
|
INST(HF, HF, F, 2, true, 2, true, true),
|
|
|
|
|
INST(HF, HF, F, 2, true, 4, true, true),
|
|
|
|
|
INST(HF, HF, F, 2, true, 8, true, true),
|
|
|
|
|
INST(HF, HF, F, 2, true, 16, true, true),
|
|
|
|
|
|
|
|
|
|
/* Destination is packed, we don't read acc */
|
|
|
|
|
INST(HF, HF, F, 1, false, 0, false, true),
|
|
|
|
|
INST(HF, HF, F, 1, false, 2, false, true),
|
|
|
|
|
INST(HF, HF, F, 1, false, 4, false, true),
|
|
|
|
|
INST(HF, HF, F, 1, false, 8, false, true),
|
|
|
|
|
INST(HF, HF, F, 1, false, 16, false, true),
|
|
|
|
|
|
|
|
|
|
/* Destination is packed, we read acc */
|
|
|
|
|
INST(HF, HF, F, 1, true, 0, false, false),
|
|
|
|
|
INST(HF, HF, F, 1, true, 2, false, false),
|
|
|
|
|
INST(HF, HF, F, 1, true, 4, false, false),
|
|
|
|
|
INST(HF, HF, F, 1, true, 8, false, false),
|
|
|
|
|
INST(HF, HF, F, 1, true, 16, false, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-06 09:13:22 +01:00
|
|
|
brw_ADD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(inst[i].read_acc ? acc0 : g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_da1_subreg_nr(&devinfo, last_inst, inst[i].subnr);
|
|
|
|
|
|
|
|
|
|
if (devinfo.is_cherryview || devinfo.gen >= 9)
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result_chv_skl, validate(p));
|
|
|
|
|
else
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result_bdw, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, mixed_float_fp16_dest_with_acc)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
unsigned exec_size;
|
|
|
|
|
unsigned opcode;
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src0_type;
|
|
|
|
|
enum brw_reg_type src1_type;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
bool read_acc;
|
|
|
|
|
bool expected_result_bdw;
|
|
|
|
|
bool expected_result_chv_skl;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(exec_size, opcode, dst_type, src0_type, src1_type, \
|
|
|
|
|
dst_stride, read_acc,expected_result_bdw, \
|
|
|
|
|
expected_result_chv_skl) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_EXECUTE_##exec_size, \
|
|
|
|
|
BRW_OPCODE_##opcode, \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
read_acc, \
|
|
|
|
|
expected_result_bdw, \
|
|
|
|
|
expected_result_chv_skl, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Packed fp16 dest with implicit acc needs hstride=2 */
|
|
|
|
|
INST(8, MAC, HF, HF, F, 1, false, false, false),
|
|
|
|
|
INST(8, MAC, HF, HF, F, 2, false, true, true),
|
|
|
|
|
INST(8, MAC, HF, F, HF, 1, false, false, false),
|
|
|
|
|
INST(8, MAC, HF, F, HF, 2, false, true, true),
|
|
|
|
|
|
|
|
|
|
/* Packed fp16 dest with explicit acc needs hstride=2 */
|
|
|
|
|
INST(8, ADD, HF, HF, F, 1, true, false, false),
|
|
|
|
|
INST(8, ADD, HF, HF, F, 2, true, true, true),
|
|
|
|
|
INST(8, ADD, HF, F, HF, 1, true, false, false),
|
|
|
|
|
INST(8, ADD, HF, F, HF, 2, true, true, true),
|
|
|
|
|
|
|
|
|
|
/* If destination is not fp16, restriction doesn't apply */
|
|
|
|
|
INST(8, MAC, F, HF, F, 1, false, true, true),
|
|
|
|
|
INST(8, MAC, F, HF, F, 2, false, true, true),
|
|
|
|
|
|
|
|
|
|
/* If there is no implicit/explicit acc, restriction doesn't apply */
|
|
|
|
|
INST(8, ADD, HF, HF, F, 1, false, false, true),
|
|
|
|
|
INST(8, ADD, HF, HF, F, 2, false, true, true),
|
|
|
|
|
INST(8, ADD, HF, F, HF, 1, false, false, true),
|
|
|
|
|
INST(8, ADD, HF, F, HF, 2, false, true, true),
|
|
|
|
|
INST(8, ADD, F, HF, F, 1, false, true, true),
|
|
|
|
|
INST(8, ADD, F, HF, F, 2, false, true, true),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-06 09:13:22 +01:00
|
|
|
if (inst[i].opcode == BRW_OPCODE_MAC) {
|
|
|
|
|
brw_MAC(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
} else {
|
|
|
|
|
assert(inst[i].opcode == BRW_OPCODE_ADD);
|
|
|
|
|
brw_ADD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(inst[i].read_acc ? acc0: g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
|
|
|
|
|
if (devinfo.is_cherryview || devinfo.gen >= 9)
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result_chv_skl, validate(p));
|
|
|
|
|
else
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result_bdw, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, mixed_float_align1_math_strided_fp16_inputs)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src0_type;
|
|
|
|
|
enum brw_reg_type src1_type;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
unsigned src0_stride;
|
|
|
|
|
unsigned src1_stride;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(dst_type, src0_type, src1_type, \
|
|
|
|
|
dst_stride, src0_stride, src1_stride, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##src0_stride, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##src1_stride, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
INST(HF, HF, F, 2, 2, 1, true),
|
|
|
|
|
INST(HF, F, HF, 2, 1, 2, true),
|
|
|
|
|
INST(HF, F, HF, 1, 1, 2, true),
|
|
|
|
|
INST(HF, F, HF, 2, 1, 1, false),
|
|
|
|
|
INST(HF, HF, F, 2, 1, 1, false),
|
|
|
|
|
INST(HF, HF, F, 1, 1, 1, false),
|
|
|
|
|
INST(HF, HF, F, 2, 1, 1, false),
|
|
|
|
|
INST( F, HF, F, 1, 1, 1, false),
|
|
|
|
|
INST( F, F, HF, 1, 1, 2, true),
|
|
|
|
|
INST( F, HF, HF, 1, 2, 1, false),
|
|
|
|
|
INST( F, HF, HF, 1, 2, 2, true),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* No half-float math in gen8 */
|
|
|
|
|
if (devinfo.gen < 9)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-06 09:13:22 +01:00
|
|
|
gen6_math(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
BRW_MATH_FUNCTION_POW,
|
|
|
|
|
retype(g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, inst[i].src0_stride);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, inst[i].src1_stride);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, mixed_float_align1_packed_fp16_dst)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
unsigned exec_size;
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src0_type;
|
|
|
|
|
enum brw_reg_type src1_type;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
unsigned dst_subnr;
|
|
|
|
|
bool expected_result_bdw;
|
|
|
|
|
bool expected_result_chv_skl;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(exec_size, dst_type, src0_type, src1_type, dst_stride, dst_subnr, \
|
|
|
|
|
expected_result_bdw, expected_result_chv_skl) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_EXECUTE_##exec_size, \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
dst_subnr, \
|
|
|
|
|
expected_result_bdw, \
|
|
|
|
|
expected_result_chv_skl \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* SIMD8 packed fp16 dst won't cross oword boundaries if region is
|
|
|
|
|
* oword-aligned
|
|
|
|
|
*/
|
|
|
|
|
INST( 8, HF, HF, F, 1, 0, false, true),
|
|
|
|
|
INST( 8, HF, HF, F, 1, 2, false, false),
|
|
|
|
|
INST( 8, HF, HF, F, 1, 4, false, false),
|
|
|
|
|
INST( 8, HF, HF, F, 1, 8, false, false),
|
|
|
|
|
INST( 8, HF, HF, F, 1, 16, false, true),
|
|
|
|
|
|
|
|
|
|
/* SIMD16 packed fp16 always crosses oword boundaries */
|
|
|
|
|
INST(16, HF, HF, F, 1, 0, false, false),
|
|
|
|
|
INST(16, HF, HF, F, 1, 2, false, false),
|
|
|
|
|
INST(16, HF, HF, F, 1, 4, false, false),
|
|
|
|
|
INST(16, HF, HF, F, 1, 8, false, false),
|
|
|
|
|
INST(16, HF, HF, F, 1, 16, false, false),
|
|
|
|
|
|
|
|
|
|
/* If destination is not packed (or not fp16) we can cross oword
|
|
|
|
|
* boundaries
|
|
|
|
|
*/
|
|
|
|
|
INST( 8, HF, HF, F, 2, 0, true, true),
|
|
|
|
|
INST( 8, F, HF, F, 1, 0, true, true),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-06 09:13:22 +01:00
|
|
|
brw_ADD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, inst[i].dst_subnr);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, BRW_WIDTH_4);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
|
|
|
|
|
|
|
|
|
|
if (devinfo.is_cherryview || devinfo.gen >= 9)
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result_chv_skl, validate(p));
|
|
|
|
|
else
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result_bdw, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, mixed_float_align16_packed_data)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src0_type;
|
|
|
|
|
enum brw_reg_type src1_type;
|
|
|
|
|
unsigned src0_vstride;
|
|
|
|
|
unsigned src1_vstride;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(dst_type, src0_type, src1_type, \
|
|
|
|
|
src0_vstride, src1_vstride, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
BRW_VERTICAL_STRIDE_##src0_vstride, \
|
|
|
|
|
BRW_VERTICAL_STRIDE_##src1_vstride, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We only test with F destination because there is a restriction
|
|
|
|
|
* by which F->HF conversions need to be DWord aligned but Align16 also
|
|
|
|
|
* requires that destination horizontal stride is 1.
|
|
|
|
|
*/
|
|
|
|
|
INST(F, F, HF, 4, 4, true),
|
|
|
|
|
INST(F, F, HF, 2, 4, false),
|
|
|
|
|
INST(F, F, HF, 4, 2, false),
|
|
|
|
|
INST(F, F, HF, 0, 4, false),
|
|
|
|
|
INST(F, F, HF, 4, 0, false),
|
|
|
|
|
INST(F, HF, F, 4, 4, true),
|
|
|
|
|
INST(F, HF, F, 4, 2, false),
|
|
|
|
|
INST(F, HF, F, 2, 4, false),
|
|
|
|
|
INST(F, HF, F, 0, 4, false),
|
|
|
|
|
INST(F, HF, F, 4, 0, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen < 8 || devinfo.gen >= 11)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
brw_set_default_access_mode(p, BRW_ALIGN_16);
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-06 09:13:22 +01:00
|
|
|
brw_ADD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, inst[i].src0_vstride);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, inst[i].src1_vstride);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, mixed_float_align16_no_simd16)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
unsigned exec_size;
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src0_type;
|
|
|
|
|
enum brw_reg_type src1_type;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(exec_size, dst_type, src0_type, src1_type, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_EXECUTE_##exec_size, \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We only test with F destination because there is a restriction
|
|
|
|
|
* by which F->HF conversions need to be DWord aligned but Align16 also
|
|
|
|
|
* requires that destination horizontal stride is 1.
|
|
|
|
|
*/
|
|
|
|
|
INST( 8, F, F, HF, true),
|
|
|
|
|
INST( 8, F, HF, F, true),
|
|
|
|
|
INST( 8, F, F, HF, true),
|
|
|
|
|
INST(16, F, F, HF, false),
|
|
|
|
|
INST(16, F, HF, F, false),
|
|
|
|
|
INST(16, F, F, HF, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen < 8 || devinfo.gen >= 11)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
brw_set_default_access_mode(p, BRW_ALIGN_16);
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-06 09:13:22 +01:00
|
|
|
brw_ADD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, mixed_float_align16_no_acc_read)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src0_type;
|
|
|
|
|
enum brw_reg_type src1_type;
|
|
|
|
|
bool read_acc;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(dst_type, src0_type, src1_type, read_acc, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
read_acc, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We only test with F destination because there is a restriction
|
|
|
|
|
* by which F->HF conversions need to be DWord aligned but Align16 also
|
|
|
|
|
* requires that destination horizontal stride is 1.
|
|
|
|
|
*/
|
|
|
|
|
INST( F, F, HF, false, true),
|
|
|
|
|
INST( F, F, HF, true, false),
|
|
|
|
|
INST( F, HF, F, false, true),
|
|
|
|
|
INST( F, HF, F, true, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (devinfo.gen < 8 || devinfo.gen >= 11)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
brw_set_default_access_mode(p, BRW_ALIGN_16);
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-06 09:13:22 +01:00
|
|
|
brw_ADD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(inst[i].read_acc ? acc0 : g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, BRW_VERTICAL_STRIDE_4);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, mixed_float_align16_math_packed_format)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src0_type;
|
|
|
|
|
enum brw_reg_type src1_type;
|
|
|
|
|
unsigned src0_vstride;
|
|
|
|
|
unsigned src1_vstride;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(dst_type, src0_type, src1_type, \
|
|
|
|
|
src0_vstride, src1_vstride, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
BRW_VERTICAL_STRIDE_##src0_vstride, \
|
|
|
|
|
BRW_VERTICAL_STRIDE_##src1_vstride, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We only test with F destination because there is a restriction
|
|
|
|
|
* by which F->HF conversions need to be DWord aligned but Align16 also
|
|
|
|
|
* requires that destination horizontal stride is 1.
|
|
|
|
|
*/
|
|
|
|
|
INST( F, HF, F, 4, 0, false),
|
|
|
|
|
INST( F, HF, HF, 4, 4, true),
|
|
|
|
|
INST( F, F, HF, 4, 0, false),
|
|
|
|
|
INST( F, F, HF, 2, 4, false),
|
|
|
|
|
INST( F, F, HF, 4, 2, false),
|
|
|
|
|
INST( F, HF, HF, 0, 4, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Align16 Math for mixed float mode is not supported in gen8 */
|
|
|
|
|
if (devinfo.gen < 9 || devinfo.gen >= 11)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
brw_set_default_access_mode(p, BRW_ALIGN_16);
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2019-02-06 09:13:22 +01:00
|
|
|
gen6_math(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
BRW_MATH_FUNCTION_POW,
|
|
|
|
|
retype(g0, inst[i].src0_type),
|
|
|
|
|
retype(g0, inst[i].src1_type));
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, inst[i].src0_vstride);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, inst[i].src1_vstride);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-27 18:29:50 -07:00
|
|
|
TEST_P(validation_test, vector_immediate_destination_alignment)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src_type;
|
|
|
|
|
unsigned subnr;
|
|
|
|
|
unsigned exec_size;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} move[] = {
|
|
|
|
|
{ BRW_REGISTER_TYPE_F, BRW_REGISTER_TYPE_VF, 0, BRW_EXECUTE_4, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_F, BRW_REGISTER_TYPE_VF, 16, BRW_EXECUTE_4, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_F, BRW_REGISTER_TYPE_VF, 1, BRW_EXECUTE_4, false },
|
|
|
|
|
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_V, 0, BRW_EXECUTE_8, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_V, 16, BRW_EXECUTE_8, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_V, 1, BRW_EXECUTE_8, false },
|
2016-11-21 10:26:57 -08:00
|
|
|
|
2017-07-27 18:29:50 -07:00
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_UV, 0, BRW_EXECUTE_8, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_UV, 16, BRW_EXECUTE_8, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_UV, 1, BRW_EXECUTE_8, false },
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(move); i++) {
|
2017-07-27 18:29:50 -07:00
|
|
|
/* UV type is Gen6+ */
|
|
|
|
|
if (devinfo.gen < 6 &&
|
|
|
|
|
move[i].src_type == BRW_REGISTER_TYPE_UV)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
brw_MOV(p, retype(g0, move[i].dst_type), retype(zero, move[i].src_type));
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, move[i].subnr);
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, move[i].exec_size);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(move[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, vector_immediate_destination_stride)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src_type;
|
|
|
|
|
unsigned stride;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} move[] = {
|
|
|
|
|
{ BRW_REGISTER_TYPE_F, BRW_REGISTER_TYPE_VF, BRW_HORIZONTAL_STRIDE_1, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_F, BRW_REGISTER_TYPE_VF, BRW_HORIZONTAL_STRIDE_2, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_D, BRW_REGISTER_TYPE_VF, BRW_HORIZONTAL_STRIDE_1, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_D, BRW_REGISTER_TYPE_VF, BRW_HORIZONTAL_STRIDE_2, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_VF, BRW_HORIZONTAL_STRIDE_2, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B, BRW_REGISTER_TYPE_VF, BRW_HORIZONTAL_STRIDE_4, true },
|
|
|
|
|
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_V, BRW_HORIZONTAL_STRIDE_1, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_V, BRW_HORIZONTAL_STRIDE_2, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_V, BRW_HORIZONTAL_STRIDE_4, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B, BRW_REGISTER_TYPE_V, BRW_HORIZONTAL_STRIDE_2, true },
|
|
|
|
|
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_UV, BRW_HORIZONTAL_STRIDE_1, true },
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_UV, BRW_HORIZONTAL_STRIDE_2, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_W, BRW_REGISTER_TYPE_UV, BRW_HORIZONTAL_STRIDE_4, false },
|
|
|
|
|
{ BRW_REGISTER_TYPE_B, BRW_REGISTER_TYPE_UV, BRW_HORIZONTAL_STRIDE_2, true },
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(move); i++) {
|
2017-07-27 18:29:50 -07:00
|
|
|
/* UV type is Gen6+ */
|
|
|
|
|
if (devinfo.gen < 6 &&
|
|
|
|
|
move[i].src_type == BRW_REGISTER_TYPE_UV)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
brw_MOV(p, retype(g0, move[i].dst_type), retype(zero, move[i].src_type));
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, move[i].stride);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(move[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
2016-11-21 10:26:57 -08:00
|
|
|
}
|
2017-08-29 18:29:29 -07:00
|
|
|
|
|
|
|
|
TEST_P(validation_test, qword_low_power_align1_regioning_restrictions)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum opcode opcode;
|
|
|
|
|
unsigned exec_size;
|
|
|
|
|
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
unsigned dst_subreg;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
|
|
|
|
|
enum brw_reg_type src_type;
|
|
|
|
|
unsigned src_subreg;
|
|
|
|
|
unsigned src_vstride;
|
|
|
|
|
unsigned src_width;
|
|
|
|
|
unsigned src_hstride;
|
|
|
|
|
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(opcode, exec_size, dst_type, dst_subreg, dst_stride, src_type, \
|
|
|
|
|
src_subreg, src_vstride, src_width, src_hstride, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_OPCODE_##opcode, \
|
|
|
|
|
BRW_EXECUTE_##exec_size, \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
dst_subreg, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src_type, \
|
|
|
|
|
src_subreg, \
|
|
|
|
|
BRW_VERTICAL_STRIDE_##src_vstride, \
|
|
|
|
|
BRW_WIDTH_##src_width, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##src_hstride, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Some instruction that violate no restrictions, as a control */
|
|
|
|
|
INST(MOV, 4, DF, 0, 1, DF, 0, 4, 4, 1, true ),
|
|
|
|
|
INST(MOV, 4, Q, 0, 1, Q, 0, 4, 4, 1, true ),
|
|
|
|
|
INST(MOV, 4, UQ, 0, 1, UQ, 0, 4, 4, 1, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, DF, 0, 1, F, 0, 8, 4, 2, true ),
|
|
|
|
|
INST(MOV, 4, Q, 0, 1, D, 0, 8, 4, 2, true ),
|
|
|
|
|
INST(MOV, 4, UQ, 0, 1, UD, 0, 8, 4, 2, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, F, 0, 2, DF, 0, 4, 4, 1, true ),
|
|
|
|
|
INST(MOV, 4, D, 0, 2, Q, 0, 4, 4, 1, true ),
|
|
|
|
|
INST(MOV, 4, UD, 0, 2, UQ, 0, 4, 4, 1, true ),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 8, D, 0, 2, D, 0, 8, 4, 2, true ),
|
|
|
|
|
INST(MUL, 8, UD, 0, 2, UD, 0, 8, 4, 2, true ),
|
|
|
|
|
|
|
|
|
|
/* Something with subreg nrs */
|
|
|
|
|
INST(MOV, 2, DF, 8, 1, DF, 8, 2, 2, 1, true ),
|
|
|
|
|
INST(MOV, 2, Q, 8, 1, Q, 8, 2, 2, 1, true ),
|
|
|
|
|
INST(MOV, 2, UQ, 8, 1, UQ, 8, 2, 2, 1, true ),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 2, D, 4, 2, D, 4, 4, 2, 2, true ),
|
|
|
|
|
INST(MUL, 2, UD, 4, 2, UD, 4, 4, 2, 2, true ),
|
|
|
|
|
|
|
|
|
|
/* The PRMs say that for CHV, BXT:
|
|
|
|
|
*
|
|
|
|
|
* When source or destination datatype is 64b or operation is integer
|
|
|
|
|
* DWord multiply, regioning in Align1 must follow these rules:
|
|
|
|
|
*
|
|
|
|
|
* 1. Source and Destination horizontal stride must be aligned to the
|
|
|
|
|
* same qword.
|
|
|
|
|
*/
|
|
|
|
|
INST(MOV, 4, DF, 0, 2, DF, 0, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, Q, 0, 2, Q, 0, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, UQ, 0, 2, UQ, 0, 4, 4, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, DF, 0, 2, F, 0, 8, 4, 2, false),
|
|
|
|
|
INST(MOV, 4, Q, 0, 2, D, 0, 8, 4, 2, false),
|
|
|
|
|
INST(MOV, 4, UQ, 0, 2, UD, 0, 8, 4, 2, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, DF, 0, 2, F, 0, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, Q, 0, 2, D, 0, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, UQ, 0, 2, UD, 0, 4, 4, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 4, D, 0, 2, D, 0, 4, 4, 1, false),
|
|
|
|
|
INST(MUL, 4, UD, 0, 2, UD, 0, 4, 4, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 4, D, 0, 1, D, 0, 8, 4, 2, false),
|
|
|
|
|
INST(MUL, 4, UD, 0, 1, UD, 0, 8, 4, 2, false),
|
|
|
|
|
|
|
|
|
|
/* 2. Regioning must ensure Src.Vstride = Src.Width * Src.Hstride. */
|
|
|
|
|
INST(MOV, 4, DF, 0, 1, DF, 0, 0, 2, 1, false),
|
|
|
|
|
INST(MOV, 4, Q, 0, 1, Q, 0, 0, 2, 1, false),
|
|
|
|
|
INST(MOV, 4, UQ, 0, 1, UQ, 0, 0, 2, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, DF, 0, 1, F, 0, 0, 2, 2, false),
|
|
|
|
|
INST(MOV, 4, Q, 0, 1, D, 0, 0, 2, 2, false),
|
|
|
|
|
INST(MOV, 4, UQ, 0, 1, UD, 0, 0, 2, 2, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 8, F, 0, 2, DF, 0, 0, 2, 1, false),
|
|
|
|
|
INST(MOV, 8, D, 0, 2, Q, 0, 0, 2, 1, false),
|
|
|
|
|
INST(MOV, 8, UD, 0, 2, UQ, 0, 0, 2, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 8, D, 0, 2, D, 0, 0, 4, 2, false),
|
|
|
|
|
INST(MUL, 8, UD, 0, 2, UD, 0, 0, 4, 2, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 8, D, 0, 2, D, 0, 0, 4, 2, false),
|
|
|
|
|
INST(MUL, 8, UD, 0, 2, UD, 0, 0, 4, 2, false),
|
|
|
|
|
|
|
|
|
|
/* 3. Source and Destination offset must be the same, except the case
|
|
|
|
|
* of scalar source.
|
|
|
|
|
*/
|
|
|
|
|
INST(MOV, 2, DF, 8, 1, DF, 0, 2, 2, 1, false),
|
|
|
|
|
INST(MOV, 2, Q, 8, 1, Q, 0, 2, 2, 1, false),
|
|
|
|
|
INST(MOV, 2, UQ, 8, 1, UQ, 0, 2, 2, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 2, DF, 0, 1, DF, 8, 2, 2, 1, false),
|
|
|
|
|
INST(MOV, 2, Q, 0, 1, Q, 8, 2, 2, 1, false),
|
|
|
|
|
INST(MOV, 2, UQ, 0, 1, UQ, 8, 2, 2, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 4, D, 4, 2, D, 0, 4, 2, 2, false),
|
|
|
|
|
INST(MUL, 4, UD, 4, 2, UD, 0, 4, 2, 2, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 4, D, 0, 2, D, 4, 4, 2, 2, false),
|
|
|
|
|
INST(MUL, 4, UD, 0, 2, UD, 4, 4, 2, 2, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 2, DF, 8, 1, DF, 0, 0, 1, 0, true ),
|
|
|
|
|
INST(MOV, 2, Q, 8, 1, Q, 0, 0, 1, 0, true ),
|
|
|
|
|
INST(MOV, 2, UQ, 8, 1, UQ, 0, 0, 1, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 2, DF, 8, 1, F, 4, 0, 1, 0, true ),
|
|
|
|
|
INST(MOV, 2, Q, 8, 1, D, 4, 0, 1, 0, true ),
|
|
|
|
|
INST(MOV, 2, UQ, 8, 1, UD, 4, 0, 1, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 4, D, 4, 1, D, 0, 0, 1, 0, true ),
|
|
|
|
|
INST(MUL, 4, UD, 4, 1, UD, 0, 0, 1, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 4, D, 0, 1, D, 4, 0, 1, 0, true ),
|
|
|
|
|
INST(MUL, 4, UD, 0, 1, UD, 4, 0, 1, 0, true ),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* These restrictions only apply to Gen8+ */
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2018-03-20 08:23:35 -07:00
|
|
|
/* NoDDChk/NoDDClr does not exist on Gen12+ */
|
|
|
|
|
if (devinfo.gen >= 12)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2018-03-16 11:15:26 -07:00
|
|
|
if (!devinfo.has_64bit_types &&
|
|
|
|
|
(type_sz(inst[i].dst_type) == 8 || type_sz(inst[i].src_type) == 8))
|
|
|
|
|
continue;
|
|
|
|
|
|
2017-08-29 18:29:29 -07:00
|
|
|
if (inst[i].opcode == BRW_OPCODE_MOV) {
|
|
|
|
|
brw_MOV(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src_type));
|
|
|
|
|
} else {
|
|
|
|
|
assert(inst[i].opcode == BRW_OPCODE_MUL);
|
|
|
|
|
brw_MUL(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src_type),
|
|
|
|
|
retype(zero, inst[i].src_type));
|
|
|
|
|
}
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, inst[i].dst_subreg);
|
|
|
|
|
brw_inst_set_src0_da1_subreg_nr(&devinfo, last_inst, inst[i].src_subreg);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, inst[i].src_vstride);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, inst[i].src_width);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, inst[i].src_hstride);
|
|
|
|
|
|
|
|
|
|
if (devinfo.is_cherryview || gen_device_info_is_9lp(&devinfo)) {
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, qword_low_power_no_indirect_addressing)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum opcode opcode;
|
|
|
|
|
unsigned exec_size;
|
|
|
|
|
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
bool dst_is_indirect;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
|
|
|
|
|
enum brw_reg_type src_type;
|
|
|
|
|
bool src_is_indirect;
|
|
|
|
|
unsigned src_vstride;
|
|
|
|
|
unsigned src_width;
|
|
|
|
|
unsigned src_hstride;
|
|
|
|
|
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(opcode, exec_size, dst_type, dst_is_indirect, dst_stride, \
|
|
|
|
|
src_type, src_is_indirect, src_vstride, src_width, src_hstride, \
|
|
|
|
|
expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_OPCODE_##opcode, \
|
|
|
|
|
BRW_EXECUTE_##exec_size, \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
dst_is_indirect, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src_type, \
|
|
|
|
|
src_is_indirect, \
|
|
|
|
|
BRW_VERTICAL_STRIDE_##src_vstride, \
|
|
|
|
|
BRW_WIDTH_##src_width, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##src_hstride, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Some instruction that violate no restrictions, as a control */
|
|
|
|
|
INST(MOV, 4, DF, 0, 1, DF, 0, 4, 4, 1, true ),
|
|
|
|
|
INST(MOV, 4, Q, 0, 1, Q, 0, 4, 4, 1, true ),
|
|
|
|
|
INST(MOV, 4, UQ, 0, 1, UQ, 0, 4, 4, 1, true ),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 8, D, 0, 2, D, 0, 8, 4, 2, true ),
|
|
|
|
|
INST(MUL, 8, UD, 0, 2, UD, 0, 8, 4, 2, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, F, 1, 1, F, 0, 4, 4, 1, true ),
|
|
|
|
|
INST(MOV, 4, F, 0, 1, F, 1, 4, 4, 1, true ),
|
|
|
|
|
INST(MOV, 4, F, 1, 1, F, 1, 4, 4, 1, true ),
|
|
|
|
|
|
|
|
|
|
/* The PRMs say that for CHV, BXT:
|
|
|
|
|
*
|
|
|
|
|
* When source or destination datatype is 64b or operation is integer
|
|
|
|
|
* DWord multiply, indirect addressing must not be used.
|
|
|
|
|
*/
|
|
|
|
|
INST(MOV, 4, DF, 1, 1, DF, 0, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, Q, 1, 1, Q, 0, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, UQ, 1, 1, UQ, 0, 4, 4, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, DF, 0, 1, DF, 1, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, Q, 0, 1, Q, 1, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, UQ, 0, 1, UQ, 1, 4, 4, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, DF, 1, 1, F, 0, 8, 4, 2, false),
|
|
|
|
|
INST(MOV, 4, Q, 1, 1, D, 0, 8, 4, 2, false),
|
|
|
|
|
INST(MOV, 4, UQ, 1, 1, UD, 0, 8, 4, 2, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, DF, 0, 1, F, 1, 8, 4, 2, false),
|
|
|
|
|
INST(MOV, 4, Q, 0, 1, D, 1, 8, 4, 2, false),
|
|
|
|
|
INST(MOV, 4, UQ, 0, 1, UD, 1, 8, 4, 2, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, F, 1, 2, DF, 0, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, D, 1, 2, Q, 0, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, UD, 1, 2, UQ, 0, 4, 4, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, F, 0, 2, DF, 1, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, D, 0, 2, Q, 1, 4, 4, 1, false),
|
|
|
|
|
INST(MOV, 4, UD, 0, 2, UQ, 1, 4, 4, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 8, D, 1, 2, D, 0, 8, 4, 2, false),
|
|
|
|
|
INST(MUL, 8, UD, 1, 2, UD, 0, 8, 4, 2, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 8, D, 0, 2, D, 1, 8, 4, 2, false),
|
|
|
|
|
INST(MUL, 8, UD, 0, 2, UD, 1, 8, 4, 2, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* These restrictions only apply to Gen8+ */
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2018-03-16 11:15:26 -07:00
|
|
|
if (!devinfo.has_64bit_types &&
|
|
|
|
|
(type_sz(inst[i].dst_type) == 8 || type_sz(inst[i].src_type) == 8))
|
|
|
|
|
continue;
|
|
|
|
|
|
2017-08-29 18:29:29 -07:00
|
|
|
if (inst[i].opcode == BRW_OPCODE_MOV) {
|
|
|
|
|
brw_MOV(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src_type));
|
|
|
|
|
} else {
|
|
|
|
|
assert(inst[i].opcode == BRW_OPCODE_MUL);
|
|
|
|
|
brw_MUL(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src_type),
|
|
|
|
|
retype(zero, inst[i].src_type));
|
|
|
|
|
}
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_address_mode(&devinfo, last_inst, inst[i].dst_is_indirect);
|
|
|
|
|
brw_inst_set_src0_address_mode(&devinfo, last_inst, inst[i].src_is_indirect);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, inst[i].src_vstride);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, inst[i].src_width);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, inst[i].src_hstride);
|
|
|
|
|
|
|
|
|
|
if (devinfo.is_cherryview || gen_device_info_is_9lp(&devinfo)) {
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, qword_low_power_no_64bit_arf)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum opcode opcode;
|
|
|
|
|
unsigned exec_size;
|
|
|
|
|
|
|
|
|
|
struct brw_reg dst;
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
|
|
|
|
|
struct brw_reg src;
|
|
|
|
|
enum brw_reg_type src_type;
|
|
|
|
|
unsigned src_vstride;
|
|
|
|
|
unsigned src_width;
|
|
|
|
|
unsigned src_hstride;
|
|
|
|
|
|
|
|
|
|
bool acc_wr;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(opcode, exec_size, dst, dst_type, dst_stride, \
|
|
|
|
|
src, src_type, src_vstride, src_width, src_hstride, \
|
|
|
|
|
acc_wr, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_OPCODE_##opcode, \
|
|
|
|
|
BRW_EXECUTE_##exec_size, \
|
|
|
|
|
dst, \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
src, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src_type, \
|
|
|
|
|
BRW_VERTICAL_STRIDE_##src_vstride, \
|
|
|
|
|
BRW_WIDTH_##src_width, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##src_hstride, \
|
|
|
|
|
acc_wr, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Some instruction that violate no restrictions, as a control */
|
|
|
|
|
INST(MOV, 4, g0, DF, 1, g0, F, 4, 2, 2, 0, true ),
|
|
|
|
|
INST(MOV, 4, g0, F, 2, g0, DF, 4, 4, 1, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, g0, Q, 1, g0, D, 4, 2, 2, 0, true ),
|
|
|
|
|
INST(MOV, 4, g0, D, 2, g0, Q, 4, 4, 1, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, g0, UQ, 1, g0, UD, 4, 2, 2, 0, true ),
|
|
|
|
|
INST(MOV, 4, g0, UD, 2, g0, UQ, 4, 4, 1, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, null, F, 1, g0, F, 4, 4, 1, 0, true ),
|
|
|
|
|
INST(MOV, 4, acc0, F, 1, g0, F, 4, 4, 1, 0, true ),
|
|
|
|
|
INST(MOV, 4, g0, F, 1, acc0, F, 4, 4, 1, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, null, D, 1, g0, D, 4, 4, 1, 0, true ),
|
|
|
|
|
INST(MOV, 4, acc0, D, 1, g0, D, 4, 4, 1, 0, true ),
|
|
|
|
|
INST(MOV, 4, g0, D, 1, acc0, D, 4, 4, 1, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, null, UD, 1, g0, UD, 4, 4, 1, 0, true ),
|
|
|
|
|
INST(MOV, 4, acc0, UD, 1, g0, UD, 4, 4, 1, 0, true ),
|
|
|
|
|
INST(MOV, 4, g0, UD, 1, acc0, UD, 4, 4, 1, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 4, g0, D, 2, g0, D, 4, 2, 2, 0, true ),
|
|
|
|
|
INST(MUL, 4, g0, UD, 2, g0, UD, 4, 2, 2, 0, true ),
|
|
|
|
|
|
|
|
|
|
/* The PRMs say that for CHV, BXT:
|
|
|
|
|
*
|
|
|
|
|
* ARF registers must never be used with 64b datatype or when
|
|
|
|
|
* operation is integer DWord multiply.
|
|
|
|
|
*/
|
|
|
|
|
INST(MOV, 4, acc0, DF, 1, g0, F, 4, 2, 2, 0, false),
|
|
|
|
|
INST(MOV, 4, g0, DF, 1, acc0, F, 4, 2, 2, 0, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, acc0, Q, 1, g0, D, 4, 2, 2, 0, false),
|
|
|
|
|
INST(MOV, 4, g0, Q, 1, acc0, D, 4, 2, 2, 0, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, acc0, UQ, 1, g0, UD, 4, 2, 2, 0, false),
|
|
|
|
|
INST(MOV, 4, g0, UQ, 1, acc0, UD, 4, 2, 2, 0, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, acc0, F, 2, g0, DF, 4, 4, 1, 0, false),
|
|
|
|
|
INST(MOV, 4, g0, F, 2, acc0, DF, 4, 4, 1, 0, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, acc0, D, 2, g0, Q, 4, 4, 1, 0, false),
|
|
|
|
|
INST(MOV, 4, g0, D, 2, acc0, Q, 4, 4, 1, 0, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, acc0, UD, 2, g0, UQ, 4, 4, 1, 0, false),
|
|
|
|
|
INST(MOV, 4, g0, UD, 2, acc0, UQ, 4, 4, 1, 0, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 4, acc0, D, 2, g0, D, 4, 2, 2, 0, false),
|
|
|
|
|
INST(MUL, 4, acc0, UD, 2, g0, UD, 4, 2, 2, 0, false),
|
|
|
|
|
/* MUL cannot have integer accumulator sources, so don't test that */
|
|
|
|
|
|
|
|
|
|
/* We assume that the restriction does not apply to the null register */
|
|
|
|
|
INST(MOV, 4, null, DF, 1, g0, F, 4, 2, 2, 0, true ),
|
|
|
|
|
INST(MOV, 4, null, Q, 1, g0, D, 4, 2, 2, 0, true ),
|
|
|
|
|
INST(MOV, 4, null, UQ, 1, g0, UD, 4, 2, 2, 0, true ),
|
|
|
|
|
|
|
|
|
|
/* Check implicit accumulator write control */
|
|
|
|
|
INST(MOV, 4, null, DF, 1, g0, F, 4, 2, 2, 1, false),
|
|
|
|
|
INST(MUL, 4, null, DF, 1, g0, F, 4, 2, 2, 1, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* These restrictions only apply to Gen8+ */
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2018-03-16 11:15:26 -07:00
|
|
|
if (!devinfo.has_64bit_types &&
|
|
|
|
|
(type_sz(inst[i].dst_type) == 8 || type_sz(inst[i].src_type) == 8))
|
|
|
|
|
continue;
|
|
|
|
|
|
2017-08-29 18:29:29 -07:00
|
|
|
if (inst[i].opcode == BRW_OPCODE_MOV) {
|
|
|
|
|
brw_MOV(p, retype(inst[i].dst, inst[i].dst_type),
|
|
|
|
|
retype(inst[i].src, inst[i].src_type));
|
|
|
|
|
} else {
|
|
|
|
|
assert(inst[i].opcode == BRW_OPCODE_MUL);
|
|
|
|
|
brw_MUL(p, retype(inst[i].dst, inst[i].dst_type),
|
|
|
|
|
retype(inst[i].src, inst[i].src_type),
|
|
|
|
|
retype(zero, inst[i].src_type));
|
|
|
|
|
brw_inst_set_opcode(&devinfo, last_inst, inst[i].opcode);
|
|
|
|
|
}
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
|
|
|
|
|
brw_inst_set_acc_wr_control(&devinfo, last_inst, inst[i].acc_wr);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, inst[i].src_vstride);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, inst[i].src_width);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, inst[i].src_hstride);
|
|
|
|
|
|
|
|
|
|
if (devinfo.is_cherryview || gen_device_info_is_9lp(&devinfo)) {
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-16 11:15:26 -07:00
|
|
|
if (!devinfo.has_64bit_types)
|
|
|
|
|
return;
|
|
|
|
|
|
2017-08-29 18:29:29 -07:00
|
|
|
/* MAC implicitly reads the accumulator */
|
|
|
|
|
brw_MAC(p, retype(g0, BRW_REGISTER_TYPE_DF),
|
|
|
|
|
retype(stride(g0, 4, 4, 1), BRW_REGISTER_TYPE_DF),
|
|
|
|
|
retype(stride(g0, 4, 4, 1), BRW_REGISTER_TYPE_DF));
|
|
|
|
|
if (devinfo.is_cherryview || gen_device_info_is_9lp(&devinfo)) {
|
|
|
|
|
EXPECT_FALSE(validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, align16_64_bit_integer)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum opcode opcode;
|
|
|
|
|
unsigned exec_size;
|
|
|
|
|
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
enum brw_reg_type src_type;
|
|
|
|
|
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(opcode, exec_size, dst_type, src_type, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_OPCODE_##opcode, \
|
|
|
|
|
BRW_EXECUTE_##exec_size, \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src_type, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Some instruction that violate no restrictions, as a control */
|
|
|
|
|
INST(MOV, 2, Q, D, true ),
|
|
|
|
|
INST(MOV, 2, UQ, UD, true ),
|
|
|
|
|
INST(MOV, 2, DF, F, true ),
|
|
|
|
|
|
|
|
|
|
INST(ADD, 2, Q, D, true ),
|
|
|
|
|
INST(ADD, 2, UQ, UD, true ),
|
|
|
|
|
INST(ADD, 2, DF, F, true ),
|
|
|
|
|
|
|
|
|
|
/* The PRMs say that for BDW, SKL:
|
|
|
|
|
*
|
|
|
|
|
* If Align16 is required for an operation with QW destination and non-QW
|
|
|
|
|
* source datatypes, the execution size cannot exceed 2.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, Q, D, false),
|
|
|
|
|
INST(MOV, 4, UQ, UD, false),
|
|
|
|
|
INST(MOV, 4, DF, F, false),
|
|
|
|
|
|
|
|
|
|
INST(ADD, 4, Q, D, false),
|
|
|
|
|
INST(ADD, 4, UQ, UD, false),
|
|
|
|
|
INST(ADD, 4, DF, F, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* 64-bit integer types exist on Gen8+ */
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2018-02-08 10:23:11 -08:00
|
|
|
/* Align16 does not exist on Gen11+ */
|
|
|
|
|
if (devinfo.gen >= 11)
|
|
|
|
|
return;
|
|
|
|
|
|
2017-08-29 18:29:29 -07:00
|
|
|
brw_set_default_access_mode(p, BRW_ALIGN_16);
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2017-08-29 18:29:29 -07:00
|
|
|
if (inst[i].opcode == BRW_OPCODE_MOV) {
|
|
|
|
|
brw_MOV(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src_type));
|
|
|
|
|
} else {
|
|
|
|
|
assert(inst[i].opcode == BRW_OPCODE_ADD);
|
|
|
|
|
brw_ADD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src_type),
|
|
|
|
|
retype(g0, inst[i].src_type));
|
|
|
|
|
}
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_P(validation_test, qword_low_power_no_depctrl)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum opcode opcode;
|
|
|
|
|
unsigned exec_size;
|
|
|
|
|
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
unsigned dst_stride;
|
|
|
|
|
|
|
|
|
|
enum brw_reg_type src_type;
|
|
|
|
|
unsigned src_vstride;
|
|
|
|
|
unsigned src_width;
|
|
|
|
|
unsigned src_hstride;
|
|
|
|
|
|
|
|
|
|
bool no_dd_check;
|
|
|
|
|
bool no_dd_clear;
|
|
|
|
|
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(opcode, exec_size, dst_type, dst_stride, \
|
|
|
|
|
src_type, src_vstride, src_width, src_hstride, \
|
|
|
|
|
no_dd_check, no_dd_clear, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_OPCODE_##opcode, \
|
|
|
|
|
BRW_EXECUTE_##exec_size, \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##dst_stride, \
|
|
|
|
|
BRW_REGISTER_TYPE_##src_type, \
|
|
|
|
|
BRW_VERTICAL_STRIDE_##src_vstride, \
|
|
|
|
|
BRW_WIDTH_##src_width, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##src_hstride, \
|
|
|
|
|
no_dd_check, \
|
|
|
|
|
no_dd_clear, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Some instruction that violate no restrictions, as a control */
|
|
|
|
|
INST(MOV, 4, DF, 1, F, 8, 4, 2, 0, 0, true ),
|
|
|
|
|
INST(MOV, 4, Q, 1, D, 8, 4, 2, 0, 0, true ),
|
|
|
|
|
INST(MOV, 4, UQ, 1, UD, 8, 4, 2, 0, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, F, 2, DF, 4, 4, 1, 0, 0, true ),
|
|
|
|
|
INST(MOV, 4, D, 2, Q, 4, 4, 1, 0, 0, true ),
|
|
|
|
|
INST(MOV, 4, UD, 2, UQ, 4, 4, 1, 0, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 8, D, 2, D, 8, 4, 2, 0, 0, true ),
|
|
|
|
|
INST(MUL, 8, UD, 2, UD, 8, 4, 2, 0, 0, true ),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, F, 1, F, 4, 4, 1, 1, 1, true ),
|
|
|
|
|
|
|
|
|
|
/* The PRMs say that for CHV, BXT:
|
|
|
|
|
*
|
|
|
|
|
* When source or destination datatype is 64b or operation is integer
|
|
|
|
|
* DWord multiply, DepCtrl must not be used.
|
|
|
|
|
*/
|
|
|
|
|
INST(MOV, 4, DF, 1, F, 8, 4, 2, 1, 0, false),
|
|
|
|
|
INST(MOV, 4, Q, 1, D, 8, 4, 2, 1, 0, false),
|
|
|
|
|
INST(MOV, 4, UQ, 1, UD, 8, 4, 2, 1, 0, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, F, 2, DF, 4, 4, 1, 1, 0, false),
|
|
|
|
|
INST(MOV, 4, D, 2, Q, 4, 4, 1, 1, 0, false),
|
|
|
|
|
INST(MOV, 4, UD, 2, UQ, 4, 4, 1, 1, 0, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, DF, 1, F, 8, 4, 2, 0, 1, false),
|
|
|
|
|
INST(MOV, 4, Q, 1, D, 8, 4, 2, 0, 1, false),
|
|
|
|
|
INST(MOV, 4, UQ, 1, UD, 8, 4, 2, 0, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MOV, 4, F, 2, DF, 4, 4, 1, 0, 1, false),
|
|
|
|
|
INST(MOV, 4, D, 2, Q, 4, 4, 1, 0, 1, false),
|
|
|
|
|
INST(MOV, 4, UD, 2, UQ, 4, 4, 1, 0, 1, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 8, D, 2, D, 8, 4, 2, 1, 0, false),
|
|
|
|
|
INST(MUL, 8, UD, 2, UD, 8, 4, 2, 1, 0, false),
|
|
|
|
|
|
|
|
|
|
INST(MUL, 8, D, 2, D, 8, 4, 2, 0, 1, false),
|
|
|
|
|
INST(MUL, 8, UD, 2, UD, 8, 4, 2, 0, 1, false),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* These restrictions only apply to Gen8+ */
|
|
|
|
|
if (devinfo.gen < 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2018-03-20 08:23:35 -07:00
|
|
|
/* NoDDChk/NoDDClr does not exist on Gen12+ */
|
|
|
|
|
if (devinfo.gen >= 12)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-16 14:22:14 -08:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
2018-03-16 11:15:26 -07:00
|
|
|
if (!devinfo.has_64bit_types &&
|
|
|
|
|
(type_sz(inst[i].dst_type) == 8 || type_sz(inst[i].src_type) == 8))
|
|
|
|
|
continue;
|
|
|
|
|
|
2017-08-29 18:29:29 -07:00
|
|
|
if (inst[i].opcode == BRW_OPCODE_MOV) {
|
|
|
|
|
brw_MOV(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src_type));
|
|
|
|
|
} else {
|
|
|
|
|
assert(inst[i].opcode == BRW_OPCODE_MUL);
|
|
|
|
|
brw_MUL(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].src_type),
|
|
|
|
|
retype(zero, inst[i].src_type));
|
|
|
|
|
}
|
|
|
|
|
brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, inst[i].dst_stride);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, inst[i].src_vstride);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, inst[i].src_width);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, inst[i].src_hstride);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_no_dd_check(&devinfo, last_inst, inst[i].no_dd_check);
|
|
|
|
|
brw_inst_set_no_dd_clear(&devinfo, last_inst, inst[i].no_dd_clear);
|
|
|
|
|
|
|
|
|
|
if (devinfo.is_cherryview || gen_device_info_is_9lp(&devinfo)) {
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
} else {
|
|
|
|
|
EXPECT_TRUE(validate(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-19 05:09:35 -07:00
|
|
|
|
|
|
|
|
TEST_P(validation_test, gen11_no_byte_src_1_2)
|
|
|
|
|
{
|
|
|
|
|
static const struct {
|
|
|
|
|
enum opcode opcode;
|
|
|
|
|
unsigned access_mode;
|
|
|
|
|
|
|
|
|
|
enum brw_reg_type dst_type;
|
|
|
|
|
struct {
|
|
|
|
|
enum brw_reg_type type;
|
|
|
|
|
unsigned vstride;
|
|
|
|
|
unsigned width;
|
|
|
|
|
unsigned hstride;
|
|
|
|
|
} srcs[3];
|
|
|
|
|
|
|
|
|
|
int gen;
|
|
|
|
|
bool expected_result;
|
|
|
|
|
} inst[] = {
|
|
|
|
|
#define INST(opcode, access_mode, dst_type, \
|
|
|
|
|
src0_type, src0_vstride, src0_width, src0_hstride, \
|
|
|
|
|
src1_type, src1_vstride, src1_width, src1_hstride, \
|
|
|
|
|
src2_type, \
|
|
|
|
|
gen, expected_result) \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_OPCODE_##opcode, \
|
|
|
|
|
BRW_ALIGN_##access_mode, \
|
|
|
|
|
BRW_REGISTER_TYPE_##dst_type, \
|
|
|
|
|
{ \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##src0_type, \
|
|
|
|
|
BRW_VERTICAL_STRIDE_##src0_vstride, \
|
|
|
|
|
BRW_WIDTH_##src0_width, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##src0_hstride, \
|
|
|
|
|
}, \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##src1_type, \
|
|
|
|
|
BRW_VERTICAL_STRIDE_##src1_vstride, \
|
|
|
|
|
BRW_WIDTH_##src1_width, \
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_##src1_hstride, \
|
|
|
|
|
}, \
|
|
|
|
|
{ \
|
|
|
|
|
BRW_REGISTER_TYPE_##src2_type, \
|
|
|
|
|
}, \
|
|
|
|
|
}, \
|
|
|
|
|
gen, \
|
|
|
|
|
expected_result, \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Passes on < 11 */
|
|
|
|
|
INST(MOV, 16, F, B, 2, 4, 0, UD, 0, 4, 0, D, 8, true ),
|
|
|
|
|
INST(ADD, 16, UD, F, 0, 4, 0, UB, 0, 1, 0, D, 7, true ),
|
|
|
|
|
INST(MAD, 16, D, B, 0, 4, 0, UB, 0, 1, 0, B, 10, true ),
|
|
|
|
|
|
|
|
|
|
/* Fails on 11+ */
|
|
|
|
|
INST(MAD, 1, UB, W, 1, 1, 0, D, 0, 4, 0, B, 11, false ),
|
|
|
|
|
INST(MAD, 1, UB, W, 1, 1, 1, UB, 1, 1, 0, W, 11, false ),
|
|
|
|
|
INST(ADD, 1, W, W, 1, 4, 1, B, 1, 1, 0, D, 11, false ),
|
|
|
|
|
|
|
|
|
|
/* Passes on 11+ */
|
|
|
|
|
INST(MOV, 1, W, B, 8, 8, 1, D, 8, 8, 1, D, 11, true ),
|
|
|
|
|
INST(ADD, 1, UD, B, 8, 8, 1, W, 8, 8, 1, D, 11, true ),
|
|
|
|
|
INST(MAD, 1, B, B, 0, 1, 0, D, 0, 4, 0, W, 11, true ),
|
|
|
|
|
|
|
|
|
|
#undef INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(inst); i++) {
|
|
|
|
|
/* Skip instruction not meant for this gen. */
|
|
|
|
|
if (devinfo.gen != inst[i].gen)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
brw_push_insn_state(p);
|
|
|
|
|
|
|
|
|
|
brw_set_default_exec_size(p, BRW_EXECUTE_8);
|
|
|
|
|
brw_set_default_access_mode(p, inst[i].access_mode);
|
|
|
|
|
|
|
|
|
|
switch (inst[i].opcode) {
|
|
|
|
|
case BRW_OPCODE_MOV:
|
|
|
|
|
brw_MOV(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].srcs[0].type));
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, inst[i].srcs[0].vstride);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, inst[i].srcs[0].hstride);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_ADD:
|
|
|
|
|
brw_ADD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].srcs[0].type),
|
|
|
|
|
retype(g0, inst[i].srcs[1].type));
|
|
|
|
|
brw_inst_set_src0_vstride(&devinfo, last_inst, inst[i].srcs[0].vstride);
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, inst[i].srcs[0].width);
|
|
|
|
|
brw_inst_set_src0_hstride(&devinfo, last_inst, inst[i].srcs[0].hstride);
|
|
|
|
|
brw_inst_set_src1_vstride(&devinfo, last_inst, inst[i].srcs[1].vstride);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, inst[i].srcs[1].width);
|
|
|
|
|
brw_inst_set_src1_hstride(&devinfo, last_inst, inst[i].srcs[1].hstride);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_MAD:
|
|
|
|
|
brw_MAD(p, retype(g0, inst[i].dst_type),
|
|
|
|
|
retype(g0, inst[i].srcs[0].type),
|
|
|
|
|
retype(g0, inst[i].srcs[1].type),
|
|
|
|
|
retype(g0, inst[i].srcs[2].type));
|
|
|
|
|
brw_inst_set_3src_a1_src0_vstride(&devinfo, last_inst, inst[i].srcs[0].vstride);
|
|
|
|
|
brw_inst_set_3src_a1_src0_hstride(&devinfo, last_inst, inst[i].srcs[0].hstride);
|
|
|
|
|
brw_inst_set_3src_a1_src1_vstride(&devinfo, last_inst, inst[i].srcs[0].vstride);
|
|
|
|
|
brw_inst_set_3src_a1_src1_hstride(&devinfo, last_inst, inst[i].srcs[0].hstride);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
unreachable("invalid opcode");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
brw_inst_set_dst_hstride(&devinfo, last_inst, BRW_HORIZONTAL_STRIDE_1);
|
|
|
|
|
|
|
|
|
|
brw_inst_set_src0_width(&devinfo, last_inst, inst[i].srcs[0].width);
|
|
|
|
|
brw_inst_set_src1_width(&devinfo, last_inst, inst[i].srcs[1].width);
|
|
|
|
|
|
|
|
|
|
brw_pop_insn_state(p);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(inst[i].expected_result, validate(p));
|
|
|
|
|
|
|
|
|
|
clear_instructions(p);
|
|
|
|
|
}
|
|
|
|
|
}
|