Lines Matching defs:acp
75 this->acp = new(mem_ctx) exec_list;
96 exec_list *acp;
117 exec_list *orig_acp = this->acp;
121 this->acp = new(mem_ctx) exec_list;
128 this->acp = orig_acp;
152 * Replaces dereferences of ACP RHS variables with ACP LHS variables.
166 foreach_iter(exec_list_iterator, iter, *this->acp) {
197 acp->make_empty();
206 exec_list *orig_acp = this->acp;
210 this->acp = new(mem_ctx) exec_list;
214 /* Populate the initial acp with a copy of the original */
217 this->acp->push_tail(new(this->mem_ctx) acp_entry(a->lhs, a->rhs));
228 this->acp = orig_acp;
252 exec_list *orig_acp = this->acp;
256 /* FINISHME: For now, the initial acp for loops is totally empty.
257 * We could go through once, then go through again with the acp
260 this->acp = new(mem_ctx) exec_list;
272 this->acp = orig_acp;
289 /* Remove any entries currently in the ACP for this kill. */
290 foreach_iter(exec_list_iterator, iter, *acp) {
332 this->acp->push_tail(entry);