* config/sh/sh.h: Delete dead GO_IF_LEGITIMATE_INDEX macro.
[official-gcc.git] / gcc / vmsdbgout.c
blob968965351a2e157f9a34f60fe609cfdf207f160d
1 /* Output VMS debug format symbol table information from GCC.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
5 Contributed by Douglas B. Rupp (rupp@gnat.com).
6 Updated by Bernard W. Giroud (bgiroud@users.sourceforge.net).
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
29 #ifdef VMS_DEBUGGING_INFO
30 #include "tree.h"
31 #include "version.h"
32 #include "flags.h"
33 #include "rtl.h"
34 #include "output.h"
35 #include "vmsdbg.h"
36 #include "debug.h"
37 #include "langhooks.h"
38 #include "function.h"
39 #include "target.h"
41 /* Difference in seconds between the VMS Epoch and the Unix Epoch */
42 static const long long vms_epoch_offset = 3506716800ll;
44 int vms_file_stats_name (const char *, long long *, long *, char *, int *);
46 /* NOTE: In the comments in this file, many references are made to "Debug
47 Symbol Table". This term is abbreviated as `DST' throughout the remainder
48 of this file. */
50 typedef struct dst_line_info_struct *dst_line_info_ref;
52 /* Each entry in the line_info_table maintains the file and
53 line number associated with the label generated for that
54 entry. The label gives the PC value associated with
55 the line number entry. */
56 typedef struct dst_line_info_struct
58 unsigned long dst_file_num;
59 unsigned long dst_line_num;
61 dst_line_info_entry;
63 typedef struct dst_file_info_struct *dst_file_info_ref;
65 typedef struct dst_file_info_struct
67 char *file_name;
68 unsigned int max_line;
69 unsigned int listing_line_start;
70 long long cdt;
71 long ebk;
72 short ffb;
73 char rfo;
75 dst_file_info_entry;
77 /* Maximum size (in bytes) of an artificially generated label. */
78 #define MAX_ARTIFICIAL_LABEL_BYTES 30
80 /* Make sure we know the sizes of the various types debug can describe. These
81 are only defaults. If the sizes are different for your target, you should
82 override these values by defining the appropriate symbols in your tm.h
83 file. */
84 #ifndef PTR_SIZE
85 #define PTR_SIZE 4 /* Must be 32 bits for VMS debug info */
86 #endif
88 /* Pointer to a structure of filenames referenced by this compilation unit. */
89 static dst_file_info_ref file_info_table;
91 /* Total number of entries in the table (i.e. array) pointed to by
92 `file_info_table'. This is the *total* and includes both used and unused
93 slots. */
94 static unsigned int file_info_table_allocated;
96 /* Number of entries in the file_info_table which are actually in use. */
97 static unsigned int file_info_table_in_use;
99 /* Size (in elements) of increments by which we may expand the filename
100 table. */
101 #define FILE_TABLE_INCREMENT 64
103 typedef char *char_p;
104 DEF_VEC_P(char_p);
105 DEF_VEC_ALLOC_P(char_p,heap);
107 static VEC(char_p,heap) *funcnam_table;
108 static VEC(unsigned,heap) *funcnum_table;
109 #define FUNC_TABLE_INITIAL 256
111 /* Local pointer to the name of the main input file. Initialized in
112 vmsdbgout_init. */
113 static const char *primary_filename;
115 static char *module_producer;
116 static unsigned int module_language;
118 /* A pointer to the base of a table that contains line information
119 for each source code line in .text in the compilation unit. */
120 static dst_line_info_ref line_info_table;
122 /* Number of elements currently allocated for line_info_table. */
123 static unsigned int line_info_table_allocated;
125 /* Number of elements in line_info_table currently in use. */
126 static unsigned int line_info_table_in_use;
128 /* Size (in elements) of increments by which we may expand line_info_table. */
129 #define LINE_INFO_TABLE_INCREMENT 1024
131 /* Forward declarations for functions defined in this file. */
132 static char *full_name (const char *);
133 static unsigned int lookup_filename (const char *);
134 static int write_debug_header (DST_HEADER *, const char *, int);
135 static int write_debug_addr (const char *, const char *, int);
136 static int write_debug_data1 (unsigned int, const char *, int);
137 static int write_debug_data2 (unsigned int, const char *, int);
138 static int write_debug_data4 (unsigned long, const char *, int);
139 static int write_debug_data8 (unsigned long long, const char *, int);
140 static int write_debug_delta4 (const char *, const char *, const char *, int);
141 static int write_debug_string (const char *, const char *, int);
142 static int write_modbeg (int);
143 static int write_modend (int);
144 static int write_rtnbeg (int, int);
145 static int write_rtnend (int, int);
146 static int write_pclines (int);
147 static int write_srccorr (int, dst_file_info_entry, int);
148 static int write_srccorrs (int);
150 static void vmsdbgout_init (const char *);
151 static void vmsdbgout_finish (const char *);
152 static void vmsdbgout_assembly_start (void);
153 static void vmsdbgout_define (unsigned int, const char *);
154 static void vmsdbgout_undef (unsigned int, const char *);
155 static void vmsdbgout_start_source_file (unsigned int, const char *);
156 static void vmsdbgout_end_source_file (unsigned int);
157 static void vmsdbgout_begin_block (unsigned int, unsigned int);
158 static void vmsdbgout_end_block (unsigned int, unsigned int);
159 static bool vmsdbgout_ignore_block (const_tree);
160 static void vmsdbgout_source_line (unsigned int, const char *, int, bool);
161 static void vmsdbgout_write_source_line (unsigned, const char *, int , bool);
162 static void vmsdbgout_begin_prologue (unsigned int, const char *);
163 static void vmsdbgout_end_prologue (unsigned int, const char *);
164 static void vmsdbgout_end_function (unsigned int);
165 static void vmsdbgout_begin_epilogue (unsigned int, const char *);
166 static void vmsdbgout_end_epilogue (unsigned int, const char *);
167 static void vmsdbgout_begin_function (tree);
168 static void vmsdbgout_decl (tree);
169 static void vmsdbgout_global_decl (tree);
170 static void vmsdbgout_type_decl (tree, int);
171 static void vmsdbgout_abstract_function (tree);
173 /* The debug hooks structure. */
175 const struct gcc_debug_hooks vmsdbg_debug_hooks
176 = {vmsdbgout_init,
177 vmsdbgout_finish,
178 vmsdbgout_assembly_start,
179 vmsdbgout_define,
180 vmsdbgout_undef,
181 vmsdbgout_start_source_file,
182 vmsdbgout_end_source_file,
183 vmsdbgout_begin_block,
184 vmsdbgout_end_block,
185 vmsdbgout_ignore_block,
186 vmsdbgout_source_line,
187 vmsdbgout_begin_prologue,
188 vmsdbgout_end_prologue,
189 vmsdbgout_begin_epilogue,
190 vmsdbgout_end_epilogue,
191 vmsdbgout_begin_function,
192 vmsdbgout_end_function,
193 vmsdbgout_decl,
194 vmsdbgout_global_decl,
195 vmsdbgout_type_decl, /* type_decl */
196 debug_nothing_tree_tree_tree_bool, /* imported_module_or_decl */
197 debug_nothing_tree, /* deferred_inline_function */
198 vmsdbgout_abstract_function,
199 debug_nothing_rtx, /* label */
200 debug_nothing_int, /* handle_pch */
201 debug_nothing_rtx, /* var_location */
202 debug_nothing_void, /* switch_text_section */
203 debug_nothing_tree_tree, /* set_name */
204 0, /* start_end_main_source_file */
205 TYPE_SYMTAB_IS_ADDRESS /* tree_type_symtab_field */
208 /* Definitions of defaults for assembler-dependent names of various
209 pseudo-ops and section names.
210 Theses may be overridden in the tm.h file (if necessary) for a particular
211 assembler. */
212 #ifdef UNALIGNED_SHORT_ASM_OP
213 #undef UNALIGNED_SHORT_ASM_OP
214 #endif
215 #define UNALIGNED_SHORT_ASM_OP ".word"
217 #ifdef UNALIGNED_INT_ASM_OP
218 #undef UNALIGNED_INT_ASM_OP
219 #endif
220 #define UNALIGNED_INT_ASM_OP ".long"
222 #ifdef UNALIGNED_LONG_ASM_OP
223 #undef UNALIGNED_LONG_ASM_OP
224 #endif
225 #define UNALIGNED_LONG_ASM_OP ".long"
227 #ifdef UNALIGNED_DOUBLE_INT_ASM_OP
228 #undef UNALIGNED_DOUBLE_INT_ASM_OP
229 #endif
230 #define UNALIGNED_DOUBLE_INT_ASM_OP ".quad"
232 #ifdef ASM_BYTE_OP
233 #undef ASM_BYTE_OP
234 #endif
235 #define ASM_BYTE_OP ".byte"
237 #define NUMBYTES(I) ((I) < 256 ? 1 : (I) < 65536 ? 2 : 4)
239 #define NUMBYTES0(I) ((I) < 128 ? 0 : (I) < 65536 ? 2 : 4)
241 #ifndef UNALIGNED_PTR_ASM_OP
242 #define UNALIGNED_PTR_ASM_OP \
243 (PTR_SIZE == 8 ? UNALIGNED_DOUBLE_INT_ASM_OP : UNALIGNED_INT_ASM_OP)
244 #endif
246 #ifndef UNALIGNED_OFFSET_ASM_OP
247 #define UNALIGNED_OFFSET_ASM_OP(OFFSET) \
248 (NUMBYTES(OFFSET) == 4 \
249 ? UNALIGNED_LONG_ASM_OP \
250 : (NUMBYTES(OFFSET) == 2 ? UNALIGNED_SHORT_ASM_OP : ASM_BYTE_OP))
251 #endif
253 /* Definitions of defaults for formats and names of various special
254 (artificial) labels which may be generated within this file (when the -g
255 options is used and VMS_DEBUGGING_INFO is in effect. If necessary, these
256 may be overridden from within the tm.h file, but typically, overriding these
257 defaults is unnecessary. */
259 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
261 #ifndef TEXT_END_LABEL
262 #define TEXT_END_LABEL "Lvetext"
263 #endif
264 #ifndef FUNC_BEGIN_LABEL
265 #define FUNC_BEGIN_LABEL "LVFB"
266 #endif
267 #ifndef FUNC_PROLOG_LABEL
268 #define FUNC_PROLOG_LABEL "LVFP"
269 #endif
270 #ifndef FUNC_EPILOG_LABEL
271 #define FUNC_EPILOG_LABEL "LVEB"
272 #endif
273 #ifndef FUNC_END_LABEL
274 #define FUNC_END_LABEL "LVFE"
275 #endif
276 #ifndef BLOCK_BEGIN_LABEL
277 #define BLOCK_BEGIN_LABEL "LVBB"
278 #endif
279 #ifndef BLOCK_END_LABEL
280 #define BLOCK_END_LABEL "LVBE"
281 #endif
282 #ifndef LINE_CODE_LABEL
283 #define LINE_CODE_LABEL "LVM"
284 #endif
286 #ifndef ASM_OUTPUT_DEBUG_DELTA2
287 #define ASM_OUTPUT_DEBUG_DELTA2(FILE,LABEL1,LABEL2) \
288 do \
290 fprintf ((FILE), "\t%s\t", UNALIGNED_SHORT_ASM_OP); \
291 assemble_name (FILE, LABEL1); \
292 fprintf (FILE, "-"); \
293 assemble_name (FILE, LABEL2); \
295 while (0)
296 #endif
298 #ifndef ASM_OUTPUT_DEBUG_DELTA4
299 #define ASM_OUTPUT_DEBUG_DELTA4(FILE,LABEL1,LABEL2) \
300 do \
302 fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \
303 assemble_name (FILE, LABEL1); \
304 fprintf (FILE, "-"); \
305 assemble_name (FILE, LABEL2); \
307 while (0)
308 #endif
310 #ifndef ASM_OUTPUT_DEBUG_ADDR_DELTA
311 #define ASM_OUTPUT_DEBUG_ADDR_DELTA(FILE,LABEL1,LABEL2) \
312 do \
314 fprintf ((FILE), "\t%s\t", UNALIGNED_PTR_ASM_OP); \
315 assemble_name (FILE, LABEL1); \
316 fprintf (FILE, "-"); \
317 assemble_name (FILE, LABEL2); \
319 while (0)
320 #endif
322 #ifndef ASM_OUTPUT_DEBUG_ADDR
323 #define ASM_OUTPUT_DEBUG_ADDR(FILE,LABEL) \
324 do \
326 fprintf ((FILE), "\t%s\t", UNALIGNED_PTR_ASM_OP); \
327 assemble_name (FILE, LABEL); \
329 while (0)
330 #endif
332 #ifndef ASM_OUTPUT_DEBUG_ADDR_CONST
333 #define ASM_OUTPUT_DEBUG_ADDR_CONST(FILE,ADDR) \
334 fprintf ((FILE), "\t%s\t%s", UNALIGNED_PTR_ASM_OP, (ADDR))
335 #endif
337 #ifndef ASM_OUTPUT_DEBUG_DATA1
338 #define ASM_OUTPUT_DEBUG_DATA1(FILE,VALUE) \
339 fprintf ((FILE), "\t%s\t%#x", ASM_BYTE_OP, (unsigned char) VALUE)
340 #endif
342 #ifndef ASM_OUTPUT_DEBUG_DATA2
343 #define ASM_OUTPUT_DEBUG_DATA2(FILE,VALUE) \
344 fprintf ((FILE), "\t%s\t%#x", UNALIGNED_SHORT_ASM_OP, \
345 (unsigned short) VALUE)
346 #endif
348 #ifndef ASM_OUTPUT_DEBUG_DATA4
349 #define ASM_OUTPUT_DEBUG_DATA4(FILE,VALUE) \
350 fprintf ((FILE), "\t%s\t%#lx", UNALIGNED_INT_ASM_OP, (unsigned long) VALUE)
351 #endif
353 #ifndef ASM_OUTPUT_DEBUG_DATA
354 #define ASM_OUTPUT_DEBUG_DATA(FILE,VALUE) \
355 fprintf ((FILE), "\t%s\t%#lx", UNALIGNED_OFFSET_ASM_OP(VALUE), VALUE)
356 #endif
358 #ifndef ASM_OUTPUT_DEBUG_ADDR_DATA
359 #define ASM_OUTPUT_DEBUG_ADDR_DATA(FILE,VALUE) \
360 fprintf ((FILE), "\t%s\t%#lx", UNALIGNED_PTR_ASM_OP, \
361 (unsigned long) VALUE)
362 #endif
364 #ifndef ASM_OUTPUT_DEBUG_DATA8
365 #define ASM_OUTPUT_DEBUG_DATA8(FILE,VALUE) \
366 fprintf ((FILE), "\t%s\t%#llx", UNALIGNED_DOUBLE_INT_ASM_OP, \
367 (unsigned long long) VALUE)
368 #endif
370 /* This is similar to the default ASM_OUTPUT_ASCII, except that no trailing
371 newline is produced. When flag_verbose_asm is asserted, we add commentary
372 at the end of the line, so we must avoid output of a newline here. */
373 #ifndef ASM_OUTPUT_DEBUG_STRING
374 #define ASM_OUTPUT_DEBUG_STRING(FILE,P) \
375 do \
377 register int slen = strlen(P); \
378 register const char *p = (P); \
379 register int i; \
380 fprintf (FILE, "\t.ascii \""); \
381 for (i = 0; i < slen; i++) \
383 register int c = p[i]; \
384 if (c == '\"' || c == '\\') \
385 putc ('\\', FILE); \
386 if (c >= ' ' && c < 0177) \
387 putc (c, FILE); \
388 else \
389 fprintf (FILE, "\\%o", c); \
391 fprintf (FILE, "\""); \
393 while (0)
394 #endif
396 /* Convert a reference to the assembler name of a C-level name. This
397 macro has the same effect as ASM_OUTPUT_LABELREF, but copies to
398 a string rather than writing to a file. */
399 #ifndef ASM_NAME_TO_STRING
400 #define ASM_NAME_TO_STRING(STR, NAME) \
401 do \
403 if ((NAME)[0] == '*') \
404 strcpy (STR, NAME+1); \
405 else \
406 strcpy (STR, NAME); \
408 while (0)
409 #endif
412 /* Output the debug header HEADER. Also output COMMENT if flag_verbose_asm is
413 set. Return the header size. Just return the size if DOSIZEONLY is
414 nonzero. */
416 static int
417 write_debug_header (DST_HEADER *header, const char *comment, int dosizeonly)
419 if (!dosizeonly)
421 ASM_OUTPUT_DEBUG_DATA2 (asm_out_file,
422 header->dst__header_length.dst_w_length);
424 if (flag_verbose_asm)
425 fprintf (asm_out_file, "\t%s record length", ASM_COMMENT_START);
426 fputc ('\n', asm_out_file);
428 ASM_OUTPUT_DEBUG_DATA2 (asm_out_file,
429 header->dst__header_type.dst_w_type);
431 if (flag_verbose_asm)
432 fprintf (asm_out_file, "\t%s record type (%s)", ASM_COMMENT_START,
433 comment);
435 fputc ('\n', asm_out_file);
438 return 4;
441 /* Output the address of SYMBOL. Also output COMMENT if flag_verbose_asm is
442 set. Return the address size. Just return the size if DOSIZEONLY is
443 nonzero. */
445 static int
446 write_debug_addr (const char *symbol, const char *comment, int dosizeonly)
448 if (!dosizeonly)
450 ASM_OUTPUT_DEBUG_ADDR (asm_out_file, symbol);
451 if (flag_verbose_asm)
452 fprintf (asm_out_file, "\t%s %s", ASM_COMMENT_START, comment);
453 fputc ('\n', asm_out_file);
456 return PTR_SIZE;
459 /* Output the single byte DATA1. Also output COMMENT if flag_verbose_asm is
460 set. Return the data size. Just return the size if DOSIZEONLY is
461 nonzero. */
463 static int
464 write_debug_data1 (unsigned int data1, const char *comment, int dosizeonly)
466 if (!dosizeonly)
468 ASM_OUTPUT_DEBUG_DATA1 (asm_out_file, data1);
469 if (flag_verbose_asm)
470 fprintf (asm_out_file, "\t%s %s", ASM_COMMENT_START, comment);
471 fputc ('\n', asm_out_file);
474 return 1;
477 /* Output the single word DATA2. Also output COMMENT if flag_verbose_asm is
478 set. Return the data size. Just return the size if DOSIZEONLY is
479 nonzero. */
481 static int
482 write_debug_data2 (unsigned int data2, const char *comment, int dosizeonly)
484 if (!dosizeonly)
486 ASM_OUTPUT_DEBUG_DATA2 (asm_out_file, data2);
487 if (flag_verbose_asm)
488 fprintf (asm_out_file, "\t%s %s", ASM_COMMENT_START, comment);
489 fputc ('\n', asm_out_file);
492 return 2;
495 /* Output double word DATA4. Also output COMMENT if flag_verbose_asm is set.
496 Return the data size. Just return the size if DOSIZEONLY is nonzero. */
498 static int
499 write_debug_data4 (unsigned long data4, const char *comment, int dosizeonly)
501 if (!dosizeonly)
503 ASM_OUTPUT_DEBUG_DATA4 (asm_out_file, data4);
504 if (flag_verbose_asm)
505 fprintf (asm_out_file, "\t%s %s", ASM_COMMENT_START, comment);
506 fputc ('\n', asm_out_file);
509 return 4;
512 /* Output quad word DATA8. Also output COMMENT if flag_verbose_asm is set.
513 Return the data size. Just return the size if DOSIZEONLY is nonzero. */
515 static int
516 write_debug_data8 (unsigned long long data8, const char *comment,
517 int dosizeonly)
519 if (!dosizeonly)
521 ASM_OUTPUT_DEBUG_DATA8 (asm_out_file, data8);
522 if (flag_verbose_asm)
523 fprintf (asm_out_file, "\t%s %s", ASM_COMMENT_START, comment);
524 fputc ('\n', asm_out_file);
527 return 8;
530 /* Output the difference between LABEL1 and LABEL2. Also output COMMENT if
531 flag_verbose_asm is set. Return the data size. Just return the size if
532 DOSIZEONLY is nonzero. */
534 static int
535 write_debug_delta4 (const char *label1, const char *label2,
536 const char *comment, int dosizeonly)
538 if (!dosizeonly)
540 ASM_OUTPUT_DEBUG_DELTA4 (asm_out_file, label1, label2);
541 if (flag_verbose_asm)
542 fprintf (asm_out_file, "\t%s %s", ASM_COMMENT_START, comment);
543 fputc ('\n', asm_out_file);
546 return 4;
549 /* Output a character string STRING. Also write COMMENT if flag_verbose_asm is
550 set. Return the string length. Just return the length if DOSIZEONLY is
551 nonzero. */
553 static int
554 write_debug_string (const char *string, const char *comment, int dosizeonly)
556 if (!dosizeonly)
558 ASM_OUTPUT_DEBUG_STRING (asm_out_file, string);
559 if (flag_verbose_asm)
560 fprintf (asm_out_file, "\t%s %s", ASM_COMMENT_START, comment);
561 fputc ('\n', asm_out_file);
564 return strlen (string);
567 /* Output a module begin header and return the header size. Just return the
568 size if DOSIZEONLY is nonzero. */
570 static int
571 write_modbeg (int dosizeonly)
573 DST_MODULE_BEGIN modbeg;
574 DST_MB_TRLR mb_trlr;
575 int i;
576 char *module_name, *m;
577 int modnamelen;
578 int prodnamelen;
579 int totsize = 0;
581 /* Assumes primary filename has Unix syntax file spec. */
582 module_name = xstrdup (lbasename (primary_filename));
584 m = strrchr (module_name, '.');
585 if (m)
586 *m = 0;
588 modnamelen = strlen (module_name);
589 for (i = 0; i < modnamelen; i++)
590 module_name[i] = TOUPPER (module_name[i]);
592 prodnamelen = strlen (module_producer);
594 modbeg.dst_a_modbeg_header.dst__header_length.dst_w_length
595 = DST_K_MODBEG_SIZE + modnamelen + DST_K_MB_TRLR_SIZE + prodnamelen - 1;
596 modbeg.dst_a_modbeg_header.dst__header_type.dst_w_type = DST_K_MODBEG;
597 modbeg.dst_b_modbeg_flags.dst_v_modbeg_hide = 0;
598 modbeg.dst_b_modbeg_flags.dst_v_modbeg_version = 1;
599 modbeg.dst_b_modbeg_flags.dst_v_modbeg_unused = 0;
600 modbeg.dst_b_modbeg_unused = 0;
601 modbeg.dst_l_modbeg_language = (DST_LANGUAGE) module_language;
602 modbeg.dst_w_version_major = DST_K_VERSION_MAJOR;
603 modbeg.dst_w_version_minor = DST_K_VERSION_MINOR;
604 modbeg.dst_b_modbeg_name = strlen (module_name);
606 mb_trlr.dst_b_compiler = strlen (module_producer);
608 totsize += write_debug_header (&modbeg.dst_a_modbeg_header,
609 "modbeg", dosizeonly);
610 totsize += write_debug_data1 (*((char *) &modbeg.dst_b_modbeg_flags),
611 "flags", dosizeonly);
612 totsize += write_debug_data1 (modbeg.dst_b_modbeg_unused,
613 "unused", dosizeonly);
614 totsize += write_debug_data4 (modbeg.dst_l_modbeg_language,
615 "language", dosizeonly);
616 totsize += write_debug_data2 (modbeg.dst_w_version_major,
617 "DST major version", dosizeonly);
618 totsize += write_debug_data2 (modbeg.dst_w_version_minor,
619 "DST minor version", dosizeonly);
620 totsize += write_debug_data1 (modbeg.dst_b_modbeg_name,
621 "length of module name", dosizeonly);
622 totsize += write_debug_string (module_name, "module name", dosizeonly);
623 totsize += write_debug_data1 (mb_trlr.dst_b_compiler,
624 "length of compiler name", dosizeonly);
625 totsize += write_debug_string (module_producer, "compiler name", dosizeonly);
627 return totsize;
630 /* Output a module end trailer and return the trailer size. Just return
631 the size if DOSIZEONLY is nonzero. */
633 static int
634 write_modend (int dosizeonly)
636 DST_MODULE_END modend;
637 int totsize = 0;
639 modend.dst_a_modend_header.dst__header_length.dst_w_length
640 = DST_K_MODEND_SIZE - 1;
641 modend.dst_a_modend_header.dst__header_type.dst_w_type = DST_K_MODEND;
643 totsize += write_debug_header (&modend.dst_a_modend_header, "modend",
644 dosizeonly);
646 return totsize;
649 /* Output a routine begin header routine RTNNUM and return the header size.
650 Just return the size if DOSIZEONLY is nonzero. */
652 static int
653 write_rtnbeg (int rtnnum, int dosizeonly)
655 const char *rtnname;
656 int rtnnamelen;
657 char *rtnentryname;
658 int totsize = 0;
659 char label[MAX_ARTIFICIAL_LABEL_BYTES];
660 DST_ROUTINE_BEGIN rtnbeg;
661 DST_PROLOG prolog;
663 rtnname = VEC_index (char_p, funcnam_table, rtnnum);
664 rtnnamelen = strlen (rtnname);
665 rtnentryname = concat (rtnname, "..en", NULL);
667 if (!strcmp (rtnname, "main"))
669 DST_HEADER header;
670 const char *go = "TRANSFER$BREAK$GO";
672 /* This command isn't documented in DSTRECORDS, so it's made to
673 look like what DEC C does */
675 /* header size - 1st byte + flag byte + STO_LW size
676 + string count byte + string length */
677 header.dst__header_length.dst_w_length
678 = DST_K_DST_HEADER_SIZE - 1 + 1 + 4 + 1 + strlen (go);
679 header.dst__header_type.dst_w_type = DST_K_TBG;
681 totsize += write_debug_header (&header, "transfer", dosizeonly);
683 /* I think this is a flag byte, but I don't know what this flag means */
684 totsize += write_debug_data1 (0x1, "flags ???", dosizeonly);
686 /* Routine Begin PD Address */
687 totsize += write_debug_addr (rtnname, "main procedure descriptor",
688 dosizeonly);
689 totsize += write_debug_data1 (strlen (go), "length of main_name",
690 dosizeonly);
691 totsize += write_debug_string (go, "main name", dosizeonly);
694 /* The header length never includes the length byte. */
695 rtnbeg.dst_a_rtnbeg_header.dst__header_length.dst_w_length
696 = DST_K_RTNBEG_SIZE + rtnnamelen - 1;
697 rtnbeg.dst_a_rtnbeg_header.dst__header_type.dst_w_type = DST_K_RTNBEG;
698 rtnbeg.dst_b_rtnbeg_flags.dst_v_rtnbeg_unused = 0;
699 rtnbeg.dst_b_rtnbeg_flags.dst_v_rtnbeg_unalloc = 0;
700 rtnbeg.dst_b_rtnbeg_flags.dst_v_rtnbeg_prototype = 0;
701 rtnbeg.dst_b_rtnbeg_flags.dst_v_rtnbeg_inlined = 0;
702 rtnbeg.dst_b_rtnbeg_flags.dst_v_rtnbeg_no_call = 1;
703 rtnbeg.dst_b_rtnbeg_name = rtnnamelen;
705 totsize += write_debug_header (&rtnbeg.dst_a_rtnbeg_header, "rtnbeg",
706 dosizeonly);
707 totsize += write_debug_data1 (*((char *) &rtnbeg.dst_b_rtnbeg_flags),
708 "flags", dosizeonly);
710 /* Routine Begin Address */
711 totsize += write_debug_addr (rtnentryname, "routine entry name", dosizeonly);
713 /* Routine Begin PD Address */
714 totsize += write_debug_addr (rtnname, "routine procedure descriptor",
715 dosizeonly);
717 /* Routine Begin Name */
718 totsize += write_debug_data1 (rtnbeg.dst_b_rtnbeg_name,
719 "length of routine name", dosizeonly);
721 totsize += write_debug_string (rtnname, "routine name", dosizeonly);
723 free (rtnentryname);
725 if (debug_info_level > DINFO_LEVEL_TERSE)
727 prolog.dst_a_prolog_header.dst__header_length.dst_w_length
728 = DST_K_PROLOG_SIZE - 1;
729 prolog.dst_a_prolog_header.dst__header_type.dst_w_type = DST_K_PROLOG;
731 totsize += write_debug_header (&prolog.dst_a_prolog_header, "prolog",
732 dosizeonly);
734 ASM_GENERATE_INTERNAL_LABEL
735 (label, FUNC_PROLOG_LABEL,
736 VEC_index (unsigned, funcnum_table, rtnnum));
737 totsize += write_debug_addr (label, "prolog breakpoint addr",
738 dosizeonly);
741 return totsize;
744 /* Output a routine end trailer for routine RTNNUM and return the header size.
745 Just return the size if DOSIZEONLY is nonzero. */
747 static int
748 write_rtnend (int rtnnum, int dosizeonly)
750 DST_ROUTINE_END rtnend;
751 char label1[MAX_ARTIFICIAL_LABEL_BYTES];
752 char label2[MAX_ARTIFICIAL_LABEL_BYTES];
753 int totsize;
755 totsize = 0;
757 rtnend.dst_a_rtnend_header.dst__header_length.dst_w_length
758 = DST_K_RTNEND_SIZE - 1;
759 rtnend.dst_a_rtnend_header.dst__header_type.dst_w_type = DST_K_RTNEND;
760 rtnend.dst_b_rtnend_unused = 0;
761 rtnend.dst_l_rtnend_size = 0; /* Calculated below. */
763 totsize += write_debug_header (&rtnend.dst_a_rtnend_header, "rtnend",
764 dosizeonly);
765 totsize += write_debug_data1 (rtnend.dst_b_rtnend_unused, "unused",
766 dosizeonly);
768 ASM_GENERATE_INTERNAL_LABEL
769 (label1, FUNC_BEGIN_LABEL,
770 VEC_index (unsigned, funcnum_table, rtnnum));
771 ASM_GENERATE_INTERNAL_LABEL
772 (label2, FUNC_END_LABEL,
773 VEC_index (unsigned, funcnum_table, rtnnum));
774 totsize += write_debug_delta4 (label2, label1, "routine size", dosizeonly);
776 return totsize;
779 #define K_DELTA_PC(I) \
780 ((I) < 128 ? -(I) : (I) < 65536 ? DST_K_DELTA_PC_W : DST_K_DELTA_PC_L)
782 #define K_SET_LINUM(I) \
783 ((I) < 256 ? DST_K_SET_LINUM_B \
784 : (I) < 65536 ? DST_K_SET_LINUM : DST_K_SET_LINUM_L)
786 #define K_INCR_LINUM(I) \
787 ((I) < 256 ? DST_K_INCR_LINUM \
788 : (I) < 65536 ? DST_K_INCR_LINUM_W : DST_K_INCR_LINUM_L)
790 /* Output the PC to line number correlations and return the size. Just return
791 the size if DOSIZEONLY is nonzero */
793 static int
794 write_pclines (int dosizeonly)
796 unsigned i;
797 int fn;
798 int ln, lastln;
799 int linestart = 0;
800 int max_line;
801 DST_LINE_NUM_HEADER line_num;
802 DST_PCLINE_COMMANDS pcline;
803 char label[MAX_ARTIFICIAL_LABEL_BYTES];
804 char lastlabel[MAX_ARTIFICIAL_LABEL_BYTES];
805 int totsize = 0;
806 char buff[256];
808 max_line = file_info_table[1].max_line;
809 file_info_table[1].listing_line_start = linestart;
810 linestart = linestart + ((max_line / 100000) + 1) * 100000;
812 for (i = 2; i < file_info_table_in_use; i++)
814 max_line = file_info_table[i].max_line;
815 file_info_table[i].listing_line_start = linestart;
816 linestart = linestart + ((max_line / 10000) + 1) * 10000;
819 /* Set starting address to beginning of text section. */
820 line_num.dst_a_line_num_header.dst__header_length.dst_w_length = 8;
821 line_num.dst_a_line_num_header.dst__header_type.dst_w_type = DST_K_LINE_NUM;
822 pcline.dst_b_pcline_command = DST_K_SET_ABS_PC;
824 totsize += write_debug_header (&line_num.dst_a_line_num_header,
825 "line_num", dosizeonly);
826 totsize += write_debug_data1 (pcline.dst_b_pcline_command,
827 "line_num (SET ABS PC)", dosizeonly);
829 if (dosizeonly)
830 totsize += 4;
831 else
833 ASM_OUTPUT_DEBUG_ADDR (asm_out_file, TEXT_SECTION_ASM_OP);
834 if (flag_verbose_asm)
835 fprintf (asm_out_file, "\t%s line_num", ASM_COMMENT_START);
836 fputc ('\n', asm_out_file);
839 fn = line_info_table[1].dst_file_num;
840 ln = (file_info_table[fn].listing_line_start
841 + line_info_table[1].dst_line_num);
842 line_num.dst_a_line_num_header.dst__header_length.dst_w_length = 4 + 4;
843 pcline.dst_b_pcline_command = DST_K_SET_LINUM_L;
845 totsize += write_debug_header (&line_num.dst_a_line_num_header,
846 "line_num", dosizeonly);
847 totsize += write_debug_data1 (pcline.dst_b_pcline_command,
848 "line_num (SET LINUM LONG)", dosizeonly);
850 sprintf (buff, "line_num (%d)", ln ? ln - 1 : 0);
851 totsize += write_debug_data4 (ln ? ln - 1 : 0, buff, dosizeonly);
853 lastln = ln;
854 strcpy (lastlabel, TEXT_SECTION_ASM_OP);
855 for (i = 1; i < line_info_table_in_use; i++)
857 int extrabytes;
859 fn = line_info_table[i].dst_file_num;
860 ln = (file_info_table[fn].listing_line_start
861 + line_info_table[i].dst_line_num);
863 if (ln - lastln > 1)
864 extrabytes = 5; /* NUMBYTES (ln - lastln - 1) + 1; */
865 else if (ln <= lastln)
866 extrabytes = 5; /* NUMBYTES (ln - 1) + 1; */
867 else
868 extrabytes = 0;
870 line_num.dst_a_line_num_header.dst__header_length.dst_w_length
871 = 8 + extrabytes;
873 totsize += write_debug_header
874 (&line_num.dst_a_line_num_header, "line_num", dosizeonly);
876 if (ln - lastln > 1)
878 int lndif = ln - lastln - 1;
880 /* K_INCR_LINUM (lndif); */
881 pcline.dst_b_pcline_command = DST_K_INCR_LINUM_L;
883 totsize += write_debug_data1 (pcline.dst_b_pcline_command,
884 "line_num (INCR LINUM LONG)",
885 dosizeonly);
887 sprintf (buff, "line_num (%d)", lndif);
888 totsize += write_debug_data4 (lndif, buff, dosizeonly);
890 else if (ln <= lastln)
892 /* K_SET_LINUM (ln-1); */
893 pcline.dst_b_pcline_command = DST_K_SET_LINUM_L;
895 totsize += write_debug_data1 (pcline.dst_b_pcline_command,
896 "line_num (SET LINUM LONG)",
897 dosizeonly);
899 sprintf (buff, "line_num (%d)", ln - 1);
900 totsize += write_debug_data4 (ln - 1, buff, dosizeonly);
903 pcline.dst_b_pcline_command = DST_K_DELTA_PC_L;
905 totsize += write_debug_data1 (pcline.dst_b_pcline_command,
906 "line_num (DELTA PC LONG)", dosizeonly);
908 ASM_GENERATE_INTERNAL_LABEL (label, LINE_CODE_LABEL, i);
909 totsize += write_debug_delta4 (label, lastlabel, "increment line_num",
910 dosizeonly);
912 lastln = ln;
913 strcpy (lastlabel, label);
916 return totsize;
919 /* Output a source correlation for file FILEID using information saved in
920 FILE_INFO_ENTRY and return the size. Just return the size if DOSIZEONLY is
921 nonzero. */
923 static int
924 write_srccorr (int fileid, dst_file_info_entry file_info_entry,
925 int dosizeonly)
927 int src_command_size;
928 int linesleft = file_info_entry.max_line;
929 int linestart = file_info_entry.listing_line_start;
930 int flen = strlen (file_info_entry.file_name);
931 int linestodo = 0;
932 DST_SOURCE_CORR src_header;
933 DST_SRC_COMMAND src_command;
934 DST_SRC_COMMAND src_command_sf;
935 DST_SRC_COMMAND src_command_sl;
936 DST_SRC_COMMAND src_command_sr;
937 DST_SRC_COMMAND src_command_dl;
938 DST_SRC_CMDTRLR src_cmdtrlr;
939 char buff[256];
940 int totsize = 0;
942 if (fileid == 1)
944 src_header.dst_a_source_corr_header.dst__header_length.dst_w_length
945 = DST_K_SOURCE_CORR_HEADER_SIZE + 1 - 1;
946 src_header.dst_a_source_corr_header.dst__header_type.dst_w_type
947 = DST_K_SOURCE;
948 src_command.dst_b_src_command = DST_K_SRC_FORMFEED;
950 totsize += write_debug_header (&src_header.dst_a_source_corr_header,
951 "source corr", dosizeonly);
953 totsize += write_debug_data1 (src_command.dst_b_src_command,
954 "source_corr (SRC FORMFEED)",
955 dosizeonly);
958 src_command_size
959 = DST_K_SRC_COMMAND_SIZE + flen + DST_K_SRC_CMDTRLR_SIZE;
960 src_command.dst_b_src_command = DST_K_SRC_DECLFILE;
961 src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_b_src_df_length
962 = src_command_size - 2;
963 src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_b_src_df_flags = 0;
964 src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_w_src_df_fileid
965 = fileid;
966 src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_q_src_df_rms_cdt
967 = file_info_entry.cdt;
968 src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_l_src_df_rms_ebk
969 = file_info_entry.ebk;
970 src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_w_src_df_rms_ffb
971 = file_info_entry.ffb;
972 src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_b_src_df_rms_rfo
973 = file_info_entry.rfo;
974 src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_b_src_df_filename
975 = flen;
977 src_header.dst_a_source_corr_header.dst__header_length.dst_w_length
978 = DST_K_SOURCE_CORR_HEADER_SIZE + src_command_size - 1;
979 src_header.dst_a_source_corr_header.dst__header_type.dst_w_type
980 = DST_K_SOURCE;
982 src_cmdtrlr.dst_b_src_df_libmodname = 0;
984 totsize += write_debug_header (&src_header.dst_a_source_corr_header,
985 "source corr", dosizeonly);
986 totsize += write_debug_data1 (src_command.dst_b_src_command,
987 "source_corr (DECL SRC FILE)", dosizeonly);
988 totsize += write_debug_data1
989 (src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_b_src_df_length,
990 "source_corr (length)", dosizeonly);
992 totsize += write_debug_data1
993 (src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_b_src_df_flags,
994 "source_corr (flags)", dosizeonly);
996 totsize += write_debug_data2
997 (src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_w_src_df_fileid,
998 "source_corr (fileid)", dosizeonly);
1000 totsize += write_debug_data8
1001 (src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_q_src_df_rms_cdt,
1002 "source_corr (creation date)", dosizeonly);
1004 totsize += write_debug_data4
1005 (src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_l_src_df_rms_ebk,
1006 "source_corr (EOF block number)", dosizeonly);
1008 totsize += write_debug_data2
1009 (src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_w_src_df_rms_ffb,
1010 "source_corr (first free byte)", dosizeonly);
1012 totsize += write_debug_data1
1013 (src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_b_src_df_rms_rfo,
1014 "source_corr (record and file organization)", dosizeonly);
1016 totsize += write_debug_data1
1017 (src_command.dst_a_src_cmd_fields.dst_a_src_decl_src.dst_b_src_df_filename,
1018 "source_corr (filename length)", dosizeonly);
1020 totsize += write_debug_string (remap_debug_filename (
1021 file_info_entry.file_name),
1022 "source file name", dosizeonly);
1023 totsize += write_debug_data1 (src_cmdtrlr.dst_b_src_df_libmodname,
1024 "source_corr (libmodname)", dosizeonly);
1026 src_command_sf.dst_b_src_command = DST_K_SRC_SETFILE;
1027 src_command_sf.dst_a_src_cmd_fields.dst_w_src_unsword = fileid;
1029 src_command_sr.dst_b_src_command = DST_K_SRC_SETREC_W;
1030 src_command_sr.dst_a_src_cmd_fields.dst_w_src_unsword = 1;
1032 src_command_sl.dst_b_src_command = DST_K_SRC_SETLNUM_L;
1033 src_command_sl.dst_a_src_cmd_fields.dst_l_src_unslong = linestart + 1;
1035 src_command_dl.dst_b_src_command = DST_K_SRC_DEFLINES_W;
1037 if (linesleft > 65534)
1038 linesleft = linesleft - 65534, linestodo = 65534;
1039 else
1040 linestodo = linesleft, linesleft = 0;
1042 src_command_dl.dst_a_src_cmd_fields.dst_w_src_unsword = linestodo;
1044 src_header.dst_a_source_corr_header.dst__header_length.dst_w_length
1045 = DST_K_SOURCE_CORR_HEADER_SIZE + 3 + 3 + 5 + 3 - 1;
1046 src_header.dst_a_source_corr_header.dst__header_type.dst_w_type
1047 = DST_K_SOURCE;
1049 if (src_command_dl.dst_a_src_cmd_fields.dst_w_src_unsword)
1051 totsize += write_debug_header (&src_header.dst_a_source_corr_header,
1052 "source corr", dosizeonly);
1054 totsize += write_debug_data1 (src_command_sf.dst_b_src_command,
1055 "source_corr (src setfile)", dosizeonly);
1057 totsize += write_debug_data2
1058 (src_command_sf.dst_a_src_cmd_fields.dst_w_src_unsword,
1059 "source_corr (fileid)", dosizeonly);
1061 totsize += write_debug_data1 (src_command_sr.dst_b_src_command,
1062 "source_corr (setrec)", dosizeonly);
1064 totsize += write_debug_data2
1065 (src_command_sr.dst_a_src_cmd_fields.dst_w_src_unsword,
1066 "source_corr (recnum)", dosizeonly);
1068 totsize += write_debug_data1 (src_command_sl.dst_b_src_command,
1069 "source_corr (setlnum)", dosizeonly);
1071 totsize += write_debug_data4
1072 (src_command_sl.dst_a_src_cmd_fields.dst_l_src_unslong,
1073 "source_corr (linenum)", dosizeonly);
1075 totsize += write_debug_data1 (src_command_dl.dst_b_src_command,
1076 "source_corr (deflines)", dosizeonly);
1078 sprintf (buff, "source_corr (%d)",
1079 src_command_dl.dst_a_src_cmd_fields.dst_w_src_unsword);
1080 totsize += write_debug_data2
1081 (src_command_dl.dst_a_src_cmd_fields.dst_w_src_unsword,
1082 buff, dosizeonly);
1084 while (linesleft > 0)
1086 src_header.dst_a_source_corr_header.dst__header_length.dst_w_length
1087 = DST_K_SOURCE_CORR_HEADER_SIZE + 3 - 1;
1088 src_header.dst_a_source_corr_header.dst__header_type.dst_w_type
1089 = DST_K_SOURCE;
1090 src_command_dl.dst_b_src_command = DST_K_SRC_DEFLINES_W;
1092 if (linesleft > 65534)
1093 linesleft = linesleft - 65534, linestodo = 65534;
1094 else
1095 linestodo = linesleft, linesleft = 0;
1097 src_command_dl.dst_a_src_cmd_fields.dst_w_src_unsword = linestodo;
1099 totsize += write_debug_header (&src_header.dst_a_source_corr_header,
1100 "source corr", dosizeonly);
1101 totsize += write_debug_data1 (src_command_dl.dst_b_src_command,
1102 "source_corr (deflines)", dosizeonly);
1103 sprintf (buff, "source_corr (%d)",
1104 src_command_dl.dst_a_src_cmd_fields.dst_w_src_unsword);
1105 totsize += write_debug_data2
1106 (src_command_dl.dst_a_src_cmd_fields.dst_w_src_unsword,
1107 buff, dosizeonly);
1111 return totsize;
1114 /* Output all the source correlation entries and return the size. Just return
1115 the size if DOSIZEONLY is nonzero. */
1117 static int
1118 write_srccorrs (int dosizeonly)
1120 unsigned int i;
1121 int totsize = 0;
1123 for (i = 1; i < file_info_table_in_use; i++)
1124 totsize += write_srccorr (i, file_info_table[i], dosizeonly);
1126 return totsize;
1129 /* Output a marker (i.e. a label) for the beginning of a function, before
1130 the prologue. */
1132 static void
1133 vmsdbgout_begin_prologue (unsigned int line, const char *file)
1135 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1137 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1138 (*dwarf2_debug_hooks.begin_prologue) (line, file);
1140 if (debug_info_level > DINFO_LEVEL_NONE)
1142 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
1143 current_function_funcdef_no);
1144 ASM_OUTPUT_LABEL (asm_out_file, label);
1148 /* Output a marker (i.e. a label) for the beginning of a function, after
1149 the prologue. */
1151 static void
1152 vmsdbgout_end_prologue (unsigned int line, const char *file)
1154 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1156 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1157 (*dwarf2_debug_hooks.end_prologue) (line, file);
1159 if (debug_info_level > DINFO_LEVEL_TERSE)
1161 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_PROLOG_LABEL,
1162 current_function_funcdef_no);
1163 ASM_OUTPUT_LABEL (asm_out_file, label);
1165 /* VMS PCA expects every PC range to correlate to some line and file. */
1166 vmsdbgout_write_source_line (line, file, 0, true);
1170 /* No output for VMS debug, but make obligatory call to Dwarf2 debug */
1172 static void
1173 vmsdbgout_end_function (unsigned int line)
1175 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1176 (*dwarf2_debug_hooks.end_function) (line);
1179 /* Output a marker (i.e. a label) for the beginning of the epilogue.
1180 This gets called *before* the epilogue code has been generated. */
1182 static void
1183 vmsdbgout_begin_epilogue (unsigned int line, const char *file)
1185 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1186 static int save_current_function_funcdef_no = -1;
1188 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1189 (*dwarf2_debug_hooks.begin_epilogue) (line, file);
1191 if (debug_info_level > DINFO_LEVEL_NONE)
1193 if (save_current_function_funcdef_no != current_function_funcdef_no)
1195 /* Output a label to mark the endpoint of the code generated for this
1196 function. */
1197 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_EPILOG_LABEL,
1198 current_function_funcdef_no);
1200 ASM_OUTPUT_LABEL (asm_out_file, label);
1202 save_current_function_funcdef_no = current_function_funcdef_no;
1204 /* VMS PCA expects every PC range to correlate to some line and
1205 file. */
1206 vmsdbgout_write_source_line (line, file, 0, true);
1211 /* Output a marker (i.e. a label) for the absolute end of the generated code
1212 for a function definition. This gets called *after* the epilogue code has
1213 been generated. */
1215 static void
1216 vmsdbgout_end_epilogue (unsigned int line, const char *file)
1218 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1220 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1221 (*dwarf2_debug_hooks.end_epilogue) (line, file);
1223 if (debug_info_level > DINFO_LEVEL_NONE)
1225 /* Output a label to mark the endpoint of the code generated for this
1226 function. */
1227 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
1228 current_function_funcdef_no);
1229 ASM_OUTPUT_LABEL (asm_out_file, label);
1231 /* VMS PCA expects every PC range to correlate to some line and file. */
1232 vmsdbgout_write_source_line (line, file, 0, true);
1236 /* Output a marker (i.e. a label) for the beginning of the generated code for
1237 a lexical block. */
1239 static void
1240 vmsdbgout_begin_block (register unsigned line, register unsigned blocknum)
1242 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1243 (*dwarf2_debug_hooks.begin_block) (line, blocknum);
1245 if (debug_info_level > DINFO_LEVEL_TERSE)
1246 targetm.asm_out.internal_label (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
1249 /* Output a marker (i.e. a label) for the end of the generated code for a
1250 lexical block. */
1252 static void
1253 vmsdbgout_end_block (register unsigned line, register unsigned blocknum)
1255 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1256 (*dwarf2_debug_hooks.end_block) (line, blocknum);
1258 if (debug_info_level > DINFO_LEVEL_TERSE)
1259 targetm.asm_out.internal_label (asm_out_file, BLOCK_END_LABEL, blocknum);
1262 /* Not implemented in VMS Debug. */
1264 static bool
1265 vmsdbgout_ignore_block (const_tree block)
1267 bool retval = 0;
1269 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1270 retval = (*dwarf2_debug_hooks.ignore_block) (block);
1272 return retval;
1275 /* Add an entry for function DECL into the funcnam_table. */
1277 static void
1278 vmsdbgout_begin_function (tree decl)
1280 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
1282 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1283 (*dwarf2_debug_hooks.begin_function) (decl);
1285 /* Add the new entry to the end of the function name table. */
1286 VEC_safe_push (char_p, heap, funcnam_table, xstrdup (name));
1287 VEC_safe_push (unsigned, heap, funcnum_table,
1288 current_function_funcdef_no);
1291 static char fullname_buff [4096];
1293 /* Return the full file specification for FILENAME. The specification must be
1294 in VMS syntax in order to be processed by VMS Debug. */
1296 static char *
1297 full_name (const char *filename)
1299 #ifdef VMS
1300 FILE *fp = fopen (filename, "r");
1302 fgetname (fp, fullname_buff, 1);
1303 fclose (fp);
1304 #else
1305 /* Unix paths really mess up VMS debug. Better to just output the
1306 base filename. */
1307 strcpy (fullname_buff, filename);
1308 #endif
1310 return fullname_buff;
1313 /* Lookup a filename (in the list of filenames that we know about here in
1314 vmsdbgout.c) and return its "index". The index of each (known) filename is
1315 just a unique number which is associated with only that one filename. We
1316 need such numbers for the sake of generating labels and references
1317 to those files numbers. If the filename given as an argument is not
1318 found in our current list, add it to the list and assign it the next
1319 available unique index number. In order to speed up searches, we remember
1320 the index of the filename was looked up last. This handles the majority of
1321 all searches. */
1323 static unsigned int
1324 lookup_filename (const char *file_name)
1326 static unsigned int last_file_lookup_index = 0;
1327 register char *fn;
1328 register unsigned i;
1329 const char *fnam;
1330 long long cdt = 0;
1331 long ebk = 0;
1332 short ffb = 0;
1333 char rfo = 0;
1334 long siz = 0;
1335 int ver = 0;
1337 fnam = full_name (file_name);
1339 /* Check to see if the file name that was searched on the previous call
1340 matches this file name. If so, return the index. */
1341 if (last_file_lookup_index != 0)
1343 fn = file_info_table[last_file_lookup_index].file_name;
1344 if (strcmp (fnam, fn) == 0)
1345 return last_file_lookup_index;
1348 /* Didn't match the previous lookup, search the table */
1349 for (i = 1; i < file_info_table_in_use; ++i)
1351 fn = file_info_table[i].file_name;
1352 if (strcmp (fnam, fn) == 0)
1354 last_file_lookup_index = i;
1355 return i;
1359 /* Prepare to add a new table entry by making sure there is enough space in
1360 the table to do so. If not, expand the current table. */
1361 if (file_info_table_in_use == file_info_table_allocated)
1364 file_info_table_allocated += FILE_TABLE_INCREMENT;
1365 file_info_table = XRESIZEVEC (dst_file_info_entry, file_info_table,
1366 file_info_table_allocated);
1369 if (vms_file_stats_name (file_name, &cdt, &siz, &rfo, &ver) == 0)
1371 ebk = siz / 512 + 1;
1372 ffb = siz - ((siz / 512) * 512);
1375 /* Add the new entry to the end of the filename table. */
1376 file_info_table[file_info_table_in_use].file_name = xstrdup (fnam);
1377 file_info_table[file_info_table_in_use].max_line = 0;
1378 file_info_table[file_info_table_in_use].cdt = cdt;
1379 file_info_table[file_info_table_in_use].ebk = ebk;
1380 file_info_table[file_info_table_in_use].ffb = ffb;
1381 file_info_table[file_info_table_in_use].rfo = rfo;
1383 last_file_lookup_index = file_info_table_in_use++;
1384 return last_file_lookup_index;
1387 /* Output a label to mark the beginning of a source code line entry
1388 and record information relating to this source line, in
1389 'line_info_table' for later output of the .debug_line section. */
1391 static void
1392 vmsdbgout_write_source_line (unsigned line, const char *filename,
1393 int discriminator, bool is_stmt)
1395 dst_line_info_ref line_info;
1397 targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL,
1398 line_info_table_in_use);
1400 /* Expand the line info table if necessary. */
1401 if (line_info_table_in_use == line_info_table_allocated)
1403 line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
1404 line_info_table = XRESIZEVEC (dst_line_info_entry, line_info_table,
1405 line_info_table_allocated);
1408 /* Add the new entry at the end of the line_info_table. */
1409 line_info = &line_info_table[line_info_table_in_use++];
1410 line_info->dst_file_num = lookup_filename (filename);
1411 line_info->dst_line_num = line;
1412 if (line > file_info_table[line_info->dst_file_num].max_line)
1413 file_info_table[line_info->dst_file_num].max_line = line;
1416 static void
1417 vmsdbgout_source_line (register unsigned line, register const char *filename,
1418 int discriminator, bool is_stmt)
1420 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1421 (*dwarf2_debug_hooks.source_line) (line, filename, discriminator, is_stmt);
1423 if (debug_info_level >= DINFO_LEVEL_TERSE)
1424 vmsdbgout_write_source_line (line, filename, discriminator, is_stmt);
1427 /* Record the beginning of a new source file, for later output.
1428 At present, unimplemented. */
1430 static void
1431 vmsdbgout_start_source_file (unsigned int lineno, const char *filename)
1433 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1434 (*dwarf2_debug_hooks.start_source_file) (lineno, filename);
1437 /* Record the end of a source file, for later output.
1438 At present, unimplemented. */
1440 static void
1441 vmsdbgout_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
1443 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1444 (*dwarf2_debug_hooks.end_source_file) (lineno);
1447 /* Set up for Debug output at the start of compilation. */
1449 static void
1450 vmsdbgout_init (const char *filename)
1452 const char *language_string = lang_hooks.name;
1454 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1455 (*dwarf2_debug_hooks.init) (filename);
1457 if (debug_info_level == DINFO_LEVEL_NONE)
1458 return;
1460 /* Remember the name of the primary input file. */
1461 primary_filename = filename;
1463 /* Allocate the initial hunk of the file_info_table. */
1464 file_info_table = XCNEWVEC (dst_file_info_entry, FILE_TABLE_INCREMENT);
1465 file_info_table_allocated = FILE_TABLE_INCREMENT;
1466 /* Skip the first entry - file numbers begin at 1. */
1467 file_info_table_in_use = 1;
1469 funcnam_table = VEC_alloc (char_p, heap, FUNC_TABLE_INITIAL);
1470 funcnum_table = VEC_alloc (unsigned, heap, FUNC_TABLE_INITIAL);
1472 /* Allocate the initial hunk of the line_info_table. */
1473 line_info_table = XCNEWVEC (dst_line_info_entry, LINE_INFO_TABLE_INCREMENT);
1474 line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
1475 /* zero-th entry is allocated, but unused */
1476 line_info_table_in_use = 1;
1478 lookup_filename (primary_filename);
1480 if (!strcmp (language_string, "GNU C"))
1481 module_language = DST_K_C;
1482 else if (!strcmp (language_string, "GNU C++"))
1483 module_language = DST_K_CXX;
1484 else if (!strcmp (language_string, "GNU Ada"))
1485 module_language = DST_K_ADA;
1486 else if (!strcmp (language_string, "GNU F77"))
1487 module_language = DST_K_FORTRAN;
1488 else
1489 module_language = DST_K_UNKNOWN;
1491 module_producer = concat (language_string, " ", version_string, NULL);
1493 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
1497 /* Not implemented in VMS Debug. */
1499 static void
1500 vmsdbgout_assembly_start (void)
1502 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1503 (*dwarf2_debug_hooks.assembly_start) ();
1506 /* Not implemented in VMS Debug. */
1508 static void
1509 vmsdbgout_define (unsigned int lineno, const char *buffer)
1511 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1512 (*dwarf2_debug_hooks.define) (lineno, buffer);
1515 /* Not implemented in VMS Debug. */
1517 static void
1518 vmsdbgout_undef (unsigned int lineno, const char *buffer)
1520 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1521 (*dwarf2_debug_hooks.undef) (lineno, buffer);
1524 /* Not implemented in VMS Debug. */
1526 static void
1527 vmsdbgout_decl (tree decl)
1529 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1530 (*dwarf2_debug_hooks.function_decl) (decl);
1533 /* Not implemented in VMS Debug. */
1535 static void
1536 vmsdbgout_global_decl (tree decl)
1538 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1539 (*dwarf2_debug_hooks.global_decl) (decl);
1542 /* Not implemented in VMS Debug. */
1544 static void
1545 vmsdbgout_type_decl (tree decl, int local)
1547 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1548 (*dwarf2_debug_hooks.type_decl) (decl, local);
1551 /* Not implemented in VMS Debug. */
1553 static void
1554 vmsdbgout_abstract_function (tree decl)
1556 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1557 (*dwarf2_debug_hooks.outlining_inline_function) (decl);
1560 /* Output stuff that Debug requires at the end of every file and generate the
1561 VMS Debug debugging info. */
1563 static void
1564 vmsdbgout_finish (const char *filename ATTRIBUTE_UNUSED)
1566 unsigned int i, ifunc;
1567 int totsize;
1569 if (write_symbols == VMS_AND_DWARF2_DEBUG)
1570 (*dwarf2_debug_hooks.finish) (filename);
1572 if (debug_info_level == DINFO_LEVEL_NONE)
1573 return;
1575 /* Output a terminator label for the .text section. */
1576 switch_to_section (text_section);
1577 targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
1579 /* Output debugging information.
1580 Warning! Do not change the name of the .vmsdebug section without
1581 changing it in the assembler also. */
1582 switch_to_section (get_named_section (NULL, ".vmsdebug", 0));
1583 ASM_OUTPUT_ALIGN (asm_out_file, 0);
1585 totsize = write_modbeg (1);
1586 FOR_EACH_VEC_ELT (unsigned, funcnum_table, i, ifunc)
1588 totsize += write_rtnbeg (i, 1);
1589 totsize += write_rtnend (i, 1);
1591 totsize += write_pclines (1);
1593 write_modbeg (0);
1594 FOR_EACH_VEC_ELT (unsigned, funcnum_table, i, ifunc)
1596 write_rtnbeg (i, 0);
1597 write_rtnend (i, 0);
1599 write_pclines (0);
1601 if (debug_info_level > DINFO_LEVEL_TERSE)
1603 totsize = write_srccorrs (1);
1604 write_srccorrs (0);
1607 totsize = write_modend (1);
1608 write_modend (0);
1611 /* Need for both Dwarf2 on IVMS and VMS Debug on AVMS */
1613 #ifdef VMS
1614 #define __NEW_STARLET 1
1615 #include <vms/rms.h>
1616 #include <vms/atrdef.h>
1617 #include <vms/fibdef.h>
1618 #include <vms/stsdef.h>
1619 #include <vms/iodef.h>
1620 #include <vms/fatdef.h>
1621 #include <vms/descrip.h>
1622 #include <unixlib.h>
1624 #define MAXPATH 256
1626 /* descrip.h doesn't have everything ... */
1627 typedef struct fibdef* __fibdef_ptr32 __attribute__ (( mode (SI) ));
1628 struct dsc$descriptor_fib
1630 unsigned int fib$l_len;
1631 __fibdef_ptr32 fib$l_addr;
1634 /* I/O Status Block. */
1635 struct IOSB
1637 unsigned short status, count;
1638 unsigned int devdep;
1641 static char *tryfile;
1643 /* Variable length string. */
1644 struct vstring
1646 short length;
1647 char string[NAM$C_MAXRSS+1];
1650 static char filename_buff [MAXPATH];
1651 static char vms_filespec [MAXPATH];
1653 /* Callback function for filespec style conversion. */
1655 static int
1656 translate_unix (char *name, int type ATTRIBUTE_UNUSED)
1658 strncpy (filename_buff, name, MAXPATH);
1659 filename_buff [MAXPATH - 1] = (char) 0;
1660 return 0;
1663 /* Wrapper for DECC function that converts a Unix filespec
1664 to VMS style filespec. */
1666 static char *
1667 to_vms_file_spec (char *filespec)
1669 strncpy (vms_filespec, "", MAXPATH);
1670 decc$to_vms (filespec, translate_unix, 1, 1);
1671 strncpy (vms_filespec, filename_buff, MAXPATH);
1673 vms_filespec [MAXPATH - 1] = (char) 0;
1675 return vms_filespec;
1678 #else
1679 #define VMS_EPOCH_OFFSET 35067168000000000
1680 #define VMS_GRANULARITY_FACTOR 10000000
1681 #endif
1683 /* Return VMS file date, size, format, version given a name. */
1686 vms_file_stats_name (const char *filename, long long *cdt, long *siz, char *rfo,
1687 int *ver)
1689 #ifdef VMS
1690 struct FAB fab;
1691 struct NAM nam;
1693 unsigned long long create;
1694 FAT recattr;
1695 char ascnamebuff [256];
1697 ATRDEF atrlst[]
1699 { ATR$S_CREDATE, ATR$C_CREDATE, &create },
1700 { ATR$S_RECATTR, ATR$C_RECATTR, &recattr },
1701 { ATR$S_ASCNAME, ATR$C_ASCNAME, &ascnamebuff },
1702 { 0, 0, 0}
1705 FIBDEF fib;
1706 struct dsc$descriptor_fib fibdsc = {sizeof (fib), (void *) &fib};
1708 struct IOSB iosb;
1710 long status;
1711 unsigned short chan;
1713 struct vstring file;
1714 struct dsc$descriptor_s filedsc
1715 = {NAM$C_MAXRSS, DSC$K_DTYPE_T, DSC$K_CLASS_S, (void *) file.string};
1716 struct vstring device;
1717 struct dsc$descriptor_s devicedsc
1718 = {NAM$C_MAXRSS, DSC$K_DTYPE_T, DSC$K_CLASS_S, (void *) device.string};
1719 struct vstring result;
1720 struct dsc$descriptor_s resultdsc
1721 = {NAM$C_MAXRSS, DSC$K_DTYPE_VT, DSC$K_CLASS_VS, (void *) result.string};
1723 if (strcmp (filename, "<internal>") == 0
1724 || strcmp (filename, "<built-in>") == 0)
1726 if (cdt)
1727 *cdt = 0;
1729 if (siz)
1730 *siz = 0;
1732 if (rfo)
1733 *rfo = 0;
1735 if (ver)
1736 *ver = 0;
1738 return 0;
1741 tryfile = to_vms_file_spec (filename);
1743 /* Allocate and initialize a FAB and NAM structures. */
1744 fab = cc$rms_fab;
1745 nam = cc$rms_nam;
1747 nam.nam$l_esa = file.string;
1748 nam.nam$b_ess = NAM$C_MAXRSS;
1749 nam.nam$l_rsa = result.string;
1750 nam.nam$b_rss = NAM$C_MAXRSS;
1751 fab.fab$l_fna = tryfile;
1752 fab.fab$b_fns = strlen (tryfile);
1753 fab.fab$l_nam = &nam;
1755 /* Validate filespec syntax and device existence. */
1756 status = SYS$PARSE (&fab, 0, 0);
1757 if ((status & 1) != 1)
1758 return 1;
1760 file.string[nam.nam$b_esl] = 0;
1762 /* Find matching filespec. */
1763 status = SYS$SEARCH (&fab, 0, 0);
1764 if ((status & 1) != 1)
1765 return 1;
1767 file.string[nam.nam$b_esl] = 0;
1768 result.string[result.length=nam.nam$b_rsl] = 0;
1770 /* Get the device name and assign an IO channel. */
1771 strncpy (device.string, nam.nam$l_dev, nam.nam$b_dev);
1772 devicedsc.dsc$w_length = nam.nam$b_dev;
1773 chan = 0;
1774 status = SYS$ASSIGN (&devicedsc, &chan, 0, 0, 0);
1775 if ((status & 1) != 1)
1776 return 1;
1778 /* Initialize the FIB and fill in the directory id field. */
1779 memset (&fib, 0, sizeof (fib));
1780 fib.fib$w_did[0] = nam.nam$w_did[0];
1781 fib.fib$w_did[1] = nam.nam$w_did[1];
1782 fib.fib$w_did[2] = nam.nam$w_did[2];
1783 fib.fib$l_acctl = 0;
1784 fib.fib$l_wcc = 0;
1785 strcpy (file.string, (strrchr (result.string, ']') + 1));
1786 filedsc.dsc$w_length = strlen (file.string);
1787 result.string[result.length = 0] = 0;
1789 /* Open and close the file to fill in the attributes. */
1790 status
1791 = SYS$QIOW (0, chan, IO$_ACCESS|IO$M_ACCESS, &iosb, 0, 0,
1792 &fibdsc, &filedsc, &result.length, &resultdsc, &atrlst, 0);
1793 if ((status & 1) != 1)
1794 return 1;
1795 if ((iosb.status & 1) != 1)
1796 return 1;
1798 result.string[result.length] = 0;
1799 status = SYS$QIOW (0, chan, IO$_DEACCESS, &iosb, 0, 0, &fibdsc, 0, 0, 0,
1800 &atrlst, 0);
1801 if ((status & 1) != 1)
1802 return 1;
1803 if ((iosb.status & 1) != 1)
1804 return 1;
1806 /* Deassign the channel and exit. */
1807 status = SYS$DASSGN (chan);
1808 if ((status & 1) != 1)
1809 return 1;
1811 if (cdt) *cdt = create;
1812 if (siz) *siz = (512 * 65536 * recattr.fat$w_efblkh) +
1813 (512 * (recattr.fat$w_efblkl - 1)) +
1814 recattr.fat$w_ffbyte;
1815 if (rfo) *rfo = recattr.fat$v_rtype;
1816 if (ver) *ver = strtol (strrchr (ascnamebuff, ';')+1, 0, 10);
1818 return 0;
1819 #else
1820 struct stat buff;
1822 if ((stat (filename, &buff)) != 0)
1823 return 1;
1825 if (cdt)
1826 *cdt = (long long) (buff.st_mtime * VMS_GRANULARITY_FACTOR)
1827 + VMS_EPOCH_OFFSET;
1829 if (siz)
1830 *siz = buff.st_size;
1832 if (rfo)
1833 *rfo = 2; /* Stream LF format */
1835 if (ver)
1836 *ver = 1;
1838 return 0;
1839 #endif
1841 #endif