1 /* Output xcoff-format symbol table information from GNU compiler.
2 Copyright (C) 1992 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, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* Output xcoff-format symbol table data. The main functionality is contained
22 in dbxout.c. This file implements the sdbout-like parts of the xcoff
23 interface. Many functions are very similar to their counterparts in
26 /* Include this first, because it may define MIN and MAX. */
34 #ifdef XCOFF_DEBUGGING_INFO
36 /* This defines the C_* storage classes. */
37 #include <dbxstclass.h>
41 #if defined (USG) || defined (NO_STAB_H)
46 /* This is a GNU extension we need to reference in this file. */
52 /* These are GNU extensions we need to reference in this file. */
60 /* Line number of beginning of current function, minus one.
61 Negative means not in a function or not using xcoff. */
63 int xcoff_begin_function_line
= -1;
65 /* Name of the current include file. */
67 char *xcoff_current_include_file
;
69 /* Name of the current function file. This is the file the `.bf' is
70 emitted from. In case a line is emitted from a different file,
71 (by including that file of course), then the line number will be
74 char *xcoff_current_function_file
;
76 /* Names of bss and data sections. These should be unique names for each
79 char *xcoff_bss_section_name
;
80 char *xcoff_private_data_section_name
;
81 char *xcoff_read_only_section_name
;
83 /* Macro definitions used below. */
84 /* Ensure we don't output a negative line number. */
85 #define MAKE_LINE_SAFE(LINE) \
86 if (LINE <= xcoff_begin_function_line) \
87 LINE = xcoff_begin_function_line + 1 \
89 #define ASM_OUTPUT_LFB(FILE,LINENUM) \
91 if (xcoff_begin_function_line == -1) \
93 xcoff_begin_function_line = (LINENUM) - 1;\
94 fprintf (FILE, "\t.bf\t%d\n", (LINENUM)); \
96 xcoff_current_function_file \
97 = (xcoff_current_include_file \
98 ? xcoff_current_include_file : main_input_filename); \
101 #define ASM_OUTPUT_LFE(FILE,LINENUM) \
103 int linenum = LINENUM; \
104 MAKE_LINE_SAFE (linenum); \
105 fprintf (FILE, "\t.ef\t%d\n", ABS_OR_RELATIVE_LINENO (linenum)); \
106 xcoff_begin_function_line = -1; \
109 #define ASM_OUTPUT_LBB(FILE,LINENUM,BLOCKNUM) \
111 int linenum = LINENUM; \
112 MAKE_LINE_SAFE (linenum); \
113 fprintf (FILE, "\t.bb\t%d\n", ABS_OR_RELATIVE_LINENO (linenum)); \
116 #define ASM_OUTPUT_LBE(FILE,LINENUM,BLOCKNUM) \
118 int linenum = LINENUM; \
119 MAKE_LINE_SAFE (linenum); \
120 fprintf (FILE, "\t.eb\t%d\n", ABS_OR_RELATIVE_LINENO (linenum)); \
123 /* Support routines for XCOFF debugging info. */
125 /* Assign NUMBER as the stabx type number for the type described by NAME.
126 Search all decls in the list SYMS to find the type NAME. */
129 assign_type_number (syms
, name
, number
)
136 for (decl
= syms
; decl
; decl
= TREE_CHAIN (decl
))
137 if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (decl
)), name
))
139 TREE_ASM_WRITTEN (decl
) = 1;
140 TYPE_SYMTAB_ADDRESS (TREE_TYPE (decl
)) = number
;
144 /* Setup gcc primitive types to use the XCOFF built-in type numbers where
148 xcoff_output_standard_types (syms
)
151 /* Handle built-in C types here. */
153 assign_type_number (syms
, "int", -1);
154 assign_type_number (syms
, "char", -2);
155 assign_type_number (syms
, "short int", -3);
156 assign_type_number (syms
, "long int", -4);
157 assign_type_number (syms
, "unsigned char", -5);
158 assign_type_number (syms
, "signed char", -6);
159 assign_type_number (syms
, "short unsigned int", -7);
160 assign_type_number (syms
, "unsigned int", -8);
161 /* No such type "unsigned". */
162 assign_type_number (syms
, "long unsigned int", -10);
163 assign_type_number (syms
, "void", -11);
164 assign_type_number (syms
, "float", -12);
165 assign_type_number (syms
, "double", -13);
166 assign_type_number (syms
, "long double", -14);
167 /* Pascal and Fortran types run from -15 to -29. */
168 /* No such type "wchar". */
170 /* "long long int", and "long long unsigned int", are not handled here,
171 because there are no predefined types that match them. */
173 /* ??? Should also handle built-in C++ and Obj-C types. There perhaps
174 aren't any that C doesn't already have. */
177 /* Print an error message for unrecognized stab codes. */
179 #define UNKNOWN_STAB(STR) \
181 fprintf(stderr, "Error, unknown stab %s: : 0x%x\n", STR, stab); \
185 /* Conversion routine from BSD stabs to AIX storage classes. */
188 stab_to_sclass (stab
)
197 UNKNOWN_STAB ("N_FNAME");
208 UNKNOWN_STAB ("N_MAIN");
215 UNKNOWN_STAB ("N_SSYM");
231 UNKNOWN_STAB ("N_SO");
235 UNKNOWN_STAB ("N_SOL");
239 UNKNOWN_STAB ("N_SLINE");
243 UNKNOWN_STAB ("N_DSLINE");
247 UNKNOWN_STAB ("N_BSLINE");
250 /* This has the same value as N_BSLINE. */
252 UNKNOWN_STAB ("N_BROWS");
257 UNKNOWN_STAB ("N_BINCL");
261 UNKNOWN_STAB ("N_EINCL");
265 UNKNOWN_STAB ("N_EXCL");
269 UNKNOWN_STAB ("N_LBRAC");
273 UNKNOWN_STAB ("N_RBRAC");
284 UNKNOWN_STAB ("N_LENG");
288 UNKNOWN_STAB ("N_PC");
292 UNKNOWN_STAB ("N_M2C");
296 UNKNOWN_STAB ("N_SCOPE");
300 UNKNOWN_STAB ("N_CATCH");
304 UNKNOWN_STAB ("default");
309 /* In XCOFF, we have to have this .bf before the function prologue.
310 Rely on the value of `dbx_begin_function_line' not to duplicate .bf. */
313 xcoffout_output_first_source_line (file
, last_linenum
)
317 ASM_OUTPUT_LFB (file
, last_linenum
);
318 dbxout_parms (DECL_ARGUMENTS (current_function_decl
));
319 ASM_OUTPUT_SOURCE_LINE (file
, last_linenum
);
322 /* Output the symbols defined in block number DO_BLOCK.
323 Set NEXT_BLOCK_NUMBER to 0 before calling.
325 This function works by walking the tree structure of blocks,
326 counting blocks until it finds the desired block. */
328 static int do_block
= 0;
330 static int next_block_number
;
333 xcoffout_block (block
, depth
, args
)
340 /* Ignore blocks never expanded or otherwise marked as real. */
341 if (TREE_USED (block
))
343 /* When we reach the specified block, output its symbols. */
344 if (next_block_number
== do_block
)
346 /* Output the syms of the block. */
347 if (debug_info_level
!= DINFO_LEVEL_TERSE
|| depth
== 0)
348 dbxout_syms (BLOCK_VARS (block
));
350 dbxout_reg_parms (args
);
352 /* We are now done with the block. Don't go to inner blocks. */
355 /* If we are past the specified block, stop the scan. */
356 else if (next_block_number
>= do_block
)
361 /* Output the subblocks. */
362 xcoffout_block (BLOCK_SUBBLOCKS (block
), depth
+ 1, 0);
364 block
= BLOCK_CHAIN (block
);
368 /* Describe the beginning of an internal block within a function.
369 Also output descriptions of variables defined in this block.
371 N is the number of the block, by order of beginning, counting from 1,
372 and not counting the outermost (function top-level) block.
373 The blocks match the BLOCKs in DECL_INITIAL (current_function_decl),
374 if the count starts at 0 for the outermost one. */
377 xcoffout_begin_block (file
, line
, n
)
382 tree decl
= current_function_decl
;
384 ASM_OUTPUT_LBB (file
, line
, n
);
387 next_block_number
= 0;
388 xcoffout_block (DECL_INITIAL (decl
), 0, DECL_ARGUMENTS (decl
));
391 /* Describe the end line-number of an internal block within a function. */
394 xcoffout_end_block (file
, line
, n
)
399 ASM_OUTPUT_LBE (file
, line
, n
);
402 /* Called at beginning of function body (after prologue).
403 Record the function's starting line number, so we can output
404 relative line numbers for the other lines.
405 Record the file name that this function is contained in. */
408 xcoffout_begin_function (file
, last_linenum
)
412 ASM_OUTPUT_LFB (file
, last_linenum
);
415 /* Called at end of function (before epilogue).
416 Describe end of outermost block. */
419 xcoffout_end_function (file
, last_linenum
)
423 ASM_OUTPUT_LFE (file
, last_linenum
);
426 /* Output xcoff info for the absolute end of a function.
427 Called after the epilogue is output. */
430 xcoffout_end_epilogue (file
)
433 /* We need to pass the correct function size to .function, otherwise,
434 the xas assembler can't figure out the correct size for the function
435 aux entry. So, we emit a label after the last instruction which can
436 be used by the .function pseudo op to calculate the function size. */
438 char *fname
= XSTR (XEXP (DECL_RTL (current_function_decl
), 0), 0);
441 fprintf (file
, "L..end_");
442 ASM_OUTPUT_LABEL (file
, fname
);
444 #endif /* XCOFF_DEBUGGING_INFO */