avoid hardreg autoinit
authorRichard Biener <rguenther@suse.de>
Mon, 4 Oct 2021 12:24:07 +0000 (14:24 +0200)
committerRichard Biener <rguenther@suse.de>
Mon, 4 Oct 2021 16:02:57 +0000 (18:02 +0200)
This avoids initializating "uninitialized" hardregs like SP.

2021-10-04  Richard Biener  <rguenther@suse.de>

* gimplify.c (is_var_need_auto_init): DECL_HARD_REGISTER
variables are not to be initialized.

* gcc.dg/auto-init-hardreg-1.c: New testcase.

gcc/gimplify.c
gcc/testsuite/gcc.dg/auto-init-hardreg-1.c [new file with mode: 0644]

index f4bc649..b27776a 100644 (file)
@@ -1825,6 +1825,8 @@ static bool
 is_var_need_auto_init (tree decl)
 {
   if (auto_var_p (decl)
+      && (TREE_CODE (decl) != VAR_DECL
+         || !DECL_HARD_REGISTER (decl))
       && (flag_auto_var_init > AUTO_INIT_UNINITIALIZED)
       && (!lookup_attribute ("uninitialized", DECL_ATTRIBUTES (decl)))
       && !is_empty_type (TREE_TYPE (decl)))
diff --git a/gcc/testsuite/gcc.dg/auto-init-hardreg-1.c b/gcc/testsuite/gcc.dg/auto-init-hardreg-1.c
new file mode 100644 (file)
index 0000000..7c9de99
--- /dev/null
@@ -0,0 +1,9 @@
+/* { dg-do run { target i?86-*-* x86_64-*-* } } */
+/* { dg-options "-ftrivial-auto-var-init=zero" } */
+
+int
+main ()
+{
+  register long *sp __asm__("sp");
+  return 0;
+}