Update TARGET_FUNCTION_INCOMING_ARG documentation
authorH.J. Lu <hongjiu.lu@intel.com>
Thu, 2 Jun 2016 13:46:20 +0000 (13:46 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Thu, 2 Jun 2016 13:46:20 +0000 (06:46 -0700)
commit4a2353126ec971d01425b1fdec42afa316804337
treeb0b73d22e0c8a955f7f397790e174ba0ffe5305b
parentf3c5ecc2b984e186f043ad03cc7a96a6275f4670
Update TARGET_FUNCTION_INCOMING_ARG documentation

On x86, interrupt handlers are only called by processors which push
interrupt data onto stack at the address where the normal return address
is.  Since interrupt handlers must access interrupt data via pointers so
that they can update interrupt data, the pointer argument is passed as
"argument pointer - word".

TARGET_FUNCTION_INCOMING_ARG defines how callee sees its argument.
Normally it returns REG, NULL, or CONST_INT.  This patch adds arbitrary
address computation based on hard register, which can be forced into a
register, to the list.

When copying an incoming argument onto stack, assign_parm_setup_stack
has:

if (argument in memory)
  copy argument in memory to stack
else
  move argument to stack

Since an arbitrary address computation may be passed as an argument, we
change it to:

if (argument in memory)
  copy argument in memory to stack
else
  {
    if (argument isn't in register)
      force argument into a register
    move argument to stack
  }

* function.c (assign_parm_setup_stack): Force source into a
register if needed.
* target.def (function_incoming_arg): Update documentation to
allow arbitrary address computation based on hard register.
* doc/tm.texi: Regenerated.

Co-Authored-By: Julia Koval <julia.koval@intel.com>
From-SVN: r237037
gcc/ChangeLog
gcc/doc/tm.texi
gcc/function.c
gcc/target.def