aboutsummaryrefslogtreecommitdiff
path: root/gcc/reg-stack.c
diff options
context:
space:
mode:
authorUros Bizjak <ubizjak@gmail.com>2006-12-11 14:06:07 +0000
committerUros Bizjak <ubizjak@gmail.com>2006-12-11 14:06:07 +0000
commit5d76eb83160ea478cb22533b0031fc834029e31e (patch)
treeb84b83cd26e28436a111b54380af292b10b0f3c6 /gcc/reg-stack.c
parent03fba83e1f55c2bbc06beef9a3f85f77330f1091 (diff)
PR target/30120
Revert: 2006-11-15 Uros Bizjak <ubizjak@gmail.com> * config/i386/i386.opt: New target option -mx87regparm. * config/i386/i386.h (struct ix86_args): Add x87_nregs, x87_regno, float_in_x87: Add new variables. mmx_words, sse_words: Remove. (X87_REGPARM_MAX): Define. * config/i386/i386.c (override_options): Error out for -mx87regparm but no 80387 support. (ix86_attribute_table): Add x87regparm. (ix86_handle_cconv_attribute): Update comments for x87regparm. (ix86_comp_type_attributes): Check for mismatched x87regparm types. (ix86_function_x87regparm): New function. (ix86_function_arg_regno_p): Add X87_REGPARM_MAX 80387 floating point registers. (init_cumulative_args): Initialize x87_nregs and float_in_x87 variables. (function_arg_advance): Process x87_nregs and x87_regno when floating point argument is to be passed in 80387 register. (function_arg): Pass XFmode arguments in 80387 registers for local functions. Pass SFmode and DFmode arguments to local functions in 80387 registers when flag_unsafe_math_optimizations is set. * reg-stack.c (convert_regs_entry): Disable NaN load for stack registers that are used for argument passing. * doc/extend.texi: Document x87regparm function attribute. * doc/invoke.texi: Document -mx87regparm. testsuite/ChangeLog: PR target/30120 * gcc.target/i386/pr30120.c: New test. Revert: 2006-11-15 Uros Bizjak <ubizjak@gmail.com> * gcc.target/i386/x87regparm-1.c: New test. * gcc.target/i386/x87regparm-2.c: New test. * gcc.target/i386/x87regparm-3.c: New test. * gcc.target/i386/x87regparm-4.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@119734 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r--gcc/reg-stack.c26
1 files changed, 2 insertions, 24 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c
index 327cee51f08..49c733eb742 100644
--- a/gcc/reg-stack.c
+++ b/gcc/reg-stack.c
@@ -2558,28 +2558,11 @@ print_stack (FILE *file, stack s)
static int
convert_regs_entry (void)
{
- tree params = DECL_ARGUMENTS (current_function_decl);
- tree p;
- HARD_REG_SET incoming_regs;
- rtx inc_rtx;
-
int inserted = 0;
edge e;
edge_iterator ei;
- /* Find out which registers were used as argument passing registers. */
-
- CLEAR_HARD_REG_SET (incoming_regs);
- for (p = params; p; p = TREE_CHAIN (p))
- {
- inc_rtx = DECL_INCOMING_RTL (p);
-
- if (REG_P (inc_rtx)
- && IN_RANGE (REGNO (inc_rtx), FIRST_STACK_REG, LAST_STACK_REG))
- SET_HARD_REG_BIT (incoming_regs, REGNO (inc_rtx));
- }
-
- /* Load something into remaining stack register live at function entry.
+ /* Load something into each stack register live at function entry.
Such live registers can be caused by uninitialized variables or
functions not returning values on all paths. In order to keep
the push/pop code happy, and to not scrog the register stack, we
@@ -2595,17 +2578,12 @@ convert_regs_entry (void)
int reg, top = -1;
for (reg = LAST_STACK_REG; reg >= FIRST_STACK_REG; --reg)
- if (TEST_HARD_REG_BIT (bi->stack_in.reg_set, reg)
- || TEST_HARD_REG_BIT (incoming_regs, reg))
+ if (TEST_HARD_REG_BIT (bi->stack_in.reg_set, reg))
{
rtx init;
bi->stack_in.reg[++top] = reg;
- /* Skip argument passing registers. */
- if (TEST_HARD_REG_BIT (incoming_regs, reg))
- continue;
-
init = gen_rtx_SET (VOIDmode,
FP_MODE_REG (FIRST_STACK_REG, SFmode),
not_a_num);