1998-10-08 21:33:02 +00:00
|
|
|
--- gcc/config/i386/freebsd-elf.h.orig Mon Jul 13 15:38:36 1998
|
1999-01-23 06:08:11 +00:00
|
|
|
+++ gcc/config/i386/freebsd-elf.h Fri Jan 22 04:11:03 1999
|
|
|
|
@@ -26,8 +26,13 @@
|
|
|
|
|
|
|
|
/* The svr4 ABI for the i386 says that records and unions are returned
|
|
|
|
in memory. */
|
|
|
|
+/* On FreeBSD, we do not. */
|
|
|
|
#undef DEFAULT_PCC_STRUCT_RETURN
|
|
|
|
-#define DEFAULT_PCC_STRUCT_RETURN 1
|
|
|
|
+#define DEFAULT_PCC_STRUCT_RETURN 0
|
|
|
|
+
|
|
|
|
+/* This gets defined in tm.h->linux.h->svr4.h, and keeps us from using
|
|
|
|
+ libraries compiled with the native cc, so undef it. */
|
|
|
|
+#undef NO_DOLLAR_IN_LABEL
|
|
|
|
|
|
|
|
/* This is how to output an element of a case-vector that is relative.
|
|
|
|
This is only used for PIC code. See comments by the `casesi' insn in
|
|
|
|
@@ -108,22 +113,19 @@
|
1998-10-08 21:33:02 +00:00
|
|
|
: ((n) >= FIRST_STACK_REG && (n) <= LAST_STACK_REG) ? (n)+3 \
|
|
|
|
: (-1))
|
|
|
|
|
|
|
|
-/* Output assembler code to FILE to increment profiler label # LABELNO
|
|
|
|
- for profiling a function entry. */
|
|
|
|
+/* Tell final.c that we don't need a label passed to mcount. */
|
|
|
|
+#define NO_PROFILE_DATA
|
|
|
|
|
|
|
|
#undef FUNCTION_PROFILER
|
|
|
|
#define FUNCTION_PROFILER(FILE, LABELNO) \
|
|
|
|
{ \
|
|
|
|
if (flag_pic) \
|
|
|
|
{ \
|
|
|
|
- fprintf (FILE, "\tleal %sP%d@GOTOFF(%%ebx),%%edx\n", \
|
|
|
|
- LPREFIX, (LABELNO)); \
|
|
|
|
- fprintf (FILE, "\tcall *mcount@GOT(%%ebx)\n"); \
|
|
|
|
+ fprintf (FILE, "\tcall *.mcount@GOT(%%ebx)\n"); \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
- fprintf (FILE, "\tmovl $%sP%d,%%edx\n", LPREFIX, (LABELNO)); \
|
|
|
|
- fprintf (FILE, "\tcall mcount\n"); \
|
|
|
|
+ fprintf (FILE, "\tcall .mcount\n"); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
1999-01-23 06:08:11 +00:00
|
|
|
@@ -146,20 +148,8 @@
|
1998-10-08 21:33:02 +00:00
|
|
|
#define CPP_SPEC "%(cpp_cpu) %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE}"
|
|
|
|
|
|
|
|
#undef LIB_SPEC
|
|
|
|
-#if 1
|
|
|
|
-/* We no longer link with libc_p.a or libg.a by default. If you
|
|
|
|
- * want to profile or debug the C library, please add
|
|
|
|
- * -lc_p or -ggdb to LDFLAGS at the link time, respectively.
|
|
|
|
- */
|
1999-01-23 06:08:11 +00:00
|
|
|
-#define LIB_SPEC \
|
1998-10-08 21:33:02 +00:00
|
|
|
- "%{!shared: %{mieee-fp:-lieee} %{p:-lgmon} %{pg:-lgmon} \
|
|
|
|
- %{!ggdb:-lc} %{ggdb:-lg}}"
|
|
|
|
-#else
|
1999-01-23 06:08:11 +00:00
|
|
|
#define LIB_SPEC \
|
1998-10-08 21:33:02 +00:00
|
|
|
- "%{!shared: \
|
|
|
|
- %{mieee-fp:-lieee} %{p:-lgmon -lc_p} %{pg:-lgmon -lc_p} \
|
|
|
|
- %{!p:%{!pg:%{!g*:-lc} %{g*:-lg}}}}"
|
|
|
|
-#endif
|
|
|
|
+ "%{!shared: %{p:-lc_p} %{pg:-lc_p} %{!p:%{!pg:-lc}}}"
|
|
|
|
|
|
|
|
/* Provide a LINK_SPEC appropriate for FreeBSD. Here we provide support
|
|
|
|
for the special GCC options -static and -shared, which allow us to
|