1 /* Output xcoff-format symbol table information from GNU compiler.
2 Copyright (C) 1992, 1994, 1995, 1997, 1998 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 /* Output xcoff-format symbol table data. The main functionality is contained
23 in dbxout.c. This file implements the sdbout-like parts of the xcoff
24 interface. Many functions are very similar to their counterparts in
35 #ifdef XCOFF_DEBUGGING_INFO
37 /* This defines the C_* storage classes. */
38 #include <dbxstclass.h>
43 #if defined (USG) || !defined (HAVE_STAB_H)
48 /* This is a GNU extension we need to reference in this file. */
54 /* Line number of beginning of current function, minus one.
55 Negative means not in a function or not using xcoff. */
57 static int xcoff_begin_function_line
= -1;
58 static int xcoff_inlining
= 0;
60 /* Name of the current include file. */
62 char *xcoff_current_include_file
;
64 /* Name of the current function file. This is the file the `.bf' is
65 emitted from. In case a line is emitted from a different file,
66 (by including that file of course), then the line number will be
69 static char *xcoff_current_function_file
;
71 /* Names of bss and data sections. These should be unique names for each
74 char *xcoff_bss_section_name
;
75 char *xcoff_private_data_section_name
;
76 char *xcoff_read_only_section_name
;
78 /* Last source file name mentioned in a NOTE insn. */
82 /* Macro definitions used below. */
84 #define ABS_OR_RELATIVE_LINENO(LINENO) \
85 ((xcoff_inlining) ? (LINENO) : (LINENO) - xcoff_begin_function_line)
87 /* Output source line numbers via ".line" rather than ".stabd". */
88 #define ASM_OUTPUT_SOURCE_LINE(FILE,LINENUM) \
90 if (xcoff_begin_function_line >= 0) \
91 fprintf (FILE, "\t.line\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM)); \
94 #define ASM_OUTPUT_LFB(FILE,LINENUM) \
96 if (xcoff_begin_function_line == -1) \
98 xcoff_begin_function_line = (LINENUM) - 1;\
99 fprintf (FILE, "\t.bf\t%d\n", (LINENUM)); \
101 xcoff_current_function_file \
102 = (xcoff_current_include_file \
103 ? xcoff_current_include_file : main_input_filename); \
106 #define ASM_OUTPUT_LFE(FILE,LINENUM) \
108 fprintf (FILE, "\t.ef\t%d\n", (LINENUM)); \
109 xcoff_begin_function_line = -1; \
112 #define ASM_OUTPUT_LBB(FILE,LINENUM,BLOCKNUM) \
113 fprintf (FILE, "\t.bb\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM))
115 #define ASM_OUTPUT_LBE(FILE,LINENUM,BLOCKNUM) \
116 fprintf (FILE, "\t.eb\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM))
118 static void assign_type_number
PROTO((tree
, char *, int));
119 static void xcoffout_block
PROTO((tree
, int, tree
));
121 /* Support routines for XCOFF debugging info. */
123 /* Assign NUMBER as the stabx type number for the type described by NAME.
124 Search all decls in the list SYMS to find the type NAME. */
127 assign_type_number (syms
, name
, number
)
134 for (decl
= syms
; decl
; decl
= TREE_CHAIN (decl
))
136 && strcmp (IDENTIFIER_POINTER (DECL_NAME (decl
)), name
) == 0)
138 TREE_ASM_WRITTEN (decl
) = 1;
139 TYPE_SYMTAB_ADDRESS (TREE_TYPE (decl
)) = number
;
143 /* Setup gcc primitive types to use the XCOFF built-in type numbers where
147 xcoff_output_standard_types (syms
)
150 /* Handle built-in C types here. */
152 assign_type_number (syms
, "int", -1);
153 assign_type_number (syms
, "char", -2);
154 assign_type_number (syms
, "short int", -3);
155 assign_type_number (syms
, "long int", (TARGET_64BIT
? -31 : -4));
156 assign_type_number (syms
, "unsigned char", -5);
157 assign_type_number (syms
, "signed char", -6);
158 assign_type_number (syms
, "short unsigned int", -7);
159 assign_type_number (syms
, "unsigned int", -8);
160 /* No such type "unsigned". */
161 assign_type_number (syms
, "long unsigned int", (TARGET_64BIT
? -32 : -10));
162 assign_type_number (syms
, "void", -11);
163 assign_type_number (syms
, "float", -12);
164 assign_type_number (syms
, "double", -13);
165 assign_type_number (syms
, "long double", -14);
166 /* Pascal and Fortran types run from -15 to -29. */
167 assign_type_number (syms
, "wchar", -30);
168 assign_type_number (syms
, "long long int", -31);
169 assign_type_number (syms
, "long long unsigned int", -32);
170 /* Additional Fortran types run from -33 to -37. */
172 /* ??? Should also handle built-in C++ and Obj-C types. There perhaps
173 aren't any that C doesn't already have. */
176 /* Print an error message for unrecognized stab codes. */
178 #define UNKNOWN_STAB(STR) \
180 error ("Unknown stab %s: : 0x%x\n", STR, stab); \
184 /* Conversion routine from BSD stabs to AIX storage classes. */
187 stab_to_sclass (stab
)
196 UNKNOWN_STAB ("N_FNAME");
208 UNKNOWN_STAB ("N_MAIN");
216 UNKNOWN_STAB ("N_SSYM");
232 UNKNOWN_STAB ("N_SO");
236 UNKNOWN_STAB ("N_SOL");
240 UNKNOWN_STAB ("N_SLINE");
245 UNKNOWN_STAB ("N_DSLINE");
251 UNKNOWN_STAB ("N_BSLINE");
255 /* This has the same value as N_BSLINE. */
257 UNKNOWN_STAB ("N_BROWS");
263 UNKNOWN_STAB ("N_BINCL");
269 UNKNOWN_STAB ("N_EINCL");
275 UNKNOWN_STAB ("N_EXCL");
280 UNKNOWN_STAB ("N_LBRAC");
284 UNKNOWN_STAB ("N_RBRAC");
295 UNKNOWN_STAB ("N_LENG");
299 UNKNOWN_STAB ("N_PC");
304 UNKNOWN_STAB ("N_M2C");
310 UNKNOWN_STAB ("N_SCOPE");
315 UNKNOWN_STAB ("N_CATCH");
319 UNKNOWN_STAB ("default");
324 /* Output debugging info to FILE to switch to sourcefile FILENAME.
325 INLINE_P is true if this is from an inlined function. */
328 xcoffout_source_file (file
, filename
, inline_p
)
334 && (xcoff_lastfile
== 0 || strcmp (filename
, xcoff_lastfile
)
335 || (inline_p
&& ! xcoff_inlining
)
336 || (! inline_p
&& xcoff_inlining
)))
338 if (xcoff_current_include_file
)
340 fprintf (file
, "\t.ei\t");
341 output_quoted_string (file
, xcoff_current_include_file
);
342 fprintf (file
, "\n");
343 xcoff_current_include_file
= NULL
;
345 xcoff_inlining
=inline_p
;
346 if (strcmp (main_input_filename
, filename
) || inline_p
)
348 fprintf (file
, "\t.bi\t");
349 output_quoted_string (file
, filename
);
350 fprintf (file
, "\n");
351 xcoff_current_include_file
= filename
;
354 xcoff_lastfile
= filename
;
358 /* Output a line number symbol entry into output stream FILE,
359 for source file FILENAME and line number NOTE. */
362 xcoffout_source_line (file
, filename
, note
)
367 xcoffout_source_file (file
, filename
, RTX_INTEGRATED_P (note
));
369 ASM_OUTPUT_SOURCE_LINE (file
, NOTE_LINE_NUMBER (note
));
372 /* Output the symbols defined in block number DO_BLOCK.
373 Set NEXT_BLOCK_NUMBER to 0 before calling.
375 This function works by walking the tree structure of blocks,
376 counting blocks until it finds the desired block. */
378 static int do_block
= 0;
380 static int next_block_number
;
383 xcoffout_block (block
, depth
, args
)
390 /* Ignore blocks never expanded or otherwise marked as real. */
391 if (TREE_USED (block
))
393 /* When we reach the specified block, output its symbols. */
394 if (next_block_number
== do_block
)
396 /* Output the syms of the block. */
397 if (debug_info_level
!= DINFO_LEVEL_TERSE
|| depth
== 0)
398 dbxout_syms (BLOCK_VARS (block
));
400 dbxout_reg_parms (args
);
402 /* We are now done with the block. Don't go to inner blocks. */
405 /* If we are past the specified block, stop the scan. */
406 else if (next_block_number
>= do_block
)
411 /* Output the subblocks. */
412 xcoffout_block (BLOCK_SUBBLOCKS (block
), depth
+ 1, NULL_TREE
);
414 block
= BLOCK_CHAIN (block
);
418 /* Describe the beginning of an internal block within a function.
419 Also output descriptions of variables defined in this block.
421 N is the number of the block, by order of beginning, counting from 1,
422 and not counting the outermost (function top-level) block.
423 The blocks match the BLOCKs in DECL_INITIAL (current_function_decl),
424 if the count starts at 0 for the outermost one. */
427 xcoffout_begin_block (file
, line
, n
)
432 tree decl
= current_function_decl
;
435 /* The IBM AIX compiler does not emit a .bb for the function level scope,
436 so we avoid it here also. */
438 ASM_OUTPUT_LBB (file
, line
, n
);
441 next_block_number
= 0;
442 xcoffout_block (DECL_INITIAL (decl
), 0, DECL_ARGUMENTS (decl
));
445 /* Describe the end line-number of an internal block within a function. */
448 xcoffout_end_block (file
, line
, n
)
454 ASM_OUTPUT_LBE (file
, line
, n
);
457 /* Called at beginning of function (before prologue).
458 Declare function as needed for debugging. */
461 xcoffout_declare_function (file
, decl
, name
)
472 for (i
= 0; name
[i
]; ++i
)
476 n
= (char *) alloca (i
+ 1);
477 strncpy (n
, name
, i
);
483 /* Any pending .bi or .ei must occur before the .function pseudo op.
484 Otherwise debuggers will think that the function is in the previous
485 file and/or at the wrong line number. */
486 xcoffout_source_file (file
, DECL_SOURCE_FILE (decl
), 0);
487 dbxout_symbol (decl
, 0);
489 /* .function NAME, TOP, MAPPING, TYPE, SIZE
490 16 and 044 are placeholders for backwards compatibility */
491 fprintf (file
, "\t.function .%s,.%s,16,044,FE..%s-.%s\n", n
, n
, n
, n
);
494 /* Called at beginning of function body (after prologue).
495 Record the function's starting line number, so we can output
496 relative line numbers for the other lines.
497 Record the file name that this function is contained in. */
500 xcoffout_begin_function (file
, last_linenum
)
504 ASM_OUTPUT_LFB (file
, last_linenum
);
505 dbxout_parms (DECL_ARGUMENTS (current_function_decl
));
507 /* Emit the symbols for the outermost BLOCK's variables. sdbout.c does this
508 in sdbout_begin_block, but there is no guarantee that there will be any
509 inner block 1, so we must do it here. This gives a result similar to
510 dbxout, so it does make some sense. */
512 next_block_number
= 0;
513 xcoffout_block (DECL_INITIAL (current_function_decl
), 0,
514 DECL_ARGUMENTS (current_function_decl
));
516 ASM_OUTPUT_SOURCE_LINE (file
, last_linenum
);
519 /* Called at end of function (before epilogue).
520 Describe end of outermost block. */
523 xcoffout_end_function (file
, last_linenum
)
527 ASM_OUTPUT_LFE (file
, last_linenum
);
530 /* Output xcoff info for the absolute end of a function.
531 Called after the epilogue is output. */
534 xcoffout_end_epilogue (file
)
537 /* We need to pass the correct function size to .function, otherwise,
538 the xas assembler can't figure out the correct size for the function
539 aux entry. So, we emit a label after the last instruction which can
540 be used by the .function pseudo op to calculate the function size. */
542 char *fname
= XSTR (XEXP (DECL_RTL (current_function_decl
), 0), 0);
545 fprintf (file
, "FE..");
546 ASM_OUTPUT_LABEL (file
, fname
);
548 #endif /* XCOFF_DEBUGGING_INFO */