From e72ed4a733be57abe58ae396a70fdacea138980d Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Thu, 25 Sep 2003 07:04:05 +0000 Subject: [PATCH] mips.c (mips_va_arg): Handle arguments that must be passed on the stack. * config/mips/mips.c (mips_va_arg): Handle arguments that must be passed on the stack. From-SVN: r71760 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.c | 19 +++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ab6266836c5..d581d45ed14 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-09-25 Richard Sandiford + + * config/mips/mips.c (mips_va_arg): Handle arguments that must be + passed on the stack. + 2003-09-25 Nathanael Nerode * config.gcc (widely ported systems section): Mostly alphabetize diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 0f0a6803813..3a9aac3b37b 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -4277,6 +4277,7 @@ mips_va_arg (tree valist, tree type) { /* Not EABI. */ int align; + HOST_WIDE_INT min_offset; /* ??? The original va-mips.h did always align, despite the fact that alignments <= UNITS_PER_WORD are preserved by the va_arg @@ -4295,6 +4296,24 @@ mips_va_arg (tree valist, tree type) t = build (PLUS_EXPR, TREE_TYPE (valist), valist, build_int_2 (align - 1, 0)); t = build (BIT_AND_EXPR, TREE_TYPE (t), t, build_int_2 (-align, -1)); + + /* If arguments of type TYPE must be passed on the stack, + set MIN_OFFSET to the offset of the first stack parameter. */ + if (!MUST_PASS_IN_STACK (TYPE_MODE (type), type)) + min_offset = 0; + else if (TARGET_NEWABI) + min_offset = current_function_pretend_args_size; + else + min_offset = REG_PARM_STACK_SPACE (current_function_decl); + + /* Make sure the new address is at least MIN_OFFSET bytes from + the incoming argument pointer. */ + if (min_offset > 0) + t = build (MAX_EXPR, TREE_TYPE (valist), t, + make_tree (TREE_TYPE (valist), + plus_constant (virtual_incoming_args_rtx, + min_offset))); + t = build (MODIFY_EXPR, TREE_TYPE (valist), valist, t); expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL); -- 2.30.2