Lines Matching refs:m_expr

812   m_expr = *orig;  in expr_hash_elt()
823 m_expr = old_elt.m_expr; in expr_hash_elt()
830 if (old_elt.m_expr.kind == EXPR_CALL) in expr_hash_elt()
832 size_t nargs = old_elt.m_expr.ops.call.nargs; in expr_hash_elt()
835 m_expr.ops.call.args = XCNEWVEC (tree, nargs); in expr_hash_elt()
837 m_expr.ops.call.args[i] = old_elt.m_expr.ops.call.args[i]; in expr_hash_elt()
839 else if (old_elt.m_expr.kind == EXPR_PHI) in expr_hash_elt()
841 size_t nargs = old_elt.m_expr.ops.phi.nargs; in expr_hash_elt()
844 m_expr.ops.phi.args = XCNEWVEC (tree, nargs); in expr_hash_elt()
846 m_expr.ops.phi.args[i] = old_elt.m_expr.ops.phi.args[i]; in expr_hash_elt()
855 if (m_expr.kind == EXPR_CALL) in ~expr_hash_elt()
856 free (m_expr.ops.call.args); in ~expr_hash_elt()
857 else if (m_expr.kind == EXPR_PHI) in ~expr_hash_elt()
858 free (m_expr.ops.phi.args); in ~expr_hash_elt()
874 switch (m_expr.kind) in print()
877 print_generic_expr (stream, m_expr.ops.single.rhs); in print()
881 fprintf (stream, "%s ", get_tree_code_name (m_expr.ops.unary.op)); in print()
882 print_generic_expr (stream, m_expr.ops.unary.opnd); in print()
886 print_generic_expr (stream, m_expr.ops.binary.opnd0); in print()
887 fprintf (stream, " %s ", get_tree_code_name (m_expr.ops.binary.op)); in print()
888 print_generic_expr (stream, m_expr.ops.binary.opnd1); in print()
892 fprintf (stream, " %s <", get_tree_code_name (m_expr.ops.ternary.op)); in print()
893 print_generic_expr (stream, m_expr.ops.ternary.opnd0); in print()
895 print_generic_expr (stream, m_expr.ops.ternary.opnd1); in print()
897 print_generic_expr (stream, m_expr.ops.ternary.opnd2); in print()
904 size_t nargs = m_expr.ops.call.nargs; in print()
907 fn_from = m_expr.ops.call.fn_from; in print()
916 print_generic_expr (stream, m_expr.ops.call.args[i]); in print()
927 size_t nargs = m_expr.ops.phi.nargs; in print()
932 print_generic_expr (stream, m_expr.ops.phi.args[i]); in print()