/external/mesa3d/src/intel/compiler/ |
D | test_vec4_register_coalesce.cpp | 133 dst_reg m0 = dst_reg(MRF, 0); in TEST_F() 142 EXPECT_EQ(mul->dst.file, MRF); in TEST_F() 152 dst_reg m0 = dst_reg(MRF, 0); in TEST_F() 156 dst_reg m1 = dst_reg(MRF, 1); in TEST_F() 169 EXPECT_NE(mul->dst.file, MRF); in TEST_F() 178 dst_reg m0 = dst_reg(MRF, 0); in TEST_F() 189 EXPECT_EQ(dp4->dst.file, MRF); in TEST_F() 211 v->emit(v->MOV(dst_reg(MRF, 0), src)); in TEST_F() 237 v->emit(v->MOV(dst_reg(MRF, 0), src)); in TEST_F()
|
D | brw_vec4_visitor.cpp | 808 emit(MOV(dst_reg(MRF, param_base, coordinate_type, coord_mask), in emit_mcs_fetch() 811 emit(MOV(dst_reg(MRF, param_base, coordinate_type, zero_mask), in emit_mcs_fetch() 899 emit(MOV(dst_reg(MRF, param_base, lod.type, writemask), lod)); in emit_texture() 909 emit(MOV(dst_reg(MRF, param_base, coordinate.type, coord_mask), in emit_texture() 914 emit(MOV(dst_reg(MRF, param_base, coordinate.type, zero_mask), in emit_texture() 919 emit(MOV(dst_reg(MRF, param_base + 1, shadow_comparator.type, in emit_texture() 941 emit(MOV(dst_reg(MRF, mrf, lod.type, writemask), lod)); in emit_texture() 943 emit(MOV(dst_reg(MRF, param_base, lod.type, WRITEMASK_W), lod)); in emit_texture() 945 emit(MOV(dst_reg(MRF, param_base + 1, sample_index.type, WRITEMASK_X), in emit_texture() 953 emit(MOV(dst_reg(MRF, param_base + 1, glsl_type::uint_type, WRITEMASK_Y), in emit_texture() [all …]
|
D | gen6_gs_visitor.cpp | 74 vec4_instruction *inst = emit(MOV(dst_reg(MRF, 1), in emit_prolog() 274 emit(GS_OPCODE_SET_DWORD_2, dst_reg(MRF, mrf), flags_data); in emit_urb_write_header() 310 inst->dst = dst_reg(MRF, base_mrf); in emit_urb_write_opcode() 414 dst_reg reg = dst_reg(MRF, mrf); in emit_thread_end() 476 emit(GS_OPCODE_SET_DWORD_2, dst_reg(MRF, base_mrf), data); in emit_thread_end() 655 dst_reg mrf_reg(MRF, 2); in xfb_program()
|
D | brw_ir.h | 43 assert(file == ARF || file == FIXED_GRF || file == MRF || file == IMM); in as_brw_reg() 50 assert(file == ARF || file == FIXED_GRF || file == MRF || file == IMM); in as_brw_reg()
|
D | brw_ir_fs.h | 83 case MRF: { in byte_offset() 116 case MRF: in horiz_offset() 139 case MRF: in offset() 210 if (r.file == MRF && (r.nr & BRW_MRF_COMPR4)) { in regions_overlap() 219 } else if (s.file == MRF && (s.nr & BRW_MRF_COMPR4)) { in regions_overlap()
|
D | brw_ir_vec4.h | 77 case MRF: { in add_byte_offset() 248 if (r.file == MRF && (r.nr & BRW_MRF_COMPR4)) { in regions_overlap() 259 } else if (s.file == MRF && (s.nr & BRW_MRF_COMPR4)) { in regions_overlap()
|
D | brw_vec4_gs_visitor.cpp | 218 dst_reg mrf_reg(MRF, base_mrf); in emit_thread_end() 242 dst_reg mrf_reg(MRF, mrf); in emit_urb_write_header() 334 dst_reg mrf_reg(MRF, base_mrf); in emit_control_data_bits() 372 dst_reg mrf_reg2(MRF, base_mrf + 1); in emit_control_data_bits()
|
D | brw_vec4.cpp | 1084 assert(inst->src[i].file != MRF); in opt_set_dependency_control() 1109 } else if (inst->dst.file == MRF) { in opt_set_dependency_control() 1241 (inst->dst.file != VGRF && inst->dst.file != MRF) || in opt_register_coalesce() 1271 bool to_mrf = (inst->dst.file == MRF); in opt_register_coalesce() 1627 case MRF: in dump_instruction() 1746 case MRF: in dump_instruction() 2072 case MRF: in convert_to_hw_regs() 2120 case MRF: in convert_to_hw_regs()
|
D | brw_schedule_instructions.cpp | 1176 } else if (inst->dst.file == MRF) { in calculate_deps() 1300 } else if (inst->dst.file == MRF) { in calculate_deps() 1417 } else if (inst->dst.file == MRF) { in calculate_deps() 1496 } else if (inst->dst.file == MRF) { in calculate_deps()
|
D | brw_fs.cpp | 77 case MRF: in init() 547 case MRF: in is_contiguous() 1032 case MRF: in size_read() 3097 inst->dst.file != MRF || inst->src[0].file != VGRF || in compute_to_mrf() 3189 regions_overlap(fs_reg(MRF, scan_inst->base_mrf), scan_inst->mlen * REG_SIZE, in compute_to_mrf() 3238 scan_inst->dst.file = MRF; in compute_to_mrf() 3410 inst->dst.file == MRF) { in remove_duplicate_mrf_writes() 3426 if (inst->dst.file == MRF) { in remove_duplicate_mrf_writes() 3450 inst->dst.file == MRF && in remove_duplicate_mrf_writes() 3750 assert(inst->dst.file == MRF || inst->dst.file == VGRF); in lower_load_payload() [all …]
|
D | brw_eu_validate.c | 301 ERROR_IF(brw_inst_dst_reg_file(devinfo, inst) == MRF || in invalid_values() 303 brw_inst_src0_reg_file(devinfo, inst) == MRF) || in invalid_values() 305 brw_inst_src1_reg_file(devinfo, inst) == MRF), in invalid_values()
|
D | brw_ir_performance.cpp | 1185 } else if (r.file == MRF && devinfo->gen >= 7) { in reg_dependency_id() 1191 } else if (r.file == MRF && devinfo->gen < 7) { in reg_dependency_id()
|
D | brw_eu_defines.h | 967 MRF = BRW_MESSAGE_REGISTER_FILE, enumerator
|
D | brw_fs_bank_conflicts.cpp | 582 assert(inst->dst.file != MRF); in shader_reg_constraints()
|
D | brw_fs_visitor.cpp | 101 bld.MOV(fs_reg(MRF, 2 + i * reg_width, BRW_REGISTER_TYPE_F), in emit_dummy_fs()
|
D | brw_fs_scoreboard.cpp | 588 r.file == MRF ? &grf_deps[GEN7_MRF_HACK_START + reg] : in dep()
|
D | brw_fs_reg_allocate.cpp | 530 if (inst->dst.file == MRF) { in get_used_mrfs()
|
D | brw_fs_generator.cpp | 44 case MRF: in brw_file_from_reg() 63 case MRF: in brw_reg_from_fs_reg()
|
D | brw_vec4_nir.cpp | 456 emit(MOV(dst_reg(MRF, param_base, glsl_type::int_type, writemask), lod)); in nir_emit_intrinsic()
|
/external/mesa3d/docs/relnotes/ |
D | 10.5.8.rst | 75 - i965/fs: Don't let the EOT send message interfere with the MRF hack
|
D | 9.0.2.rst | 195 - i965/vs: Don't lose the MRF writemask when doing compute-to-MRF.
|
D | 10.6.6.rst | 123 - i965/fs: Handle MRF destinations in lower_integer_multiplication().
|
D | 7.10.1.rst | 233 - i965: Fix a bug in i965 compute-to-MRF.
|
D | 7.10.rst | 1188 - i965: Give the FB write and texture opcodes the info on base MRF, 1190 - i965: Compute to MRF in the new FS backend. 1193 - i965: Don't compute-to-MRF in gen6 math instructions. 1196 - i965: Don't compute-to-MRF in gen6 VS math. 1292 - i965: Fix compute_to_mrf to not move a MRF write up into another live 1303 - i965: Remove duplicate MRF writes in the FS backend.
|
/external/toolchain-utils/android_bench_suite/panorama_input/ |
D | test_011.ppm | 7892 …D3L;QC!VH&YM*PD!?;:5-)0-0.%"!" %&##%"/3/>B>ACB-/.'''###)*(5645:.MRF&5) 5
|