This is the mail archive of the gcc-cvs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

r242184 - in /branches/ARM/sve-branch/gcc: conf...


Author: rsandifo
Date: Fri Nov 11 17:14:41 2016
New Revision: 242184

URL: https://gcc.gnu.org/viewcvs?rev=242184&root=gcc&view=rev
Log:
Remove the frame size argument from function_prologue/epilogue

Later patches will add support for frame sizes that are a run-time
invariant but not a compile-time constant.  This then raised
the question of whether the frame size argument to the
function_prologue/epilogue hooks should be updated accordingly.

As it happens, only two targets actually used this argument,
and even they got other frame-related information from the cached
machine structure.  This patch therefore removes the argument and
makes the two targets use get_frame_size () instead.

Modified:
    branches/ARM/sve-branch/gcc/config/arm/arm.c
    branches/ARM/sve-branch/gcc/config/frv/frv.c
    branches/ARM/sve-branch/gcc/config/i386/i386.c
    branches/ARM/sve-branch/gcc/config/ia64/ia64.c
    branches/ARM/sve-branch/gcc/config/m32r/m32r.c
    branches/ARM/sve-branch/gcc/config/microblaze/microblaze.c
    branches/ARM/sve-branch/gcc/config/mips/mips.c
    branches/ARM/sve-branch/gcc/config/mmix/mmix.c
    branches/ARM/sve-branch/gcc/config/msp430/msp430.c
    branches/ARM/sve-branch/gcc/config/nds32/nds32.c
    branches/ARM/sve-branch/gcc/config/nios2/nios2.c
    branches/ARM/sve-branch/gcc/config/pa/pa.c
    branches/ARM/sve-branch/gcc/config/rl78/rl78.c
    branches/ARM/sve-branch/gcc/config/rs6000/rs6000.c
    branches/ARM/sve-branch/gcc/config/rx/rx.c
    branches/ARM/sve-branch/gcc/config/sh/sh.c
    branches/ARM/sve-branch/gcc/config/sparc/sparc.c
    branches/ARM/sve-branch/gcc/doc/tm.texi
    branches/ARM/sve-branch/gcc/final.c
    branches/ARM/sve-branch/gcc/output.h
    branches/ARM/sve-branch/gcc/target.def


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]