diff options
author | Eric Botcazou <ebotcazou@libertysurf.fr> | 2006-10-03 18:25:00 +0200 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2006-10-03 16:25:00 +0000 |
commit | 224869d958a293df8b87d4d9ba12e29583de427d (patch) | |
tree | 7524af2493029b414c53a5f841468ff3297a46a7 | |
parent | f0d1d9711d0186439c7c5491b3d9f90d8f4816fc (diff) | |
download | gcc-224869d958a293df8b87d4d9ba12e29583de427d.zip gcc-224869d958a293df8b87d4d9ba12e29583de427d.tar.gz gcc-224869d958a293df8b87d4d9ba12e29583de427d.tar.bz2 |
builtins.c (expand_builtin_return_addr): Deal with FRAME_ADDR_RTX.
* builtins.c (expand_builtin_return_addr): Deal with FRAME_ADDR_RTX.
* doc/tm.texi (Basic Stack Layout): Document FRAME_ADDR_RTX.
* config/sparc/sparc.h (FRAME_ADDR_RTX): Define.
From-SVN: r117403
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/builtins.c | 14 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.h | 4 | ||||
-rw-r--r-- | gcc/doc/tm.texi | 8 |
4 files changed, 27 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f8fb06d..260fc34 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2006-10-03 Eric Botcazou <ebotcazou@libertysurf.fr> + + * builtins.c (expand_builtin_return_addr): Deal with FRAME_ADDR_RTX. + * doc/tm.texi (Basic Stack Layout): Document FRAME_ADDR_RTX. + * config/sparc/sparc.h (FRAME_ADDR_RTX): Define. + 2006-10-02 Jack Howarth <howarth@bromo.med.uc.edu> * unwind-dw2-fde-darwin.c (getsectdatafromheader_64): Fix first diff --git a/gcc/builtins.c b/gcc/builtins.c index 8fb58ca..2c81983 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -558,14 +558,14 @@ expand_builtin_return_addr (enum built_in_function fndecl_code, int count) #endif /* Some machines need special handling before we can access - arbitrary frames. For example, on the sparc, we must first flush + arbitrary frames. For example, on the SPARC, we must first flush all register windows to the stack. */ #ifdef SETUP_FRAME_ADDRESSES if (count > 0) SETUP_FRAME_ADDRESSES (); #endif - /* On the sparc, the return address is not in the frame, it is in a + /* On the SPARC, the return address is not in the frame, it is in a register. There is no way to access it off of the current frame pointer, but it can be accessed off the previous frame pointer by reading the value from the register window save area. */ @@ -587,12 +587,16 @@ expand_builtin_return_addr (enum built_in_function fndecl_code, int count) tem = copy_to_reg (tem); } - /* For __builtin_frame_address, return what we've got. */ + /* For __builtin_frame_address, return what we've got. But, on + the SPARC for example, we may have to add a bias. */ if (fndecl_code == BUILT_IN_FRAME_ADDRESS) +#ifdef FRAME_ADDR_RTX + return FRAME_ADDR_RTX (tem); +#else return tem; +#endif - /* For __builtin_return_address, Get the return address from that - frame. */ + /* For __builtin_return_address, get the return address from that frame. */ #ifdef RETURN_ADDR_RTX tem = RETURN_ADDR_RTX (count, tem); #else diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 1d595bc..8a2121c 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -1701,6 +1701,10 @@ do { \ #define DYNAMIC_CHAIN_ADDRESS(frame) \ plus_constant (frame, 14 * UNITS_PER_WORD + SPARC_STACK_BIAS) +/* Given an rtx for the frame pointer, + return an rtx for the address of the frame. */ +#define FRAME_ADDR_RTX(frame) plus_constant (frame, SPARC_STACK_BIAS) + /* The return address isn't on the stack, it is in a register, so we can't access it from the current frame pointer. We can access it from the previous frame pointer though by reading a value from the register window diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index c724a49..cc448bc 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -2995,6 +2995,14 @@ machines. One reason you may need to define this target hook is if @code{hard_frame_pointer_rtx} is the appropriate value on your machine. @end deftypefn +@defmac FRAME_ADDR_RTX (@var{frameaddr}) +A C expression whose value is RTL representing the value of the frame +address for the current frame. @var{frameaddr} is the frame pointer +of the current frame. This is used for __builtin_frame_address. +You need only define this macro if the frame address is not the same +as the frame pointer. Most machines do not need to define it. +@end defmac + @defmac RETURN_ADDR_RTX (@var{count}, @var{frameaddr}) A C expression whose value is RTL representing the value of the return address for the frame @var{count} steps up from the current frame, after |