Searched refs:BRW_OPCODE_MOV (Results 1 – 13 of 13) sorted by relevance
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_fs_visitor.cpp | 205 fs_inst *inst = emit(BRW_OPCODE_MOV, this->result, src); in try_emit_saturate() 311 emit(BRW_OPCODE_MOV, this->result, fs_reg(0.0f)); in visit() 315 inst = emit(BRW_OPCODE_MOV, this->result, fs_reg(1.0f)); in visit() 320 inst = emit(BRW_OPCODE_MOV, this->result, fs_reg(-1.0f)); in visit() 378 emit(BRW_OPCODE_MOV, this->result, fs_reg(acc)); in visit() 475 emit(BRW_OPCODE_MOV, this->result, op[0]); in visit() 484 emit(BRW_OPCODE_MOV, this->result, temp); in visit() 607 emit(fs_inst(BRW_OPCODE_MOV, result, packed_consts)); in visit() 637 fs_inst *inst = emit(BRW_OPCODE_MOV, l, r); in emit_assignment_writes() 737 inst = emit(BRW_OPCODE_MOV, l, r); in visit() [all …]
|
D | brw_fs.cpp | 606 emit(BRW_OPCODE_MOV, wpos, this->pixel_x); in emit_fragcoord_interpolation() 614 emit(BRW_OPCODE_MOV, wpos, this->pixel_y); in emit_fragcoord_interpolation() 630 emit(BRW_OPCODE_MOV, wpos, in emit_fragcoord_interpolation() 641 emit(BRW_OPCODE_MOV, wpos, this->wpos_w); in emit_fragcoord_interpolation() 728 emit(BRW_OPCODE_MOV, attr, fs_reg(1.0f)); in emit_general_interpolation() 816 emit(BRW_OPCODE_MOV, expanded, src); in emit_math() 857 emit(BRW_OPCODE_MOV, expanded, src0); in emit_math() 864 emit(BRW_OPCODE_MOV, expanded, src1); in emit_math() 883 emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + 1, op1.type), op1); in emit_math() 1272 if (inst->opcode != BRW_OPCODE_MOV || in propagate_constants() [all …]
|
D | brw_fs_cse.cpp | 132 fs_inst(BRW_OPCODE_MOV, entry->generator->dst, entry->tmp); in opt_cse_local() 139 fs_inst(BRW_OPCODE_MOV, inst->dst, entry->tmp); in opt_cse_local()
|
D | brw_vec4.cpp | 563 inst->opcode = BRW_OPCODE_MOV; in opt_algebraic() 571 inst->opcode = BRW_OPCODE_MOV; in opt_algebraic() 590 inst->opcode = BRW_OPCODE_MOV; in opt_algebraic() 710 if (inst->opcode != BRW_OPCODE_MOV || in opt_compute_to_mrf()
|
D | brw_vec4_copy_propagation.cpp | 42 return (inst->opcode == BRW_OPCODE_MOV && in is_direct_copy() 94 case BRW_OPCODE_MOV: in try_constant_propagation()
|
D | brw_fs_copy_propagation.cpp | 112 if (inst->opcode == BRW_OPCODE_MOV && in opt_copy_propagate_local()
|
D | brw_defines.h | 592 BRW_OPCODE_MOV = 1, enumerator
|
D | brw_optimize.c | 36 [BRW_OPCODE_MOV] = { .name = "mov", .nsrc = 1, .ndst = 1, .is_arith = 1 },
|
D | brw_vec4_emit.cpp | 889 case BRW_OPCODE_MOV: in generate_code()
|
D | brw_fs_emit.cpp | 810 case BRW_OPCODE_MOV: in generate_code()
|
D | brw_disasm.c | 40 [BRW_OPCODE_MOV] = { .name = "mov", .nsrc = 1, .ndst = 1 },
|
D | brw_vs_emit.c | 1750 case BRW_OPCODE_MOV: in accumulator_contains()
|
D | brw_vec4_visitor.cpp | 2671 emit(BRW_OPCODE_MOV, dst_reg(temp), *reg); in resolve_ud_negate()
|