HomeSort by: relevance | last modified time | path
    Searched defs:SSA_OP_USE (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
ssa-iterators.h 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)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
ssa-iterators.h 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)
    [all...]

Completed in 17 milliseconds