Commit 638e18a4 by Richard Sandiford Committed by Richard Sandiford

store-motion.c: Include rtl-iter.h.

gcc/
	* store-motion.c: Include rtl-iter.h.
	(extract_mentioned_regs_1): Delete.
	(extract_mentioned_regs): Use FOR_EACH_SUBRTX_VAR rather than
	for_each_rtx to iterate over subrtxes.

From-SVN: r214660
parent 34a1e300
2014-08-28 Richard Sandiford <rdsandiford@googlemail.com> 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
* store-motion.c: Include rtl-iter.h.
(extract_mentioned_regs_1): Delete.
(extract_mentioned_regs): Use FOR_EACH_SUBRTX_VAR rather than
for_each_rtx to iterate over subrtxes.
2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
* sel-sched.c: Include rtl-iter.h * sel-sched.c: Include rtl-iter.h
(count_occurrences_1): Delete. (count_occurrences_1): Delete.
(count_occurrences_equiv): Turn rtxes into const_rtxes. (count_occurrences_equiv): Turn rtxes into const_rtxes.
...@@ -42,6 +42,7 @@ along with GCC; see the file COPYING3. If not see ...@@ -42,6 +42,7 @@ along with GCC; see the file COPYING3. If not see
#include "hash-table.h" #include "hash-table.h"
#include "df.h" #include "df.h"
#include "dbgcnt.h" #include "dbgcnt.h"
#include "rtl-iter.h"
/* This pass implements downward store motion. /* This pass implements downward store motion.
As of May 1, 2009, the pass is not enabled by default on any target, As of May 1, 2009, the pass is not enabled by default on any target,
...@@ -278,19 +279,6 @@ store_ops_ok (const_rtx x, int *regs_set) ...@@ -278,19 +279,6 @@ store_ops_ok (const_rtx x, int *regs_set)
return true; return true;
} }
/* Helper for extract_mentioned_regs. */
static int
extract_mentioned_regs_1 (rtx *loc, void *data)
{
rtx *mentioned_regs_p = (rtx *) data;
if (REG_P (*loc))
*mentioned_regs_p = alloc_EXPR_LIST (0, *loc, *mentioned_regs_p);
return 0;
}
/* Returns a list of registers mentioned in X. /* Returns a list of registers mentioned in X.
FIXME: A regset would be prettier and less expensive. */ FIXME: A regset would be prettier and less expensive. */
...@@ -298,7 +286,13 @@ static rtx ...@@ -298,7 +286,13 @@ static rtx
extract_mentioned_regs (rtx x) extract_mentioned_regs (rtx x)
{ {
rtx mentioned_regs = NULL; rtx mentioned_regs = NULL;
for_each_rtx (&x, extract_mentioned_regs_1, &mentioned_regs); subrtx_var_iterator::array_type array;
FOR_EACH_SUBRTX_VAR (iter, array, x, NONCONST)
{
rtx x = *iter;
if (REG_P (x))
mentioned_regs = alloc_EXPR_LIST (0, x, mentioned_regs);
}
return mentioned_regs; return mentioned_regs;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment