This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[alpha] use targetm.binds_local_p more places
- From: Richard Henderson <rth at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Wed, 14 Aug 2002 17:09:02 -0700
- Subject: [alpha] use targetm.binds_local_p more places
Using binds_local_p not only makes it explicit what is actually
being tested, but also handles visibility attributes properly.
r~
* calls.c: Include target.h.
* Makefile.in (calls.o): Update.
* config/alpha/alpha.c (alpha_end_function): Use targetm.binds_local_p.
* config/alpha/alpha.h (FUNCTION_OK_FOR_SIBCALL): Likewise.
Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.934
diff -c -p -d -u -r1.934 Makefile.in
--- Makefile.in 15 Aug 2002 00:00:56 -0000 1.934
+++ Makefile.in 15 Aug 2002 00:05:27 -0000
@@ -1440,7 +1440,7 @@ builtins.o : builtins.c $(CONFIG_H) $(SY
$(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
except.h $(TM_P_H) $(PREDICT_H) libfuncs.h real.h langhooks.h
calls.o : calls.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
- $(EXPR_H) langhooks.h \
+ $(EXPR_H) langhooks.h $(TARGET_H) \
libfuncs.h $(REGS_H) toplev.h output.h function.h $(TIMEVAR_H) $(TM_P_H)
expmed.o : expmed.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) real.h \
Index: calls.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/calls.c,v
retrieving revision 1.230
diff -c -p -d -u -r1.230 calls.c
--- calls.c 23 Jul 2002 11:18:10 -0000 1.230
+++ calls.c 15 Aug 2002 00:05:27 -0000
@@ -34,6 +34,7 @@ Software Foundation, 59 Temple Place - S
#include "timevar.h"
#include "sbitmap.h"
#include "langhooks.h"
+#include "target.h"
#if !defined FUNCTION_OK_FOR_SIBCALL
#define FUNCTION_OK_FOR_SIBCALL(DECL) 1
Index: config/alpha/alpha.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/alpha/alpha.c,v
retrieving revision 1.268
diff -c -p -d -u -r1.268 alpha.c
--- config/alpha/alpha.c 4 Aug 2002 22:45:21 -0000 1.268
+++ config/alpha/alpha.c 15 Aug 2002 00:05:27 -0000
@@ -7736,7 +7736,7 @@ void
alpha_end_function (file, fnname, decl)
FILE *file;
const char *fnname;
- tree decl ATTRIBUTE_UNUSED;
+ tree decl;
{
/* End the function. */
if (!TARGET_ABI_UNICOSMK && !flag_inhibit_size_directive)
@@ -7747,20 +7747,16 @@ alpha_end_function (file, fnname, decl)
}
inside_function = FALSE;
- /* Show that we know this function if it is called again.
+ /* Show that we know this function if it is called again.
- Don't do this for global functions in object files destined for a
- shared library because the function may be overridden by the application
- or other libraries. Similarly, don't do this for weak functions.
+ Do this only for functions whose symbols bind locally.
Don't do this for functions not defined in the .text section, as
otherwise it's not unlikely that the destination is out of range
for a direct branch. */
- if (!DECL_WEAK (current_function_decl)
- && (!flag_pic || !TREE_PUBLIC (current_function_decl))
- && decl_in_text_section (current_function_decl))
- SYMBOL_REF_FLAG (XEXP (DECL_RTL (current_function_decl), 0)) = 1;
+ if ((*targetm.binds_local_p) (decl) && decl_in_text_section (decl))
+ SYMBOL_REF_FLAG (XEXP (DECL_RTL (decl), 0)) = 1;
/* Output jump tables and the static subroutine information block. */
if (TARGET_ABI_UNICOSMK)
Index: config/alpha/alpha.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/alpha/alpha.h,v
retrieving revision 1.175
diff -c -p -d -u -r1.175 alpha.h
--- config/alpha/alpha.h 11 Aug 2002 06:20:07 -0000 1.175
+++ config/alpha/alpha.h 15 Aug 2002 00:05:27 -0000
@@ -1158,12 +1158,11 @@ extern int alpha_memory_latency;
/* We do not allow indirect calls to be optimized into sibling calls, nor
can we allow a call to a function in a different compilation unit to
- be optimized into a sibcall. Except if the function is known not to
- return, in which case our caller doesn't care what the gp is. */
+ be optimized into a sibcall. */
#define FUNCTION_OK_FOR_SIBCALL(DECL) \
(DECL \
- && ((TREE_ASM_WRITTEN (DECL) && !flag_pic) \
- || ! TREE_PUBLIC (DECL)))
+ && (! TREE_PUBLIC (DECL) \
+ || (TREE_ASM_WRITTEN (DECL) && (*targetm.binds_local_p) (DECL))))
/* Try to output insns to set TARGET equal to the constant C if it can be
done in less than N insns. Do all computations in MODE. Returns the place