always define HAVE_epilogue
authorTrevor Saunders <tbsaunde+gcc@tbsaunde.org>
Tue, 28 Apr 2015 04:45:12 +0000 (04:45 +0000)
committerTrevor Saunders <tbsaunde@gcc.gnu.org>
Tue, 28 Apr 2015 04:45:12 +0000 (04:45 +0000)
gcc/ChangeLog:

2015-04-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* defaults.h (gen_epilogue): New function.
(HAVE_epilogue): Add default definition to false.
* alias.c (init_alias_analysis): don't check if HAVE_epilogue is
defined.
* cfgrtl.c (cfg_layout_finalize): Likewise.
* df-scan.c: Likewise.
* function.c (thread_prologue_and_epilogue_insns): Likewise.
(reposition_prologue_and_epilogue_notes): Likewise.
* reorg.c (find_end_label): Likewise.
* toplev.c: Likewise.

From-SVN: r222506

gcc/ChangeLog
gcc/alias.c
gcc/cfgrtl.c
gcc/defaults.h
gcc/df-scan.c
gcc/function.c
gcc/reorg.c
gcc/toplev.c

index 578b95ad10fce139e0839f1954f70477a759ea51..6eeba5fde877db517fc5610ed998ee10cdced049 100644 (file)
@@ -1,3 +1,15 @@
+2015-04-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
+
+       * defaults.h (gen_epilogue): New function.
+       * alias.c (init_alias_analysis): don't check if HAVE_epilogue is
+       defined.
+       * cfgrtl.c (cfg_layout_finalize): Likewise.
+       * df-scan.c: Likewise.
+       * function.c (thread_prologue_and_epilogue_insns): Likewise.
+       (reposition_prologue_and_epilogue_notes): Likewise.
+       * reorg.c (find_end_label): Likewise.
+       * toplev.c: Likewise.
+
 2015-04-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
 
        * bb-reorder.c (HAVE_return): Don't check if its undefined.
index 8f486600063be2fc3a7304d5b78732349bfcd9b4..7d9a3d9113d8dbe00b31e5a91e592a9822f95ec6 100644 (file)
@@ -2925,15 +2925,19 @@ init_alias_analysis (void)
                {
                  rtx note, set;
 
-#if defined (HAVE_prologue) || defined (HAVE_epilogue)
+#if defined (HAVE_prologue)
+                 static const bool prologue = true;
+#else
+                 static const bool prologue = false;
+#endif
+
                  /* The prologue/epilogue insns are not threaded onto the
                     insn chain until after reload has completed.  Thus,
                     there is no sense wasting time checking if INSN is in
                     the prologue/epilogue until after reload has completed.  */
-                 if (reload_completed
+                 if ((prologue || HAVE_epilogue) && reload_completed
                      && prologue_epilogue_contains (insn))
                    continue;
-#endif
 
                  /* If this insn has a noalias note, process it,  Otherwise,
                     scan for sets.  A simple set will have no side effects
index 702750252fad906ec23e07d978115543b2701ef5..8a750448866a9a670330be1451e4271c53e65747 100644 (file)
@@ -4339,11 +4339,7 @@ cfg_layout_finalize (void)
 #endif
   force_one_exit_fallthru ();
   rtl_register_cfg_hooks ();
-  if (reload_completed
-#ifdef HAVE_epilogue
-      && !HAVE_epilogue
-#endif
-      )
+  if (reload_completed && !HAVE_epilogue)
     fixup_fallthru_exit_predecessor ();
   fixup_reorder_chain ();
 
index d3da328ee47ab5ac380d88327e6ccd62ed0acc3e..4c8719163e2f71e9a9a3b47c2f46a5938a1a28ad 100644 (file)
@@ -1418,6 +1418,16 @@ gen_return ()
 }
 #endif
 
+#ifndef HAVE_epilogue
+#define HAVE_epilogue 0
+static inline rtx
+gen_epilogue ()
+{
+  gcc_unreachable ();
+  return NULL;
+}
+#endif
+
 #endif /* GCC_INSN_FLAGS_H  */
 
 #endif  /* ! GCC_DEFAULTS_H */
index 9f0e47fe48ebb01d2ac071028611bf6e43986974..a990a7b166b0ff67eb976a6f5ef2c9bd654ca93b 100644 (file)
@@ -62,9 +62,6 @@ along with GCC; see the file COPYING3.  If not see
 typedef struct df_mw_hardreg *df_mw_hardreg_ptr;
 
 
-#ifndef HAVE_epilogue
-#define HAVE_epilogue 0
-#endif
 #ifndef HAVE_prologue
 #define HAVE_prologue 0
 #endif
index 561a1c5087fa4a27cd042d15775ac4242b76bfcc..14afc53c603432d0970e1c8c839e53abe067162e 100644 (file)
@@ -6066,7 +6066,6 @@ thread_prologue_and_epilogue_insns (void)
   if (exit_fallthru_edge == NULL)
     goto epilogue_done;
 
-#ifdef HAVE_epilogue
   if (HAVE_epilogue)
     {
       start_sequence ();
@@ -6090,7 +6089,6 @@ thread_prologue_and_epilogue_insns (void)
        set_return_jump_label (returnjump);
     }
   else
-#endif
     {
       basic_block cur_bb;
 
@@ -6183,7 +6181,6 @@ epilogue_done:
     }
 #endif
 
-#ifdef HAVE_epilogue
   if (epilogue_end)
     {
       rtx_insn *insn, *next;
@@ -6201,7 +6198,6 @@ epilogue_done:
            reorder_insns (insn, insn, PREV_INSN (epilogue_end));
        }
     }
-#endif
 
   bitmap_clear (&bb_flags);
 
@@ -6217,8 +6213,11 @@ epilogue_done:
 void
 reposition_prologue_and_epilogue_notes (void)
 {
-#if defined (HAVE_prologue) || defined (HAVE_epilogue) \
-    || defined (HAVE_sibcall_epilogue)
+#if ! defined (HAVE_prologue) && ! defined (HAVE_sibcall_epilogue)
+  if (!HAVE_epilogue)
+    return;
+#endif
+
   /* Since the hash table is created on demand, the fact that it is
      non-null is a signal that it is non-empty.  */
   if (prologue_insn_hash != NULL)
@@ -6315,7 +6314,6 @@ reposition_prologue_and_epilogue_notes (void)
            }
        }
     }
-#endif /* HAVE_prologue or HAVE_epilogue */
 }
 
 /* Returns the name of function declared by FNDECL.  */
index a44d4a394b06fd0df1f1b02c08f4147bbd27c45c..e9af7b7bd4abc755accd3b162e04a6b54f71c087 100644 (file)
@@ -484,14 +484,12 @@ find_end_label (rtx kind)
        }
       else
        {
-#ifdef HAVE_epilogue
          if (HAVE_epilogue && ! HAVE_return)
            /* The RETURN insn has its delay slot filled so we cannot
               emit the label just before it.  Since we already have
               an epilogue and cannot emit a new RETURN, we cannot
               emit the label at all.  */
            return NULL;
-#endif /* HAVE_epilogue */
 
          /* Otherwise, make a new label and emit a RETURN and BARRIER,
             if needed.  */
index b06eed3e997389319030e17f7271bf0270da23e7..38de36b107bc3fa3b678a51bbb7aee5b37d559b6 100644 (file)
@@ -128,9 +128,6 @@ along with GCC; see the file COPYING3.  If not see
                                   declarations for e.g. AIX 4.x.  */
 #endif
 
-#ifndef HAVE_epilogue
-#define HAVE_epilogue 0
-#endif
 #ifndef HAVE_prologue
 #define HAVE_prologue 0
 #endif