Home | History | Annotate | Download | only in gcc

Lines Matching defs:SSA_OP_USE

156 #define SSA_OP_USE		0x01	/* Real USE operands.  */
164 #define SSA_OP_ALL_USES (SSA_OP_VIRTUAL_USES | SSA_OP_USE)
194 can be either SSA_OP_USE or SSA_OP_VIRTUAL_USES or SSA_OP_ALL_USES. */
606 && (!(flags & SSA_OP_VUSE) || (flags & SSA_OP_USE)));
629 ptr->uses = (flags & (SSA_OP_USE|SSA_OP_VUSE)) ? gimple_use_ops (stmt) : NULL;
647 && (flags & SSA_OP_USE));
790 gcc_checking_assert ((flags & (SSA_OP_USE | SSA_OP_VIRTUAL_USES)) != 0);
792 comp = (is_gimple_reg (phi_def) ? SSA_OP_USE : SSA_OP_VIRTUAL_USES);
899 flag = (is_gimple_reg (use) ? SSA_OP_USE : SSA_OP_VIRTUAL_USES);
909 if (flag == SSA_OP_USE)