Home
last modified time | relevance | path

Searched refs:src1_type (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/intel/compiler/
Dbrw_eu_validate.c617 enum brw_reg_type src1_type = brw_inst_src1_type(devinfo, inst); in is_half_float_conversion() local
618 return dst_type != src1_type && in is_half_float_conversion()
620 src1_type == BRW_REGISTER_TYPE_HF); in is_half_float_conversion()
653 enum brw_reg_type src1_type = brw_inst_src1_type(devinfo, inst); in is_mixed_float() local
655 return types_are_mixed_float(src0_type, src1_type) || in is_mixed_float()
657 types_are_mixed_float(src1_type, dst_type); in is_mixed_float()
677 enum brw_reg_type src1_type = brw_inst_src1_type(devinfo, inst); in is_byte_conversion() local
678 return dst_type != src1_type && in is_byte_conversion()
679 (type_sz(dst_type) == 1 || type_sz(src1_type) == 1); in is_byte_conversion()
777 enum brw_reg_type src1_type = num_sources > 1 ? in general_restrictions_based_on_operand_types() local
[all …]
Dtest_eu_validate.cpp1433 enum brw_reg_type src1_type; in TEST_P() member
1439 #define INST(dst_type, src0_type, src1_type, \ in TEST_P() argument
1444 BRW_REGISTER_TYPE_##src1_type, \ in TEST_P()
1479 retype(g0, inst[i].src1_type)); in TEST_P()
1497 enum brw_reg_type src1_type; in TEST_P() member
1501 #define INST(exec_size, dst_type, src0_type, src1_type, \ in TEST_P() argument
1507 BRW_REGISTER_TYPE_##src1_type, \ in TEST_P()
1533 retype(g0, inst[i].src1_type)); in TEST_P()
1550 enum brw_reg_type src1_type; in TEST_P() member
1557 #define INST(dst_type, src0_type, src1_type, dst_stride, read_acc, subnr, \ in TEST_P() argument
[all …]
/external/mesa3d/src/compiler/nir/
Dnir_opcodes.py538 def binop_horiz(name, out_size, out_type, src1_size, src1_type, src2_size, argument
540 opcode(name, out_size, out_type, [src1_size, src2_size], [src1_type, src2_type],
/external/mesa3d/src/amd/llvm/
Dac_nir_to_llvm.c139 LLVMTypeRef src1_type = LLVMTypeOf(src1); in emit_int_cmp() local
142 LLVMGetTypeKind(src1_type) != LLVMPointerTypeKind) { in emit_int_cmp()
144 } else if (LLVMGetTypeKind(src1_type) == LLVMPointerTypeKind && in emit_int_cmp()
146 src0 = LLVMBuildIntToPtr(ctx->builder, src0, src1_type, ""); in emit_int_cmp()
237 LLVMTypeRef src1_type = LLVMTypeOf(src1); in emit_bcsel() local
240 if (LLVMGetTypeKind(src1_type) == LLVMPointerTypeKind && in emit_bcsel()
242 src2 = LLVMBuildIntToPtr(ctx->builder, src2, src1_type, ""); in emit_bcsel()
244 LLVMGetTypeKind(src1_type) != LLVMPointerTypeKind) { in emit_bcsel()