aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1996-07-18 17:20:31 -0700
committerJim Wilson <wilson@gcc.gnu.org>1996-07-18 17:20:31 -0700
commitf8ea2d9478c62fee196a7d671f2eec628440820c (patch)
treeeeb19ac516c11762ca900f8b0a1db44f54da4296 /gcc
parent1d7cf143eef12eb5a02ccb7cc63c513fa71ff390 (diff)
downloadgcc-f8ea2d9478c62fee196a7d671f2eec628440820c.zip
gcc-f8ea2d9478c62fee196a7d671f2eec628440820c.tar.gz
gcc-f8ea2d9478c62fee196a7d671f2eec628440820c.tar.bz2
(DWARF_DEBUGGING_INFO, PREFERRED_DEBUGGING_TYPE):
Move after header files are included. (iris5.h): Include instead of iris5gas.h. (MACHINE_TYPE): Change 5.x to 6.x. (DEBUG_SECTION, LINE_SECTION): Add debug_ to name, fix attributes. (SFNAMES_SECTION, SRCINFO_SECTION, MACINFO_SECTION, PUBNAMES_SECTION, ARANGES_SECTION): Fix attributes. (DWARF_VERSION, MIPS_DEBUGGING_INFO, ASM_DECLARE_FUNCTION_NAME, ASM_DECLARE_FUNCTION_SIZE, FUNCTION_NAME_ALREADY_DECLARED, FRAME_SECTION, ABBREV_SECTION): Define. (DBX_DEBUGGING_INFO, SDB_DEBUGGING_INFO, MIPS_DEBUGGING_INFO, DWARF_DEBUGGING_INFO, PREFERRED_DEBUGGING_INFO): Delete undefs at end of file. From-SVN: r12521
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/mips/iris6.h66
1 files changed, 46 insertions, 20 deletions
diff --git a/gcc/config/mips/iris6.h b/gcc/config/mips/iris6.h
index 56bf56e..94c9494 100644
--- a/gcc/config/mips/iris6.h
+++ b/gcc/config/mips/iris6.h
@@ -18,18 +18,24 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-/* Irix 6 uses DWARF. */
-#define DWARF_DEBUGGING_INFO
-#define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
-
/* Default to -mabi=n32 and -mips3. */
#define MIPS_ISA_DEFAULT 3
#define MIPS_ABI_DEFAULT ABI_N32
#define MULTILIB_DEFAULTS { "mabi=n32" }
-#include "mips/iris5gas.h"
+#include "mips/iris5.h"
#include "mips/abi64.h"
+/* Irix 6 uses DWARF. */
+#define DWARF_DEBUGGING_INFO
+#define DWARF_VERSION 2
+#define MIPS_DEBUGGING_INFO
+#undef PREFERRED_DEBUGGING_TYPE
+#define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
+
+#undef MACHINE_TYPE
+#define MACHINE_TYPE "SGI running IRIX 6.x"
+
/* The Irix 6.0.1 assembler doesn't like labels in the text section, so
just avoid emitting them. */
#define ASM_IDENTIFY_GCC
@@ -43,6 +49,32 @@ Boston, MA 02111-1307, USA. */
/* Stuff we need for Irix 6 that isn't in Irix 5. */
+/* The SGI assembler doesn't like labels before the .ent, so we must output
+ the .ent and function name here, which is the normal place for it. */
+
+#undef ASM_DECLARE_FUNCTION_NAME
+#define ASM_DECLARE_FUNCTION_NAME(STREAM, NAME, DECL) \
+ do { \
+ fputs ("\t.ent\t", STREAM); \
+ assemble_name (STREAM, NAME); \
+ fputs ("\n", STREAM); \
+ assemble_name (STREAM, NAME); \
+ fputs (":\n", STREAM); \
+ } while (0)
+
+/* Likewise, the SGI assembler doesn't like labels after the .end, so we
+ must output the .end here. */
+#define ASM_DECLARE_FUNCTION_SIZE(STREAM, NAME, DECL) \
+ do { \
+ fputs ("\t.end\t", STREAM); \
+ assemble_name (STREAM, NAME); \
+ fputs ("\n", STREAM); \
+ } while (0)
+
+/* Tell function_prologue in mips.c that we have already output the .ent/.end
+ psuedo-ops. */
+#define FUNCTION_NAME_ALREADY_DECLARED
+
#undef SET_ASM_OP /* Has no equivalent. See ASM_OUTPUT_DEF below. */
/* This is how to equate one symbol to another symbol. The syntax used is
@@ -59,13 +91,15 @@ Boston, MA 02111-1307, USA. */
#define POPSECTION_ASM_OP ".popsection"
-#define DEBUG_SECTION ".debug,1,0,0,1"
-#define LINE_SECTION ".line,1,0,0,1"
-#define SFNAMES_SECTION ".debug_sfnames,1,0,0,1"
-#define SRCINFO_SECTION ".debug_srcinfo,1,0,0,1"
-#define MACINFO_SECTION ".debug_macinfo,1,0,0,1"
-#define PUBNAMES_SECTION ".debug_pubnames,1,0,0,1"
-#define ARANGES_SECTION ".debug_aranges,1,0,0,1"
+#define DEBUG_SECTION ".debug_info,0x7000001e,0,0,1"
+#define LINE_SECTION ".debug_line,0x7000001e,0,0,1"
+#define SFNAMES_SECTION ".debug_sfnames,0x7000001e,0,0,1"
+#define SRCINFO_SECTION ".debug_srcinfo,0x7000001e,0,0,1"
+#define MACINFO_SECTION ".debug_macinfo,0x7000001e,0,0,1"
+#define PUBNAMES_SECTION ".debug_pubnames,0x7000001e,0,0,1"
+#define ARANGES_SECTION ".debug_aranges,0x7000001e,0,0,1"
+#define FRAME_SECTION ".debug_frame,0x7000001e,0x08000000,0,1"
+#define ABBREV_SECTION ".debug_abbrev,0x7000001e,0,0,1"
/* ??? If no mabi=X option give, but a mipsX option is, then should depend
on the mipsX option. */
@@ -293,11 +327,3 @@ while (0)
-_SYSTYPE_SVR4 -woff 84 \
%{mabi=32: -32}%{mabi=n32: -n32}%{mabi=64: -64} \
%{!mabi=32:%{!mabi=n32:%{!mabi=64: -n32}}}"
-
-/* ??? Debugging does not work. We get many assembler core dumps,
- and even some linker core dumps. */
-#undef DBX_DEBUGGING_INFO
-#undef SDB_DEBUGGING_INFO
-#undef MIPS_DEBUGGING_INFO
-#undef DWARF_DEBUGGING_INFO
-#undef PREFERRED_DEBUGGING_TYPE