Searched refs:acp_entry (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/compiler/glsl/ |
D | opt_constant_propagation.cpp | 47 class acp_entry : public exec_node class 51 DECLARE_LINEAR_ZALLOC_CXX_OPERATORS(acp_entry) 53 acp_entry(ir_variable *var, unsigned write_mask, ir_constant *constant) in acp_entry() function in __anona46a2ad80111::acp_entry 63 acp_entry(const acp_entry *src) in acp_entry() function in __anona46a2ad80111::acp_entry 193 acp_entry *found = NULL; in constant_propagation() 207 foreach_in_list(acp_entry, entry, this->acp) { in constant_propagation() 371 foreach_in_list(acp_entry, a, orig_acp) { in handle_if_block() 372 this->acp->push_tail(new(this->lin_ctx) acp_entry(a)); in handle_if_block() 453 foreach_in_list_safe(acp_entry, entry, this->acp) { in kill() 482 acp_entry *entry; in add_constant() [all …]
|
D | opt_copy_propagation_elements.cpp | 55 class acp_entry; 63 acp_ref(acp_entry *e) in acp_ref() 67 acp_entry *entry; 70 class acp_entry : public exec_node class 74 DECLARE_LINEAR_ZALLOC_CXX_OPERATORS(acp_entry) 76 acp_entry(ir_variable *lhs, ir_variable *rhs, int write_mask, int swizzle[4]) in acp_entry() function in __anona45216050111::acp_entry 309 foreach_in_list(acp_entry, entry, ht_list) { in handle_rvalue() 505 foreach_in_list_safe(acp_entry, entry, lhs_list) { in kill() 521 acp_entry *entry = ref->entry; in kill() 545 acp_entry *entry; in add_copy() [all …]
|
/external/mesa3d/src/intel/compiler/ |
D | brw_fs_copy_propagation.cpp | 46 struct acp_entry : public exec_node { struct 107 acp_entry **acp; 129 acp = rzalloc_array(mem_ctx, struct acp_entry *, num_acp); in fs_copy_prop_dataflow() 142 foreach_in_list(acp_entry, entry, &out_acp[block->num][i]) { in fs_copy_prop_dataflow() 365 fs_visitor::try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry) in try_copy_propagate() 522 fs_visitor::try_constant_propagate(fs_inst *inst, acp_entry *entry) in try_constant_propagate() 784 foreach_in_list(acp_entry, entry, &acp[inst->src[i].nr % ACP_HASH_SIZE]) { in opt_copy_propagation_local() 794 foreach_in_list_safe(acp_entry, entry, &acp[inst->dst.nr % ACP_HASH_SIZE]) { in opt_copy_propagation_local() 804 foreach_in_list_safe(acp_entry, entry, &acp[i]) { in opt_copy_propagation_local() 819 acp_entry *entry = ralloc(copy_prop_ctx, acp_entry); in opt_copy_propagation_local() [all …]
|
D | brw_fs.h | 38 struct acp_entry; 142 bool try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry); 143 bool try_constant_propagate(fs_inst *inst, acp_entry *entry);
|