/external/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()
|
/external/mesa3d/src/panfrost/midgard/ |
D | midgard_opt_copy_prop.c | 98 bool is_tex = q->type == TAG_TEXTURE_4; in midgard_opt_copy_prop() local 102 if (!(is_tex || is_ldst || is_branch)) continue; in midgard_opt_copy_prop() 109 is_tex ? 2 : in midgard_opt_copy_prop()
|
D | mir_promote_uniforms.c | 143 bool is_tex = ins->type == TAG_TEXTURE_4; in mir_special_indices() local 146 if (!(is_ldst || is_tex || is_writeout)) in mir_special_indices()
|
/external/mesa3d/src/freedreno/ir3/ |
D | ir3_print.c | 134 is_tex(instr) ? instr->cat5.tex_base : instr->cat6.base); in print_instr_name() 232 if (is_tex(instr)) { in print_instr() 249 if (is_tex(instr) && !(instr->flags & IR3_INSTR_S2EN)) { in print_instr()
|
D | ir3_delay.c | 102 if (is_sfu(assigner) || is_tex(assigner) || is_mem(assigner)) in ir3_delayslots() 106 if (is_flow(consumer) || is_sfu(consumer) || is_tex(consumer) || in ir3_delayslots()
|
D | ir3_postsched.c | 222 if (!(is_sfu(n->instr) || is_tex(n->instr))) in choose_instr() 561 } else if (is_tex(instr) || is_mem(instr)) { in sched_dag_init()
|
D | ir3_cp.c | 577 if (is_tex(instr) && (instr->flags & IR3_INSTR_S2EN) && in instr_cp()
|
D | ir3_legalize.c | 274 if (is_tex(n) || is_sfu(n) || is_mem(n)) { in legalize_block()
|
D | ir3.h | 749 static inline bool is_tex(struct ir3_instruction *instr) in is_tex() function 756 return is_tex(instr) || (instr->opc == OPC_META_TEX_PREFETCH); in is_tex_or_prefetch()
|
D | ir3_sched.c | 268 if (ctx->remaining_kills && (is_tex(instr) || is_mem(instr))) { in check_instr()
|
/external/virglrenderer/src/gallium/auxiliary/tgsi/ |
D | tgsi_info.h | 76 unsigned is_tex:1; member
|
D | tgsi_text.c | 1044 if (info->num_dst + info->num_src + info->is_tex == 0) { in parse_instruction() 1086 for (i = 0; i < info->num_dst + info->num_src + info->is_tex; i++) { in parse_instruction()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_ir.h | 94 bool is_tex() const;
|
D | brw_shader.cpp | 876 backend_instruction::is_tex() const in is_tex() function in backend_instruction
|
D | brw_fs.cpp | 243 if (is_tex()) in is_send_from_grf() 327 if (is_tex()) in is_payload() 1017 if (is_tex() && arg == 0 && src[0].file == VGRF) in size_read() 2929 if (!inst->is_tex()) in opt_zero_samples()
|
D | brw_vec4.cpp | 302 if (is_tex()) in can_do_writemask()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_tgsi_private.h | 204 return op->info->is_tex || is_resource_instruction(op->op) ? in num_inst_src_regs()
|
D | st_glsl_to_tgsi.cpp | 4795 if (inst->info->is_tex) { in count_resources()
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_compiler_tgsi.c | 88 unsigned is_tex : 1; /* is texture unit, overrides rgroup */ member 780 assert(native.valid && !native.is_tex && native.rgroup == INST_RGROUP_TEMP); in etna_native_to_dst() 794 assert(native.valid && !native.is_tex); in etna_native_to_src() 968 assert(native_reg.is_tex && native_reg.valid); in convert_tex() 990 assert(native->valid && !native->is_tex); in etna_create_src() 1887 if (!n->valid || n->is_tex) in etna_compile_pass_generate_code() 2032 c->file[TGSI_FILE_SAMPLER].reg[idx].native.is_tex = 1; // overrides rgroup in assign_texture_units() 2056 return to.valid == from.valid && to.is_tex == from.is_tex && in cmp_etna_native_reg()
|