2013-05-30 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / xcoffout.c
blob8a9093c10c2aa71309f70e0eebfcdc3ff5a23ae3
1 /* Output xcoff-format symbol table information from GNU compiler.
2 Copyright (C) 1992-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* Output xcoff-format symbol table data. The main functionality is contained
21 in dbxout.c. This file implements the sdbout-like parts of the xcoff
22 interface. Many functions are very similar to their counterparts in
23 sdbout.c. */
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tm.h"
29 #include "tree.h"
30 #include "rtl.h"
31 #include "flags.h"
32 #include "diagnostic-core.h"
33 #include "output.h"
34 #include "ggc.h"
35 #include "target.h"
36 #include "debug.h"
38 #ifdef XCOFF_DEBUGGING_INFO
40 /* This defines the C_* storage classes. */
41 #include "xcoff.h"
42 #include "xcoffout.h"
43 #include "dbxout.h"
44 #include "gstab.h"
46 /* Line number of beginning of current function, minus one.
47 Negative means not in a function or not using xcoff. */
49 static int xcoff_begin_function_line = -1;
50 static int xcoff_inlining = 0;
52 /* Name of the current include file. */
54 const char *xcoff_current_include_file;
56 /* Name of the current function file. This is the file the `.bf' is
57 emitted from. In case a line is emitted from a different file,
58 (by including that file of course), then the line number will be
59 absolute. */
61 static const char *xcoff_current_function_file;
63 /* Names of bss and data sections. These should be unique names for each
64 compilation unit. */
66 char *xcoff_bss_section_name;
67 char *xcoff_private_data_section_name;
68 char *xcoff_tls_data_section_name;
69 char *xcoff_tbss_section_name;
70 char *xcoff_read_only_section_name;
72 /* Last source file name mentioned in a NOTE insn. */
74 const char *xcoff_lastfile;
76 /* Macro definitions used below. */
78 #define ABS_OR_RELATIVE_LINENO(LINENO) \
79 ((xcoff_inlining) ? (LINENO) : (LINENO) - xcoff_begin_function_line)
81 /* Output source line numbers via ".line". */
82 #define ASM_OUTPUT_LINE(FILE,LINENUM) \
83 do \
84 { \
85 /* Make sure we're in a function and prevent output of .line 0, as \
86 line # 0 is meant for symbol addresses in xcoff. Additionally, \
87 line numbers are 'unsigned short' in 32-bit mode. */ \
88 if (xcoff_begin_function_line >= 0) \
89 { \
90 int lno = ABS_OR_RELATIVE_LINENO (LINENUM); \
91 if (lno > 0 && (TARGET_64BIT || lno <= (int)USHRT_MAX)) \
92 fprintf (FILE, "\t.line\t%d\n", lno); \
93 } \
94 } \
95 while (0)
97 #define ASM_OUTPUT_LFB(FILE,LINENUM) \
98 { \
99 if (xcoff_begin_function_line == -1) \
101 xcoff_begin_function_line = (LINENUM) - 1;\
102 fprintf (FILE, "\t.bf\t%d\n", (LINENUM)); \
104 xcoff_current_function_file \
105 = (xcoff_current_include_file \
106 ? xcoff_current_include_file : main_input_filename); \
109 #define ASM_OUTPUT_LFE(FILE,LINENUM) \
110 do \
112 fprintf (FILE, "\t.ef\t%d\n", (LINENUM)); \
113 xcoff_begin_function_line = -1; \
115 while (0)
117 #define ASM_OUTPUT_LBB(FILE,LINENUM,BLOCKNUM) \
118 fprintf (FILE, "\t.bb\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM))
120 #define ASM_OUTPUT_LBE(FILE,LINENUM,BLOCKNUM) \
121 fprintf (FILE, "\t.eb\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM))
123 static void xcoffout_block (tree, int, tree);
124 static void xcoffout_source_file (FILE *, const char *, int);
126 /* Support routines for XCOFF debugging info. */
128 struct xcoff_type_number
130 const char *name;
131 int number;
133 static const struct xcoff_type_number xcoff_type_numbers[] = {
134 { "int", -1 },
135 { "char", -2 },
136 { "short int", -3 },
137 { "long int", -4 }, /* fiddled to -31 if 64 bits */
138 { "unsigned char", -5 },
139 { "signed char", -6 },
140 { "short unsigned int", -7 },
141 { "unsigned int", -8 },
142 /* No such type "unsigned". */
143 { "long unsigned int", -10 }, /* fiddled to -32 if 64 bits */
144 { "void", -11 },
145 { "float", -12 },
146 { "double", -13 },
147 { "long double", -14 },
148 /* Pascal and Fortran types run from -15 to -29. */
149 { "wchar", -30 }, /* XXX Should be "wchar_t" ? */
150 { "long long int", -31 },
151 { "long long unsigned int", -32 },
152 /* Additional Fortran types run from -33 to -37. */
154 /* ??? Should also handle built-in C++ and Obj-C types. There perhaps
155 aren't any that C doesn't already have. */
158 /* Returns an XCOFF fundamental type number for DECL (assumed to be a
159 TYPE_DECL), or 0 if dbxout.c should assign a type number normally. */
161 xcoff_assign_fundamental_type_number (tree decl)
163 const char *name;
164 size_t i;
166 /* Do not waste time searching the list for non-intrinsic types. */
167 if (DECL_NAME (decl) == 0 || ! DECL_IS_BUILTIN (decl))
168 return 0;
170 name = IDENTIFIER_POINTER (DECL_NAME (decl));
172 /* Linear search, blech, but the list is too small to bother
173 doing anything else. */
174 for (i = 0; i < ARRAY_SIZE (xcoff_type_numbers); i++)
175 if (!strcmp (xcoff_type_numbers[i].name, name))
176 goto found;
177 return 0;
179 found:
180 /* -4 and -10 should be replaced with -31 and -32, respectively,
181 when used for a 64-bit type. */
182 if (int_size_in_bytes (TREE_TYPE (decl)) == 8)
184 if (xcoff_type_numbers[i].number == -4)
185 return -31;
186 if (xcoff_type_numbers[i].number == -10)
187 return -32;
189 return xcoff_type_numbers[i].number;
192 /* Print an error message for unrecognized stab codes. */
194 #define UNKNOWN_STAB(STR) \
195 internal_error ("no sclass for %s stab (0x%x)", STR, stab)
197 /* Conversion routine from BSD stabs to AIX storage classes. */
200 stab_to_sclass (int stab)
202 switch (stab)
204 case N_GSYM:
205 return C_GSYM;
207 case N_FNAME:
208 UNKNOWN_STAB ("N_FNAME");
210 case N_FUN:
211 return C_FUN;
213 case N_STSYM:
214 case N_LCSYM:
215 return C_STSYM;
217 case N_MAIN:
218 UNKNOWN_STAB ("N_MAIN");
220 case N_RSYM:
221 return C_RSYM;
223 case N_SSYM:
224 UNKNOWN_STAB ("N_SSYM");
226 case N_RPSYM:
227 return C_RPSYM;
229 case N_PSYM:
230 return C_PSYM;
231 case N_LSYM:
232 return C_LSYM;
233 case N_DECL:
234 return C_DECL;
235 case N_ENTRY:
236 return C_ENTRY;
238 case N_SO:
239 UNKNOWN_STAB ("N_SO");
241 case N_SOL:
242 UNKNOWN_STAB ("N_SOL");
244 case N_SLINE:
245 UNKNOWN_STAB ("N_SLINE");
247 case N_DSLINE:
248 UNKNOWN_STAB ("N_DSLINE");
250 case N_BSLINE:
251 UNKNOWN_STAB ("N_BSLINE");
253 case N_BINCL:
254 UNKNOWN_STAB ("N_BINCL");
256 case N_EINCL:
257 UNKNOWN_STAB ("N_EINCL");
259 case N_EXCL:
260 UNKNOWN_STAB ("N_EXCL");
262 case N_LBRAC:
263 UNKNOWN_STAB ("N_LBRAC");
265 case N_RBRAC:
266 UNKNOWN_STAB ("N_RBRAC");
268 case N_BCOMM:
269 return C_BCOMM;
270 case N_ECOMM:
271 return C_ECOMM;
272 case N_ECOML:
273 return C_ECOML;
275 case N_LENG:
276 UNKNOWN_STAB ("N_LENG");
278 case N_PC:
279 UNKNOWN_STAB ("N_PC");
281 case N_M2C:
282 UNKNOWN_STAB ("N_M2C");
284 case N_SCOPE:
285 UNKNOWN_STAB ("N_SCOPE");
287 case N_CATCH:
288 UNKNOWN_STAB ("N_CATCH");
290 case N_OPT:
291 UNKNOWN_STAB ("N_OPT");
293 default:
294 UNKNOWN_STAB ("?");
298 /* Output debugging info to FILE to switch to sourcefile FILENAME.
299 INLINE_P is true if this is from an inlined function. */
301 static void
302 xcoffout_source_file (FILE *file, const char *filename, int inline_p)
304 if (filename
305 && (xcoff_lastfile == 0 || strcmp (filename, xcoff_lastfile)
306 || (inline_p && ! xcoff_inlining)
307 || (! inline_p && xcoff_inlining)))
309 if (xcoff_current_include_file)
311 fprintf (file, "\t.ei\t");
312 output_quoted_string (file,
313 remap_debug_filename (xcoff_current_include_file));
314 fprintf (file, "\n");
315 xcoff_current_include_file = NULL;
317 xcoff_inlining = inline_p;
318 if (strcmp (main_input_filename, filename) || inline_p)
320 fprintf (file, "\t.bi\t");
321 output_quoted_string (file, remap_debug_filename (filename));
322 fprintf (file, "\n");
323 xcoff_current_include_file = filename;
325 xcoff_lastfile = filename;
329 /* Output a line number symbol entry for location (FILENAME, LINE). */
331 void
332 xcoffout_source_line (unsigned int line, const char *filename,
333 int discriminator ATTRIBUTE_UNUSED,
334 bool is_stmt ATTRIBUTE_UNUSED)
336 bool inline_p = (strcmp (xcoff_current_function_file, filename) != 0
337 || (int) line < xcoff_begin_function_line);
339 xcoffout_source_file (asm_out_file, filename, inline_p);
341 ASM_OUTPUT_LINE (asm_out_file, line);
344 /* Output the symbols defined in block number DO_BLOCK.
346 This function works by walking the tree structure of blocks,
347 counting blocks until it finds the desired block. */
349 static int do_block = 0;
351 static void
352 xcoffout_block (tree block, int depth, tree args)
354 while (block)
356 /* Ignore blocks never expanded or otherwise marked as real. */
357 if (TREE_USED (block))
359 /* When we reach the specified block, output its symbols. */
360 if (BLOCK_NUMBER (block) == do_block)
362 /* Output the syms of the block. */
363 if (debug_info_level != DINFO_LEVEL_TERSE || depth == 0)
364 dbxout_syms (BLOCK_VARS (block));
365 if (args)
366 dbxout_reg_parms (args);
368 /* We are now done with the block. Don't go to inner blocks. */
369 return;
371 /* If we are past the specified block, stop the scan. */
372 else if (BLOCK_NUMBER (block) >= do_block)
373 return;
375 /* Output the subblocks. */
376 xcoffout_block (BLOCK_SUBBLOCKS (block), depth + 1, NULL_TREE);
378 block = BLOCK_CHAIN (block);
382 /* Describe the beginning of an internal block within a function.
383 Also output descriptions of variables defined in this block.
385 N is the number of the block, by order of beginning, counting from 1,
386 and not counting the outermost (function top-level) block.
387 The blocks match the BLOCKs in DECL_INITIAL (current_function_decl),
388 if the count starts at 0 for the outermost one. */
390 void
391 xcoffout_begin_block (unsigned int line, unsigned int n)
393 tree decl = current_function_decl;
395 /* The IBM AIX compiler does not emit a .bb for the function level scope,
396 so we avoid it here also. */
397 if (n != 1)
398 ASM_OUTPUT_LBB (asm_out_file, line, n);
400 do_block = n;
401 xcoffout_block (DECL_INITIAL (decl), 0, DECL_ARGUMENTS (decl));
404 /* Describe the end line-number of an internal block within a function. */
406 void
407 xcoffout_end_block (unsigned int line, unsigned int n)
409 if (n != 1)
410 ASM_OUTPUT_LBE (asm_out_file, line, n);
413 /* Called at beginning of function (before prologue).
414 Declare function as needed for debugging. */
416 void
417 xcoffout_declare_function (FILE *file, tree decl, const char *name)
419 size_t len;
421 if (*name == '*')
422 name++;
423 len = strlen (name);
424 if (name[len - 1] == ']')
426 char *n = XALLOCAVEC (char, len - 3);
427 memcpy (n, name, len - 4);
428 n[len - 4] = '\0';
429 name = n;
432 /* Any pending .bi or .ei must occur before the .function pseudo op.
433 Otherwise debuggers will think that the function is in the previous
434 file and/or at the wrong line number. */
435 xcoffout_source_file (file, DECL_SOURCE_FILE (decl), 0);
436 dbxout_symbol (decl, 0);
438 /* .function NAME, TOP, MAPPING, TYPE, SIZE
439 16 and 044 are placeholders for backwards compatibility */
440 fprintf (file, "\t.function .%s,.%s,16,044,FE..%s-.%s\n",
441 name, name, name, name);
444 /* Called at beginning of function body (at start of prologue).
445 Record the function's starting line number, so we can output
446 relative line numbers for the other lines.
447 Record the file name that this function is contained in. */
449 void
450 xcoffout_begin_prologue (unsigned int line,
451 const char *file ATTRIBUTE_UNUSED)
453 ASM_OUTPUT_LFB (asm_out_file, line);
454 dbxout_parms (DECL_ARGUMENTS (current_function_decl));
456 /* Emit the symbols for the outermost BLOCK's variables. sdbout.c does this
457 in sdbout_begin_block, but there is no guarantee that there will be any
458 inner block 1, so we must do it here. This gives a result similar to
459 dbxout, so it does make some sense. */
460 do_block = BLOCK_NUMBER (DECL_INITIAL (current_function_decl));
461 xcoffout_block (DECL_INITIAL (current_function_decl), 0,
462 DECL_ARGUMENTS (current_function_decl));
464 ASM_OUTPUT_LINE (asm_out_file, line);
467 /* Called at end of function (before epilogue).
468 Describe end of outermost block. */
470 void
471 xcoffout_end_function (unsigned int last_linenum)
473 ASM_OUTPUT_LFE (asm_out_file, last_linenum);
476 /* Output xcoff info for the absolute end of a function.
477 Called after the epilogue is output. */
479 void
480 xcoffout_end_epilogue (unsigned int line ATTRIBUTE_UNUSED,
481 const char *file ATTRIBUTE_UNUSED)
483 /* We need to pass the correct function size to .function, otherwise,
484 the xas assembler can't figure out the correct size for the function
485 aux entry. So, we emit a label after the last instruction which can
486 be used by the .function pseudo op to calculate the function size. */
488 const char *fname = XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0);
489 if (*fname == '*')
490 ++fname;
491 fprintf (asm_out_file, "FE..");
492 ASM_OUTPUT_LABEL (asm_out_file, fname);
494 #endif /* XCOFF_DEBUGGING_INFO */