]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Drop targetm.promote_prototypes from C, C++ and Ada frontends
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 20 Nov 2024 23:54:35 +0000 (07:54 +0800)
committerH.J. Lu <hjl.tools@gmail.com>
Sun, 27 Apr 2025 02:36:56 +0000 (10:36 +0800)
Remove the targetm.calls.promote_prototypes call from C, C++ and Ada
frontends.

gcc/

PR c/48274
PR middle-end/112877
PR middle-end/118288
* gimple.cc (gimple_builtin_call_types_compatible_p): Remove the
targetm.calls.promote_prototypes call.
* tree.cc (tree_builtin_call_types_compatible_p): Likewise.

gcc/ada/

PR middle-end/112877
* gcc-interface/utils.cc (create_param_decl): Remove the
targetm.calls.promote_prototypes call.

gcc/c/

PR c/48274
PR middle-end/112877
PR middle-end/118288
* c-decl.cc (start_decl): Remove the
targetm.calls.promote_prototypes call.
(store_parm_decls_oldstyle): Likewise.
(finish_function): Likewise.
* c-typeck.cc (convert_argument): Likewise.
(c_safe_arg_type_equiv_p): Likewise.

gcc/cp/

PR middle-end/112877
* call.cc (type_passed_as): Remove the
targetm.calls.promote_prototypes call.
(convert_for_arg_passing): Likewise.
* typeck.cc (cxx_safe_arg_type_equiv_p): Likewise.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
gcc/ada/gcc-interface/utils.cc
gcc/c/c-decl.cc
gcc/c/c-typeck.cc
gcc/cp/call.cc
gcc/cp/typeck.cc
gcc/gimple.cc
gcc/tree.cc

index 9212827aecfef4f8e513e74c1a1bbd85e8fc2c80..23737c3296cca7066c0ededb3b8479cc96137def 100644 (file)
@@ -3286,30 +3286,6 @@ tree
 create_param_decl (tree name, tree type)
 {
   tree param_decl = build_decl (input_location, PARM_DECL, name, type);
-
-  /* Honor TARGET_PROMOTE_PROTOTYPES like the C compiler, as not doing so
-     can lead to various ABI violations.  */
-  if (targetm.calls.promote_prototypes (NULL_TREE)
-      && INTEGRAL_TYPE_P (type)
-      && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
-    {
-      /* We have to be careful about biased types here.  Make a subtype
-        of integer_type_node with the proper biasing.  */
-      if (TREE_CODE (type) == INTEGER_TYPE
-         && TYPE_BIASED_REPRESENTATION_P (type))
-       {
-         tree subtype
-           = make_unsigned_type (TYPE_PRECISION (integer_type_node));
-         TREE_TYPE (subtype) = integer_type_node;
-         TYPE_BIASED_REPRESENTATION_P (subtype) = 1;
-         SET_TYPE_RM_MIN_VALUE (subtype, TYPE_MIN_VALUE (type));
-         SET_TYPE_RM_MAX_VALUE (subtype, TYPE_MAX_VALUE (type));
-         type = subtype;
-       }
-      else
-       type = integer_type_node;
-    }
-
   DECL_ARG_TYPE (param_decl) = type;
   return param_decl;
 }
index 8c420f2297626313cb45b8087630c27cfb8fe8f1..e7aee8a0f4b23fa7278ea4c5bbdd7da0c14ea0c1 100644 (file)
@@ -5720,26 +5720,6 @@ start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
        DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
     }
 
-  if (TREE_CODE (decl) == FUNCTION_DECL
-      && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
-    {
-      struct c_declarator *ce = declarator;
-
-      if (ce->kind == cdk_pointer)
-       ce = declarator->declarator;
-      if (ce->kind == cdk_function)
-       {
-         tree args = ce->u.arg_info->parms;
-         for (; args; args = DECL_CHAIN (args))
-           {
-             tree type = TREE_TYPE (args);
-             if (type && INTEGRAL_TYPE_P (type)
-                 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
-               DECL_ARG_TYPE (args) = c_type_promotes_to (type);
-           }
-       }
-    }
-
   if (TREE_CODE (decl) == FUNCTION_DECL
       && DECL_DECLARED_INLINE_P (decl)
       && DECL_UNINLINABLE (decl)
@@ -11179,13 +11159,6 @@ store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
                     useful for argument types like uid_t.  */
                  DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
 
-                 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
-                     && INTEGRAL_TYPE_P (TREE_TYPE (parm))
-                     && (TYPE_PRECISION (TREE_TYPE (parm))
-                         < TYPE_PRECISION (integer_type_node)))
-                   DECL_ARG_TYPE (parm)
-                     = c_type_promotes_to (TREE_TYPE (parm));
-
                  /* ??? Is it possible to get here with a
                     built-in prototype or will it always have
                     been diagnosed as conflicting with an
@@ -11413,19 +11386,6 @@ finish_function (location_t end_loc)
   if (c_dialect_objc ())
     objc_finish_function ();
 
-  if (TREE_CODE (fndecl) == FUNCTION_DECL
-      && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
-    {
-      tree args = DECL_ARGUMENTS (fndecl);
-      for (; args; args = DECL_CHAIN (args))
-       {
-         tree type = TREE_TYPE (args);
-         if (INTEGRAL_TYPE_P (type)
-             && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
-           DECL_ARG_TYPE (args) = c_type_promotes_to (type);
-       }
-    }
-
   if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
     BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
 
index 55d896e02df5a62148f47769356d305136d29797..d94ecb5b743a54793ee3496f8719a2c3adebde70 100644 (file)
@@ -4163,12 +4163,6 @@ convert_argument (location_t ploc, tree function, tree fundecl,
                                         val, origtype, ic_argpass,
                                         npc, fundecl, function,
                                         parmnum + 1, warnopt);
-
-  if (targetm.calls.promote_prototypes (fundecl ? TREE_TYPE (fundecl) : 0)
-      && INTEGRAL_TYPE_P (type)
-      && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
-    parmval = default_conversion (parmval);
-
   return parmval;
 }
 
@@ -6744,17 +6738,12 @@ c_safe_arg_type_equiv_p (tree t1, tree t2)
       && TREE_CODE (t2) == POINTER_TYPE)
     return true;
 
-  /* The signedness of the parameter matters only when an integral
-     type smaller than int is promoted to int, otherwise only the
-     precision of the parameter matters.
-     This check should make sure that the callee does not see
-     undefined values in argument registers.  */
+  /* Only the precision of the parameter matters.  This check should
+     make sure that the callee does not see undefined values in argument
+     registers.  */
   if (INTEGRAL_TYPE_P (t1)
       && INTEGRAL_TYPE_P (t2)
-      && TYPE_PRECISION (t1) == TYPE_PRECISION (t2)
-      && (TYPE_UNSIGNED (t1) == TYPE_UNSIGNED (t2)
-         || !targetm.calls.promote_prototypes (NULL_TREE)
-         || TYPE_PRECISION (t1) >= TYPE_PRECISION (integer_type_node)))
+      && TYPE_PRECISION (t1) == TYPE_PRECISION (t2))
     return true;
 
   return comptypes (t1, t2);
index 6caac8963cc96041eca9c945d98a30f136d98bf5..2c3ef3dfc35dce3b4707f2759db2bd37aa789cfc 100644 (file)
@@ -9707,11 +9707,6 @@ type_passed_as (tree type)
   /* Pass classes with copy ctors by invisible reference.  */
   if (TREE_ADDRESSABLE (type))
     type = build_reference_type (type);
-  else if (targetm.calls.promote_prototypes (NULL_TREE)
-          && INTEGRAL_TYPE_P (type)
-          && COMPLETE_TYPE_P (type)
-          && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
-    type = integer_type_node;
 
   return type;
 }
@@ -9747,11 +9742,6 @@ convert_for_arg_passing (tree type, tree val, tsubst_flags_t complain)
   /* Pass classes with copy ctors by invisible reference.  */
   else if (TREE_ADDRESSABLE (type))
     val = build1 (ADDR_EXPR, build_reference_type (type), val);
-  else if (targetm.calls.promote_prototypes (NULL_TREE)
-          && INTEGRAL_TYPE_P (type)
-          && COMPLETE_TYPE_P (type)
-          && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
-    val = cp_perform_integral_promotions (val, complain);
   if (complain & tf_warning)
     maybe_warn_parm_abi (type, cp_expr_loc_or_input_loc (val));
 
index 88f8f34e80602693e0030321ae2c5b0a3704851c..1b9fdf5b21d4113735e11c39ccc2d26ded0daacc 100644 (file)
@@ -1372,17 +1372,12 @@ cxx_safe_arg_type_equiv_p (tree t1, tree t2)
       && TYPE_PTR_P (t2))
     return true;
 
-  /* The signedness of the parameter matters only when an integral
-     type smaller than int is promoted to int, otherwise only the
-     precision of the parameter matters.
-     This check should make sure that the callee does not see
-     undefined values in argument registers.  */
+  /* Only the precision of the parameter matters.  This check should
+     make sure that the callee does not see undefined values in argument
+     registers.  */
   if (INTEGRAL_TYPE_P (t1)
       && INTEGRAL_TYPE_P (t2)
-      && TYPE_PRECISION (t1) == TYPE_PRECISION (t2)
-      && (TYPE_UNSIGNED (t1) == TYPE_UNSIGNED (t2)
-         || !targetm.calls.promote_prototypes (NULL_TREE)
-         || TYPE_PRECISION (t1) >= TYPE_PRECISION (integer_type_node)))
+      && TYPE_PRECISION (t1) == TYPE_PRECISION (t2))
     return true;
 
   return same_type_p (t1, t2);
index 9acfa38ba95d56bb1f80fb96cde3493d968f42e7..77b2e50fb60b1c1124e734a66f937679dfecdfbb 100644 (file)
@@ -2916,15 +2916,7 @@ gimple_builtin_call_types_compatible_p (const gimple *stmt, tree fndecl)
        return true;
       tree arg = gimple_call_arg (stmt, i);
       tree type = TREE_VALUE (targs);
-      if (!useless_type_conversion_p (type, TREE_TYPE (arg))
-         /* char/short integral arguments are promoted to int
-            by several frontends if targetm.calls.promote_prototypes
-            is true.  Allow such promotion too.  */
-         && !(INTEGRAL_TYPE_P (type)
-              && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
-              && targetm.calls.promote_prototypes (TREE_TYPE (fndecl))
-              && useless_type_conversion_p (integer_type_node,
-                                            TREE_TYPE (arg))))
+      if (!useless_type_conversion_p (type, TREE_TYPE (arg)))
        return false;
       targs = TREE_CHAIN (targs);
     }
index eccfcc89da40b6929752b04f17a9ca3c6eb15468..98575a51f588428a8c5c9d7c28d473c4a22caa7e 100644 (file)
@@ -8770,20 +8770,6 @@ tree_builtin_call_types_compatible_p (const_tree call, tree fndecl)
              && POINTER_TYPE_P (TREE_TYPE (arg))
              && tree_nop_conversion_p (type, TREE_TYPE (arg)))
            continue;
-         /* char/short integral arguments are promoted to int
-            by several frontends if targetm.calls.promote_prototypes
-            is true.  Allow such promotion too.  */
-         if (INTEGRAL_TYPE_P (type)
-             && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
-             && INTEGRAL_TYPE_P (TREE_TYPE (arg))
-             && !TYPE_UNSIGNED (TREE_TYPE (arg))
-             && targetm.calls.promote_prototypes (TREE_TYPE (fndecl))
-             && (gimple_form
-                 ? useless_type_conversion_p (integer_type_node,
-                                              TREE_TYPE (arg))
-                 : tree_nop_conversion_p (integer_type_node,
-                                          TREE_TYPE (arg))))
-           continue;
          return false;
        }
     }