Commit 56a7189a by Alan Modra Committed by Alan Modra

rs6000.c (output_mi_thunk): Don't determine insns for loading delta with num_insns_constant_wide.

	* config/rs6000/rs6000.c (output_mi_thunk): Don't determine insns
	for loading delta with num_insns_constant_wide.  Calculate
	delta_low, delta_high without using a conditional.

From-SVN: r56525
parent 5b770a96
2002-08-23 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/rs6000.c (output_mi_thunk): Don't determine insns
for loading delta with num_insns_constant_wide. Calculate
delta_low, delta_high without using a conditional.
2002-08-22 Jason Merrill <jason@redhat.com> 2002-08-22 Jason Merrill <jason@redhat.com>
* c-common.h (RETURN_STMT_EXPR): Rename from RETURN_EXPR. * c-common.h (RETURN_STMT_EXPR): Rename from RETURN_EXPR.
......
...@@ -11271,23 +11271,22 @@ output_mi_thunk (file, thunk_fndecl, delta, function) ...@@ -11271,23 +11271,22 @@ output_mi_thunk (file, thunk_fndecl, delta, function)
fprintf (file, "\taddi %s,%s,%d\n", this_reg, this_reg, delta); fprintf (file, "\taddi %s,%s,%d\n", this_reg, this_reg, delta);
} }
/* 64-bit constants. If "int" is 32 bits, we'll never hit this abort. */
else if (TARGET_64BIT && (delta < -2147483647 - 1 || delta > 2147483647))
abort ();
/* Large constants that can be done by one addis instruction. */ /* Large constants that can be done by one addis instruction. */
else if ((delta & 0xffff) == 0 && num_insns_constant_wide (delta) == 1) else if ((delta & 0xffff) == 0)
asm_fprintf (file, "\t{cau|addis} %s,%s,%d\n", this_reg, this_reg, asm_fprintf (file, "\t{cau|addis} %s,%s,%d\n", this_reg, this_reg,
delta >> 16); delta >> 16);
/* 32-bit constants that can be done by an add and addis instruction. */ /* 32-bit constants that can be done by an add and addis instruction. */
else if (TARGET_32BIT || num_insns_constant_wide (delta) == 1) else
{ {
/* Break into two pieces, propagating the sign bit from the low /* Break into two pieces, propagating the sign bit from the low
word to the upper word. */ word to the upper word. */
int delta_high = delta >> 16; int delta_low = ((delta & 0xffff) ^ 0x8000) - 0x8000;
int delta_low = delta & 0xffff; int delta_high = (delta - delta_low) >> 16;
if ((delta_low & 0x8000) != 0)
{
delta_high++;
delta_low = (delta_low ^ 0x8000) - 0x8000; /* sign extend */
}
asm_fprintf (file, "\t{cau|addis} %s,%s,%d\n", this_reg, this_reg, asm_fprintf (file, "\t{cau|addis} %s,%s,%d\n", this_reg, this_reg,
delta_high); delta_high);
...@@ -11298,10 +11297,6 @@ output_mi_thunk (file, thunk_fndecl, delta, function) ...@@ -11298,10 +11297,6 @@ output_mi_thunk (file, thunk_fndecl, delta, function)
fprintf (file, "\taddi %s,%s,%d\n", this_reg, this_reg, delta_low); fprintf (file, "\taddi %s,%s,%d\n", this_reg, this_reg, delta_low);
} }
/* 64-bit constants, fixme */
else
abort ();
/* Get the prefix in front of the names. */ /* Get the prefix in front of the names. */
switch (DEFAULT_ABI) switch (DEFAULT_ABI)
{ {
......
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