aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtlanal.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-01-18 06:22:04 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2006-01-18 06:22:04 +0000
commit15ed68f73d2374ddd5f71f0252b77ad0e2fed625 (patch)
treedc3af62149dc2475f79163af45e3855d6a8c3641 /gcc/rtlanal.c
parent7b7034ea9a1670ccc3fd5808cd0219e0645ffae7 (diff)
downloadgcc-15ed68f73d2374ddd5f71f0252b77ad0e2fed625.zip
gcc-15ed68f73d2374ddd5f71f0252b77ad0e2fed625.tar.gz
gcc-15ed68f73d2374ddd5f71f0252b77ad0e2fed625.tar.bz2
rtlanal.c (global_reg_mentioned_p_1, [...]): Remove.
* rtlanal.c (global_reg_mentioned_p_1, global_reg_mentioned_p): Remove. * rtl.h: Remove the prototype for global_reg_mentioned_p. From-SVN: r109871
Diffstat (limited to 'gcc/rtlanal.c')
-rw-r--r--gcc/rtlanal.c73
1 files changed, 0 insertions, 73 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c
index 490c221..91fb489 100644
--- a/gcc/rtlanal.c
+++ b/gcc/rtlanal.c
@@ -39,7 +39,6 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
#include "function.h"
/* Forward declarations */
-static int global_reg_mentioned_p_1 (rtx *, void *);
static void set_of_1 (rtx, rtx, void *);
static bool covers_regno_p (rtx, unsigned int);
static bool covers_regno_no_parallel_p (rtx, unsigned int);
@@ -476,78 +475,6 @@ get_related_value (rtx x)
return 0;
}
-/* A subroutine of global_reg_mentioned_p, returns 1 if *LOC mentions
- a global register. */
-
-static int
-global_reg_mentioned_p_1 (rtx *loc, void *data ATTRIBUTE_UNUSED)
-{
- int regno;
- rtx x = *loc;
-
- if (! x)
- return 0;
-
- switch (GET_CODE (x))
- {
- case SUBREG:
- if (REG_P (SUBREG_REG (x)))
- {
- if (REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER
- && global_regs[subreg_regno (x)])
- return 1;
- return 0;
- }
- break;
-
- case REG:
- regno = REGNO (x);
- if (regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
- return 1;
- return 0;
-
- case SCRATCH:
- case PC:
- case CC0:
- case CONST_INT:
- case CONST_DOUBLE:
- case CONST:
- case LABEL_REF:
- return 0;
-
- case CALL:
- /* A non-constant call might use a global register. */
- return 1;
-
- default:
- break;
- }
-
- return 0;
-}
-
-/* Returns nonzero if X mentions a global register. */
-
-int
-global_reg_mentioned_p (rtx x)
-{
- if (INSN_P (x))
- {
- if (CALL_P (x))
- {
- if (! CONST_OR_PURE_CALL_P (x))
- return 1;
- x = CALL_INSN_FUNCTION_USAGE (x);
- if (x == 0)
- return 0;
- }
- else
- x = PATTERN (x);
- }
-
- return for_each_rtx (&x, global_reg_mentioned_p_1, NULL);
-}
-
/* Return the number of places FIND appears within X. If COUNT_DEST is
zero, we do not count occurrences inside the destination of a SET. */