/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_info_opcodes.h | 18 OPCODE(1, 2, OTHR, TEX_LZ, .is_tex = 1) 26 OPCODE(1, 2, OTHR, TXF_LZ, .is_tex = 1) 53 OPCODE(1, 2, OTHR, TEX, .is_tex = 1) 54 OPCODE(1, 4, OTHR, TXD, .is_tex = 1) 55 OPCODE(1, 2, OTHR, TXP, .is_tex = 1) 69 OPCODE(1, 2, OTHR, TXB, .is_tex = 1) 73 OPCODE(1, 2, OTHR, TXL, .is_tex = 1) 95 OPCODE(1, 2, OTHR, TXF, .is_tex = 1) 96 OPCODE(1, 2, OTHR, TXQ, .is_tex = 1) 105 OPCODE(1, 1, OTHR, TXQS, .is_tex = 1) [all …]
|
D | tgsi_info.h | 76 unsigned is_tex:1; member
|
D | tgsi_scan.c | 75 tgsi_get_opcode_info(opcode)->is_tex); in is_texture_inst() 86 if (tgsi_get_opcode_info(opcode)->is_tex) { in computes_derivative()
|
D | tgsi_text.c | 1058 if (info->num_dst + info->num_src + info->is_tex == 0) { in parse_instruction() 1103 for (i = 0; i < info->num_dst + info->num_src + info->is_tex; i++) { in parse_instruction()
|
/third_party/mesa3d/src/panfrost/midgard/ |
D | midgard_opt_copy_prop.c | 62 bool is_tex = q->type == TAG_TEXTURE_4; in midgard_opt_copy_prop() local 66 if (!(is_tex || is_ldst || is_branch)) continue; in midgard_opt_copy_prop() 73 is_tex ? 2 : in midgard_opt_copy_prop()
|
D | mir_promote_uniforms.c | 246 bool is_tex = ins->type == TAG_TEXTURE_4; in mir_special_indices() local 249 if (!(is_ldst || is_tex || is_writeout)) in mir_special_indices()
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_print.c | 223 is_tex(instr) ? instr->cat5.tex_base : instr->cat6.base); in print_instr_name() 359 if (is_tex(instr)) { in print_instr() 393 if (is_tex(instr) && !(instr->flags & IR3_INSTR_S2EN)) { in print_instr()
|
D | ir3_delay.c | 78 if (is_flow(consumer) || is_sfu(consumer) || is_tex(consumer) || in ir3_delayslots()
|
D | ir3_cp.c | 643 if (is_tex(instr) && (instr->flags & IR3_INSTR_S2EN) && in instr_cp()
|
D | ir3_postsched.c | 615 } else if (is_tex(instr) || is_mem(instr)) { in sched_dag_init()
|
D | ir3_legalize.c | 293 if (is_tex(n) || is_sfu(n) || is_mem(n)) { in legalize_block()
|
D | ir3.h | 954 is_tex(struct ir3_instruction *instr) in is_tex() function 962 return is_tex(instr) || (instr->opc == OPC_META_TEX_PREFETCH); in is_tex_or_prefetch()
|
D | ir3_sched.c | 377 if (ctx->remaining_kills && (is_tex(instr) || is_mem(instr))) { in should_skip()
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_ir.h | 94 bool is_tex() const;
|
D | brw_shader.cpp | 891 backend_instruction::is_tex() const in is_tex() function in backend_instruction
|
D | brw_fs.cpp | 237 if (is_tex()) in is_send_from_grf() 314 if (is_tex()) in is_payload() 941 if (is_tex() && arg == 0 && src[0].file == VGRF) in size_read() 2846 if (!inst->is_tex()) in opt_zero_samples()
|
D | brw_vec4.cpp | 300 if (is_tex()) in can_do_writemask()
|
/third_party/mesa3d/src/gallium/drivers/virgl/ |
D | virgl_tgsi.c | 324 if (tgsi_get_opcode_info(inst->Instruction.Opcode)->is_tex && in virgl_tgsi_transform_instruction() 392 !tgsi_get_opcode_info(inst->Instruction.Opcode)->is_tex && in virgl_tgsi_transform_instruction()
|
/third_party/mesa3d/src/gallium/auxiliary/nir/ |
D | nir_to_tgsi.c | 52 bool is_tex : 1; member 328 if (insn->is_tex && insn->tex_offset.File == TGSI_FILE_TEMPORARY) in ntt_live_reg_setup_def_use() 508 if (insn->is_tex && insn->tex_offset.File == TGSI_FILE_TEMPORARY) { in ntt_allocate_regs() 2752 insn->is_tex = true; in ntt_emit_texture() 2950 if (insn->is_tex) { in ntt_emit_block_ureg()
|