aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Brinkhoff <lars@nocrew.org>2001-08-23 13:40:40 +0000
committerNick Clifton <nickc@gcc.gnu.org>2001-08-23 13:40:40 +0000
commit038c2f5067d3cdbe2fe6b996f19898d0091e29a4 (patch)
tree0a53107f4c62c00edf5bffade285653c2da19443
parent88c1082bf89c25ef0c9cb7bddcd567d62fe8776f (diff)
downloadgcc-038c2f5067d3cdbe2fe6b996f19898d0091e29a4.zip
gcc-038c2f5067d3cdbe2fe6b996f19898d0091e29a4.tar.gz
gcc-038c2f5067d3cdbe2fe6b996f19898d0091e29a4.tar.bz2
Remove unused function
From-SVN: r45131
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/mcore/mcore-protos.h1
-rw-r--r--gcc/config/mcore/mcore.c64
-rw-r--r--gcc/config/mcore/mcore.h4
-rw-r--r--gcc/config/mcore/mcore.md4
5 files changed, 9 insertions, 71 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5143672..8f1cd83 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,12 @@
2001-08-23 Lars Brinkhoff <lars@nocrew.org>
+ * config/mcore/mcore.h (MACHINE_DEPENDENT_SIMPLIFY): Remove.
+ * config/mcore/mcore.c (mcore_dependent_simplify_rtx): Likewise.
+ * config/mcore/mcore-protos.h (mcore_dependent_simplify_rtx):
+ Remove prototype.
+
+2001-08-23 Lars Brinkhoff <lars@nocrew.org>
+
* genconstants.c, genpreds.c, libfuncs.h, optabs.h, rtl-error.h:
replace "GNU CC" with "GCC".
diff --git a/gcc/config/mcore/mcore-protos.h b/gcc/config/mcore/mcore-protos.h
index 8c2b1ba..9e197ca 100644
--- a/gcc/config/mcore/mcore-protos.h
+++ b/gcc/config/mcore/mcore-protos.h
@@ -63,7 +63,6 @@ extern int mcore_is_dead PARAMS ((rtx, rtx));
extern int mcore_expand_insv PARAMS ((rtx *));
extern int mcore_modify_comparison PARAMS ((RTX_CODE));
extern void mcore_expand_block_move PARAMS ((rtx, rtx, rtx *));
-extern rtx mcore_dependent_simplify_rtx PARAMS ((rtx, int, int, int, int *));
extern void mcore_dependent_reorg PARAMS ((rtx));
extern int mcore_const_costs PARAMS ((rtx, RTX_CODE));
extern int mcore_and_cost PARAMS ((rtx));
diff --git a/gcc/config/mcore/mcore.c b/gcc/config/mcore/mcore.c
index 742875e..095eef3 100644
--- a/gcc/config/mcore/mcore.c
+++ b/gcc/config/mcore/mcore.c
@@ -2615,70 +2615,6 @@ mcore_output_jump_label_table ()
return "";
}
-#if 0 /* XXX temporarily suppressed until I have time to look at what this code does. */
-
-/* We need these below. They use information stored in tables to figure out
- what values are in what registers, etc. This is okay, since these tables
- are valid at the time mcore_dependent_simplify_rtx() is invoked. Don't
- use them anywhere else. BRC */
-
-extern unsigned HOST_WIDE_INT nonzero_bits PARAMS ((rtx, enum machine_mode));
-extern int num_sign_bit_copies PARAMS ((Rtx, enum machine_mode));
-
-/* Do machine dependent simplifications: see simplify_rtx() in combine.c.
- GENERAL_SIMPLIFY controls whether general machine independent
- simplifications should be tried after machine dependent ones. Thus,
- we can filter out certain simplifications and keep the simplify_rtx()
- from changing things that we just simplified in a machine dependent
- fashion. This is experimental. BRC */
-rtx
-mcore_dependent_simplify_rtx (x, int_op0_mode, last, in_dest, general_simplify)
- rtx x;
- int int_op0_mode;
- int last;
- int in_dest;
- int * general_simplify;
-{
- enum machine_mode mode = GET_MODE (x);
- enum rtx_code code = GET_CODE (x);
-
- /* Always simplify unless explicitly asked not to. */
- * general_simplify = 1;
-
- if (code == IF_THEN_ELSE)
- {
- int i;
- rtx cond = XEXP(x, 0);
- rtx true_rtx = XEXP(x, 1);
- rtx false_rtx = XEXP(x, 2);
- enum rtx_code true_code = GET_CODE (cond);
-
- /* On the mcore, when doing -mcmov-one, we don't want to simplify:
-
- (if_then_else (ne A 0) C1 0)
-
- if it would be turned into a shift by simplify_if_then_else().
- instead, leave it alone so that it will collapse into a conditional
- move. besides, at least for the mcore, doing this simplification does
- not typically help. see combine.c, line 4217. BRC */
-
- if (true_code == NE && XEXP (cond, 1) == const0_rtx
- && false_rtx == const0_rtx && GET_CODE (true_rtx) == CONST_INT
- && ((1 == nonzero_bits (XEXP (cond, 0), mode)
- && (i = exact_log2 (INTVAL (true_rtx))) >= 0)
- || ((num_sign_bit_copies (XEXP (cond, 0), mode)
- == GET_MODE_BITSIZE (mode))
- && (i = exact_log2 (- INTVAL (true_rtx))) >= 0)))
- {
- *general_simplify = 0;
- return x;
- }
- }
-
- return x;
-}
-#endif
-
/* Check whether insn is a candidate for a conditional. */
static cond_type
diff --git a/gcc/config/mcore/mcore.h b/gcc/config/mcore/mcore.h
index 5974ab8..1ce51b8 100644
--- a/gcc/config/mcore/mcore.h
+++ b/gcc/config/mcore/mcore.h
@@ -1379,10 +1379,6 @@ extern long mcore_current_compilation_timestamp;
/* This is to handle loads from the constant pool. */
#define MACHINE_DEPENDENT_REORG(X) mcore_dependent_reorg (X)
-/* This handles MCore dependent rtl simplifications. */
-#define MACHINE_DEPENDENT_SIMPLIFY(X,M,L,I,S) \
- mcore_dependent_simplify_rtx (X, M, L, I, S)
-
#define PREDICATE_CODES \
{ "mcore_arith_reg_operand", { REG, SUBREG }}, \
{ "mcore_general_movsrc_operand", { MEM, CONST_INT, REG, SUBREG }},\
diff --git a/gcc/config/mcore/mcore.md b/gcc/config/mcore/mcore.md
index 1a37bbb..11d0ade 100644
--- a/gcc/config/mcore/mcore.md
+++ b/gcc/config/mcore/mcore.md
@@ -1179,9 +1179,9 @@
int low, high;
if (TARGET_LITTLE_END)
- low = 0, high = 1;
+ low = 0, high = 4;
else
- low = 1, high = 0;
+ low = 4, high = 0;
emit_insn (gen_rtx_SET (VOIDmode, gen_rtx_SUBREG (SImode, operands[0], low),
operands[1]));