Lines Matching defs:local
447 int dominates(struct instruction *insn, struct instruction *dom, int local)
451 return local ? 0 : -1;
465 if (local)
483 // * the variable is not global but may have its address used (local/non-local)
489 // * if we reach a call -> we have to stop if var is non-local
492 // * we can ignore other stores & loads if the var is local
496 static void kill_dead_stores_bb(pseudo_t pseudo, unsigned long generation, struct basic_block *bb, int local)
519 if (!local)
524 if (!local && insn->src->type != PSEUDO_SYM)
531 kill_dead_stores_bb(pseudo, generation, parent, local);
566 void kill_dead_stores(struct entrypoint *ep, pseudo_t addr, int local)
575 if (local) {
591 kill_dead_stores_bb(addr, generation, bb, local);