]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/tree-stdarg.c
PR fortran/95090 - ICE: identifier overflow
[thirdparty/gcc.git] / gcc / tree-stdarg.c
index cd595a94f68e05de311e9cab71e07757cf267eae..f9cedd49f0bb21674a972f31d3f6b50c398e35f3 100644 (file)
@@ -1,5 +1,5 @@
 /* Pass computing data for optimizing stdarg functions.
-   Copyright (C) 2004-2015 Free Software Foundation, Inc.
+   Copyright (C) 2004-2020 Free Software Foundation, Inc.
    Contributed by Jakub Jelinek <jakub@redhat.com>
 
 This file is part of GCC.
@@ -22,22 +22,19 @@ along with GCC; see the file COPYING3.  If not see
 #include "system.h"
 #include "coretypes.h"
 #include "backend.h"
+#include "target.h"
 #include "tree.h"
 #include "gimple.h"
-#include "hard-reg-set.h"
+#include "tree-pass.h"
 #include "ssa.h"
-#include "alias.h"
+#include "gimple-pretty-print.h"
 #include "fold-const.h"
 #include "langhooks.h"
-#include "gimple-pretty-print.h"
-#include "target.h"
-#include "internal-fn.h"
 #include "gimple-iterator.h"
 #include "gimple-walk.h"
 #include "gimplify.h"
 #include "tree-into-ssa.h"
 #include "tree-cfg.h"
-#include "tree-pass.h"
 #include "tree-stdarg.h"
 
 /* A simple pass that attempts to optimize stdarg functions on architectures
@@ -55,10 +52,9 @@ along with GCC; see the file COPYING3.  If not see
 static bool
 reachable_at_most_once (basic_block va_arg_bb, basic_block va_start_bb)
 {
-  vec<edge> stack = vNULL;
+  auto_vec<edge, 10> stack;
   edge e;
   edge_iterator ei;
-  sbitmap visited;
   bool ret;
 
   if (va_arg_bb == va_start_bb)
@@ -67,7 +63,7 @@ reachable_at_most_once (basic_block va_arg_bb, basic_block va_start_bb)
   if (! dominated_by_p (CDI_DOMINATORS, va_arg_bb, va_start_bb))
     return false;
 
-  visited = sbitmap_alloc (last_basic_block_for_fn (cfun));
+  auto_sbitmap visited (last_basic_block_for_fn (cfun));
   bitmap_clear (visited);
   ret = true;
 
@@ -107,8 +103,6 @@ reachable_at_most_once (basic_block va_arg_bb, basic_block va_start_bb)
        }
     }
 
-  stack.release ();
-  sbitmap_free (visited);
   return ret;
 }
 
@@ -122,7 +116,7 @@ va_list_counter_bump (struct stdarg_info *si, tree counter, tree rhs,
                      bool gpr_p)
 {
   tree lhs, orig_lhs;
-  gimple stmt;
+  gimple *stmt;
   unsigned HOST_WIDE_INT ret = 0, val, counter_val;
   unsigned int max_size;
 
@@ -278,7 +272,7 @@ find_va_list_reference (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
       if (bitmap_bit_p (va_list_vars, SSA_NAME_VERSION (var)))
        return var;
     }
-  else if (TREE_CODE (var) == VAR_DECL)
+  else if (VAR_P (var))
     {
       if (bitmap_bit_p (va_list_vars, DECL_UID (var) + num_ssa_names))
        return var;
@@ -363,7 +357,7 @@ va_list_counter_struct_op (struct stdarg_info *si, tree ap, tree var,
     return false;
 
   base = get_base_address (ap);
-  if (TREE_CODE (base) != VAR_DECL
+  if (!VAR_P (base)
       || !bitmap_bit_p (si->va_list_vars, DECL_UID (base) + num_ssa_names))
     return false;
 
@@ -382,7 +376,7 @@ va_list_counter_struct_op (struct stdarg_info *si, tree ap, tree var,
 static bool
 va_list_ptr_read (struct stdarg_info *si, tree ap, tree tem)
 {
-  if (TREE_CODE (ap) != VAR_DECL
+  if (!VAR_P (ap)
       || !bitmap_bit_p (si->va_list_vars, DECL_UID (ap) + num_ssa_names))
     return false;
 
@@ -432,7 +426,7 @@ va_list_ptr_write (struct stdarg_info *si, tree ap, tree tem2)
 {
   unsigned HOST_WIDE_INT increment;
 
-  if (TREE_CODE (ap) != VAR_DECL
+  if (!VAR_P (ap)
       || !bitmap_bit_p (si->va_list_vars, DECL_UID (ap) + num_ssa_names))
     return false;
 
@@ -568,7 +562,7 @@ check_all_va_list_escapes (struct stdarg_info *si)
       for (gimple_stmt_iterator i = gsi_start_bb (bb); !gsi_end_p (i);
           gsi_next (&i))
        {
-         gimple stmt = gsi_stmt (i);
+         gimple *stmt = gsi_stmt (i);
          tree use;
          ssa_op_iter iter;
 
@@ -627,7 +621,7 @@ check_all_va_list_escapes (struct stdarg_info *si)
                                           SSA_NAME_VERSION (lhs)))
                        continue;
 
-                     if (TREE_CODE (lhs) == VAR_DECL
+                     if (VAR_P (lhs)
                          && bitmap_bit_p (si->va_list_vars,
                                           DECL_UID (lhs) + num_ssa_names))
                        continue;
@@ -692,7 +686,7 @@ optimize_va_list_gpr_fpr_size (function *fun)
 
       for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
        {
-         gimple stmt = gsi_stmt (i);
+         gimple *stmt = gsi_stmt (i);
          tree callee, ap;
 
          if (!is_gimple_call (stmt))
@@ -700,7 +694,7 @@ optimize_va_list_gpr_fpr_size (function *fun)
 
          callee = gimple_call_fndecl (stmt);
          if (!callee
-             || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL)
+             || !fndecl_built_in_p (callee, BUILT_IN_NORMAL))
            continue;
 
          switch (DECL_FUNCTION_CODE (callee))
@@ -736,7 +730,7 @@ optimize_va_list_gpr_fpr_size (function *fun)
            }
          if (TYPE_MAIN_VARIANT (TREE_TYPE (ap))
              != TYPE_MAIN_VARIANT (targetm.fn_abi_va_list (fun->decl))
-             || TREE_CODE (ap) != VAR_DECL)
+             || !VAR_P (ap))
            {
              va_list_escapes = true;
              break;
@@ -865,7 +859,7 @@ optimize_va_list_gpr_fpr_size (function *fun)
           !gsi_end_p (i) && !va_list_escapes;
           gsi_next (&i))
        {
-         gimple stmt = gsi_stmt (i);
+         gimple *stmt = gsi_stmt (i);
 
          /* Don't look at __builtin_va_{start,end}, they are ok.  */
          if (is_gimple_call (stmt))
@@ -873,9 +867,8 @@ optimize_va_list_gpr_fpr_size (function *fun)
              tree callee = gimple_call_fndecl (stmt);
 
              if (callee
-                 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL
-                 && (DECL_FUNCTION_CODE (callee) == BUILT_IN_VA_START
-                     || DECL_FUNCTION_CODE (callee) == BUILT_IN_VA_END))
+                 && (fndecl_built_in_p (callee, BUILT_IN_VA_START)
+                     || fndecl_built_in_p (callee, BUILT_IN_VA_END)))
                continue;
            }
 
@@ -996,16 +989,6 @@ finish:
     }
 }
 
-/* Return true if STMT is IFN_VA_ARG.  */
-
-static bool
-gimple_call_ifn_va_arg_p (gimple stmt)
-{
-  return (is_gimple_call (stmt)
-         && gimple_call_internal_p (stmt)
-         && gimple_call_internal_fn (stmt) == IFN_VA_ARG);
-}
-
 /* Expand IFN_VA_ARGs in FUN.  */
 
 static void
@@ -1019,20 +1002,23 @@ expand_ifn_va_arg_1 (function *fun)
   FOR_EACH_BB_FN (bb, fun)
     for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
       {
-       gimple stmt = gsi_stmt (i);
-       tree ap, expr, lhs, type;
+       gimple *stmt = gsi_stmt (i);
+       tree ap, aptype, expr, lhs, type;
        gimple_seq pre = NULL, post = NULL;
 
-       if (!gimple_call_ifn_va_arg_p (stmt))
+       if (!gimple_call_internal_p (stmt, IFN_VA_ARG))
          continue;
 
        modified = true;
 
        type = TREE_TYPE (TREE_TYPE (gimple_call_arg (stmt, 1)));
        ap = gimple_call_arg (stmt, 0);
+       aptype = TREE_TYPE (gimple_call_arg (stmt, 2));
+       gcc_assert (POINTER_TYPE_P (aptype));
 
        /* Balanced out the &ap, usually added by build_va_arg.  */
-       ap = build_fold_indirect_ref (ap);
+       ap = build2 (MEM_REF, TREE_TYPE (aptype), ap,
+                    build_int_cst (aptype, 0));
 
        push_gimplify_context (false);
        saved_location = input_location;
@@ -1050,7 +1036,7 @@ expand_ifn_va_arg_1 (function *fun)
            unsigned int nargs = gimple_call_num_args (stmt);
            gcc_assert (useless_type_conversion_p (TREE_TYPE (lhs), type));
 
-           if (nargs == 3)
+           if (nargs == 4)
              {
                /* We've transported the size of with WITH_SIZE_EXPR here as
                   the last argument of the internal fn call.  Now reinstate
@@ -1065,7 +1051,7 @@ expand_ifn_va_arg_1 (function *fun)
            gimplify_assign (lhs, expr, &pre);
          }
        else
-         gimplify_expr (&expr, &pre, &post, is_gimple_lvalue, fb_lvalue);
+         gimplify_and_add (expr, &pre);
 
        input_location = saved_location;
        pop_gimplify_context (NULL);
@@ -1080,6 +1066,8 @@ expand_ifn_va_arg_1 (function *fun)
 
        /* Remove the IFN_VA_ARG gimple_call.  It's the last stmt in the
           bb.  */
+       unlink_stmt_vdef (stmt);
+       release_ssa_name_fn (fun, gimple_vdef (stmt));
        gsi_remove (&i, true);
        gcc_assert (gsi_end_p (i));
 
@@ -1105,13 +1093,14 @@ expand_ifn_va_arg (function *fun)
   if ((fun->curr_properties & PROP_gimple_lva) == 0)
     expand_ifn_va_arg_1 (fun);
 
-#if ENABLE_CHECKING
-  basic_block bb;
-  gimple_stmt_iterator i;
-  FOR_EACH_BB_FN (bb, fun)
-    for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
-      gcc_assert (!gimple_call_ifn_va_arg_p (gsi_stmt (i)));
-#endif
+  if (flag_checking)
+    {
+      basic_block bb;
+      gimple_stmt_iterator i;
+      FOR_EACH_BB_FN (bb, fun)
+       for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
+         gcc_assert (!gimple_call_internal_p (gsi_stmt (i), IFN_VA_ARG));
+    }
 }
 
 namespace {