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]

r242253 - in /branches/ARM/sve-branch/gcc: call...


Author: rsandifo
Date: Fri Nov 11 17:28:08 2016
New Revision: 242253

URL: https://gcc.gnu.org/viewcvs?rev=242253&root=gcc&view=rev
Log:
poly_int: argument sizes

This patch changes various bits of state related to argument
sizes so that they have type poly_int64 rather than HOST_WIDE_INT.
This includes:

- incoming_args::pops_args and incoming_args::size
- rtl_data::outgoing_args_size
- pending_stack_adjust
- stack_pointer_delta
- stack_usage::pushed_stack_size
- args_size::constant

It also changes TARGET_RETURN_POPS_ARGS so that the size
of the arguments passed in and the size returned by the hook
are both poly_int64s.

Modified:
    branches/ARM/sve-branch/gcc/calls.c
    branches/ARM/sve-branch/gcc/cfgexpand.c
    branches/ARM/sve-branch/gcc/config/avr/avr.c
    branches/ARM/sve-branch/gcc/config/cr16/cr16.c
    branches/ARM/sve-branch/gcc/config/ft32/ft32.c
    branches/ARM/sve-branch/gcc/config/i386/i386.c
    branches/ARM/sve-branch/gcc/config/m32r/m32r.h
    branches/ARM/sve-branch/gcc/config/m68k/m68k.c
    branches/ARM/sve-branch/gcc/config/moxie/moxie.c
    branches/ARM/sve-branch/gcc/config/pa/pa.h
    branches/ARM/sve-branch/gcc/config/rs6000/rs6000.h
    branches/ARM/sve-branch/gcc/config/vax/vax.c
    branches/ARM/sve-branch/gcc/doc/tm.texi
    branches/ARM/sve-branch/gcc/dojump.c
    branches/ARM/sve-branch/gcc/dojump.h
    branches/ARM/sve-branch/gcc/emit-rtl.h
    branches/ARM/sve-branch/gcc/explow.c
    branches/ARM/sve-branch/gcc/function.c
    branches/ARM/sve-branch/gcc/function.h
    branches/ARM/sve-branch/gcc/poly-int-types.h
    branches/ARM/sve-branch/gcc/target.def
    branches/ARM/sve-branch/gcc/targhooks.c
    branches/ARM/sve-branch/gcc/targhooks.h
    branches/ARM/sve-branch/gcc/toplev.c


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