Searched refs:acp_entry (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/glsl/ |
D | opt_constant_propagation.cpp | 46 class acp_entry : public exec_node class 49 acp_entry(ir_variable *var, unsigned write_mask, ir_constant *constant) in acp_entry() function in __anon3fb514460111::acp_entry 59 acp_entry(const acp_entry *src) in acp_entry() function in __anon3fb514460111::acp_entry 161 acp_entry *found = NULL; in handle_rvalue() 176 acp_entry *entry = (acp_entry *)iter.get(); in handle_rvalue() 321 acp_entry *a = (acp_entry *)iter.get(); in handle_if_block() 322 this->acp->push_tail(new(this->mem_ctx) acp_entry(a)); in handle_if_block() 401 acp_entry *entry = (acp_entry *)iter.get(); in kill() 432 acp_entry *entry; in add_constant() 452 entry = new(this->mem_ctx) acp_entry(deref->var, ir->write_mask, constant); in add_constant()
|
D | opt_copy_propagation.cpp | 43 class acp_entry : public exec_node class 46 acp_entry(ir_variable *lhs, ir_variable *rhs) in acp_entry() function in __anon153609d70111::acp_entry 171 acp_entry *entry = (acp_entry *)iter.get(); in visit() 220 acp_entry *a = (acp_entry *)iter.get(); in handle_if_block() 221 this->acp->push_tail(new(this->mem_ctx) acp_entry(a->lhs, a->rhs)); in handle_if_block() 295 acp_entry *entry = (acp_entry *)iter.get(); in kill() 314 acp_entry *entry; in add_copy() 332 entry = new(this->mem_ctx) acp_entry(lhs_var, rhs_var); in add_copy()
|
D | opt_copy_propagation_elements.cpp | 54 class acp_entry : public exec_node class 57 acp_entry(ir_variable *lhs, ir_variable *rhs, int write_mask, int swizzle[4]) in acp_entry() function in __anon606e14330111::acp_entry 65 acp_entry(acp_entry *a) in acp_entry() function in __anon606e14330111::acp_entry 248 acp_entry *entry = (acp_entry *)iter.get(); in handle_rvalue() 328 acp_entry *a = (acp_entry *)iter.get(); in handle_if_block() 329 this->acp->push_tail(new(this->mem_ctx) acp_entry(a)); in handle_if_block() 404 acp_entry *entry = (acp_entry *)node; in kill() 432 acp_entry *entry; in add_copy() 482 entry = new(this->mem_ctx) acp_entry(lhs->var, rhs->var, write_mask, in add_copy()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_fs_copy_propagation.cpp | 28 struct acp_entry : public exec_node { struct 35 fs_visitor::try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry) in try_copy_propagate() 91 acp_entry *entry = (acp_entry *)entry_node; in opt_copy_propagate_local() 102 acp_entry *entry = (acp_entry *)entry_node; in opt_copy_propagate_local() 124 acp_entry *entry = ralloc(mem_ctx, acp_entry); in opt_copy_propagate_local()
|
D | brw_fs.h | 54 class acp_entry; variable 248 bool try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry);
|