Blame SOURCES/gcc10-pr96939-3.patch

805d35
2020-09-13  Jakub Jelinek  <jakub@redhat.com>
805d35
805d35
	* config/arm/arm.opt (arm_arch_specified, arm_cpu_specified,
805d35
	arm_tune_specified): New TargetVariables.
805d35
	* config/arm/arm.c (arm_configure_build_target): Comment out
805d35
	opts_set argument name.  Use opts->x_arm_*_specified instead
805d35
	of opts_set->x_arm_*_string.
805d35
	* common/config/arm/arm-common.c (arm_handle_option): New function.
805d35
	(TARGET_HANDLE_OPTION): Redefine.
805d35
805d35
--- gcc/config/arm/arm.opt.jj	2020-09-12 13:36:27.619716335 +0200
805d35
+++ gcc/config/arm/arm.opt	2020-09-12 13:38:48.547661292 +0200
805d35
@@ -30,6 +30,15 @@ const char *x_arm_cpu_string
805d35
 TargetSave
805d35
 const char *x_arm_tune_string
805d35
 
805d35
+TargetVariable
805d35
+unsigned char arm_arch_specified = 0
805d35
+
805d35
+TargetVariable
805d35
+unsigned char arm_cpu_specified = 0
805d35
+
805d35
+TargetVariable
805d35
+unsigned char arm_tune_specified = 0
805d35
+
805d35
 Enum
805d35
 Name(tls_type) Type(enum arm_tls_type)
805d35
 TLS dialect to use:
805d35
--- gcc/config/arm/arm.c.jj	2020-09-12 13:36:27.619716335 +0200
805d35
+++ gcc/config/arm/arm.c	2020-09-12 13:49:26.166363387 +0200
805d35
@@ -3181,7 +3181,7 @@ static sbitmap isa_quirkbits;
805d35
 void
805d35
 arm_configure_build_target (struct arm_build_target *target,
805d35
 			    struct cl_target_option *opts,
805d35
-			    struct gcc_options *opts_set,
805d35
+			    struct gcc_options */* opts_set */,
805d35
 			    bool warn_compatible)
805d35
 {
805d35
   const cpu_option *arm_selected_tune = NULL;
805d35
@@ -3196,7 +3196,7 @@ arm_configure_build_target (struct arm_b
805d35
   target->core_name = NULL;
805d35
   target->arch_name = NULL;
805d35
 
805d35
-  if (opts_set->x_arm_arch_string)
805d35
+  if (opts->x_arm_arch_specified)
805d35
     {
805d35
       arm_selected_arch = arm_parse_arch_option_name (all_architectures,
805d35
 						      "-march",
805d35
@@ -3204,7 +3204,7 @@ arm_configure_build_target (struct arm_b
805d35
       arch_opts = strchr (opts->x_arm_arch_string, '+');
805d35
     }
805d35
 
805d35
-  if (opts_set->x_arm_cpu_string)
805d35
+  if (opts->x_arm_cpu_specified)
805d35
     {
805d35
       arm_selected_cpu = arm_parse_cpu_option_name (all_cores, "-mcpu",
805d35
 						    opts->x_arm_cpu_string);
805d35
@@ -3214,7 +3214,7 @@ arm_configure_build_target (struct arm_b
805d35
 	 options for tuning.  */
805d35
     }
805d35
 
805d35
-  if (opts_set->x_arm_tune_string)
805d35
+  if (opts->x_arm_tune_specified)
805d35
     {
805d35
       arm_selected_tune = arm_parse_cpu_option_name (all_cores, "-mtune",
805d35
 						     opts->x_arm_tune_string);
805d35
--- gcc/common/config/arm/arm-common.c.jj	2020-07-28 15:39:09.705760394 +0200
805d35
+++ gcc/common/config/arm/arm-common.c	2020-09-12 13:50:09.021738456 +0200
805d35
@@ -1021,6 +1021,34 @@ arm_asm_auto_mfpu (int argc, const char
805d35
 
805d35
 #undef ARM_CPU_NAME_LENGTH
805d35
 
805d35
+bool
805d35
+arm_handle_option (struct gcc_options *opts,
805d35
+		   struct gcc_options *opts_set ATTRIBUTE_UNUSED,
805d35
+		   const struct cl_decoded_option *decoded,
805d35
+		   location_t loc ATTRIBUTE_UNUSED)
805d35
+{
805d35
+  size_t code = decoded->opt_index;
805d35
+  const char *arg = decoded->arg;
805d35
+  int val = decoded->value;
805d35
+
805d35
+  switch (code)
805d35
+    {
805d35
+    case OPT_march_:
805d35
+      opts->x_arm_arch_specified = true;
805d35
+      return true;
805d35
+
805d35
+    case OPT_mcpu_:
805d35
+      opts->x_arm_cpu_specified = true;
805d35
+      return true;
805d35
+
805d35
+    case OPT_mtune_:
805d35
+      opts->x_arm_tune_specified = true;
805d35
+      return true;
805d35
+
805d35
+    default:
805d35
+      return true;
805d35
+    }
805d35
+}
805d35
 
805d35
 #undef  TARGET_DEFAULT_TARGET_FLAGS
805d35
 #define TARGET_DEFAULT_TARGET_FLAGS (TARGET_DEFAULT | MASK_SCHED_PROLOG)
805d35
@@ -1031,4 +1059,7 @@ arm_asm_auto_mfpu (int argc, const char
805d35
 #undef TARGET_EXCEPT_UNWIND_INFO
805d35
 #define TARGET_EXCEPT_UNWIND_INFO  arm_except_unwind_info
805d35
 
805d35
+#undef  TARGET_HANDLE_OPTION
805d35
+#define TARGET_HANDLE_OPTION arm_handle_option
805d35
+
805d35
 struct gcc_targetm_common targetm_common = TARGETM_COMMON_INITIALIZER;