1 /* Output VMS debug format symbol table information from GCC.
2 Copyright (C) 1987-2018 Free Software Foundation, Inc.
3 Contributed by Douglas B. Rupp (rupp@gnat.com).
4 Updated by Bernard W. Giroud (bgiroud@users.sourceforge.net).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
27 #ifdef VMS_DEBUGGING_INFO
37 #include "langhooks.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
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
;
63 typedef struct dst_file_info_struct
*dst_file_info_ref
;
65 typedef struct dst_file_info_struct
68 unsigned int max_line
;
69 unsigned int listing_line_start
;
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
85 #define PTR_SIZE 4 /* Must be 32 bits for VMS debug info */
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
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
101 #define FILE_TABLE_INCREMENT 64
103 typedef char *char_p
;
105 static vec
<char_p
> funcnam_table
;
106 static vec
<unsigned> funcnum_table
;
107 #define FUNC_TABLE_INITIAL 256
109 /* Local pointer to the name of the main input file. Initialized in
111 static const char *primary_filename
;
113 static char *module_producer
;
114 static unsigned int module_language
;
116 /* A pointer to the base of a table that contains line information
117 for each source code line in .text in the compilation unit. */
118 static dst_line_info_ref line_info_table
;
120 /* Number of elements currently allocated for line_info_table. */
121 static unsigned int line_info_table_allocated
;
123 /* Number of elements in line_info_table currently in use. */
124 static unsigned int line_info_table_in_use
;
126 /* Size (in elements) of increments by which we may expand line_info_table. */
127 #define LINE_INFO_TABLE_INCREMENT 1024
129 /* Forward declarations for functions defined in this file. */
130 static char *full_name (const char *);
131 static unsigned int lookup_filename (const char *);
132 static int write_debug_header (DST_HEADER
*, const char *, int);
133 static int write_debug_addr (const char *, const char *, int);
134 static int write_debug_data1 (unsigned int, const char *, int);
135 static int write_debug_data2 (unsigned int, const char *, int);
136 static int write_debug_data4 (unsigned long, const char *, int);
137 static int write_debug_data8 (unsigned long long, const char *, int);
138 static int write_debug_delta4 (const char *, const char *, const char *, int);
139 static int write_debug_string (const char *, const char *, int);
140 static int write_modbeg (int);
141 static int write_modend (int);
142 static int write_rtnbeg (int, int);
143 static int write_rtnend (int, int);
144 static int write_pclines (int);
145 static int write_srccorr (int, dst_file_info_entry
, int);
146 static int write_srccorrs (int);
148 static void vmsdbgout_init (const char *);
149 static void vmsdbgout_finish (const char *);
150 static void vmsdbgout_early_finish (const char *);
151 static void vmsdbgout_assembly_start (void);
152 static void vmsdbgout_define (unsigned int, const char *);
153 static void vmsdbgout_undef (unsigned int, const char *);
154 static void vmsdbgout_start_source_file (unsigned int, const char *);
155 static void vmsdbgout_end_source_file (unsigned int);
156 static void vmsdbgout_begin_block (unsigned int, unsigned int);
157 static void vmsdbgout_end_block (unsigned int, unsigned int);
158 static bool vmsdbgout_ignore_block (const_tree
);
159 static void vmsdbgout_source_line (unsigned int, unsigned int, const char *,
161 static void vmsdbgout_write_source_line (unsigned, const char *, int , bool);
162 static void vmsdbgout_begin_prologue (unsigned int, unsigned int,
164 static void vmsdbgout_end_prologue (unsigned int, const char *);
165 static void vmsdbgout_end_function (unsigned int);
166 static void vmsdbgout_begin_epilogue (unsigned int, const char *);
167 static void vmsdbgout_end_epilogue (unsigned int, const char *);
168 static void vmsdbgout_begin_function (tree
);
169 static void vmsdbgout_function_decl (tree
);
170 static void vmsdbgout_early_global_decl (tree
);
171 static void vmsdbgout_late_global_decl (tree
);
172 static void vmsdbgout_type_decl (tree
, int);
173 static void vmsdbgout_abstract_function (tree
);
175 /* The debug hooks structure. */
177 const struct gcc_debug_hooks vmsdbg_debug_hooks
180 vmsdbgout_early_finish
,
181 vmsdbgout_assembly_start
,
184 vmsdbgout_start_source_file
,
185 vmsdbgout_end_source_file
,
186 vmsdbgout_begin_block
,
188 vmsdbgout_ignore_block
,
189 vmsdbgout_source_line
,
190 vmsdbgout_begin_prologue
,
191 vmsdbgout_end_prologue
,
192 vmsdbgout_begin_epilogue
,
193 vmsdbgout_end_epilogue
,
194 vmsdbgout_begin_function
,
195 vmsdbgout_end_function
,
196 debug_nothing_tree
, /* register_main_translation_unit */
197 vmsdbgout_function_decl
,
198 vmsdbgout_early_global_decl
,
199 vmsdbgout_late_global_decl
,
200 vmsdbgout_type_decl
, /* type_decl */
201 debug_nothing_tree_tree_tree_bool_bool
, /* imported_module_or_decl */
202 debug_false_tree_charstarstar_uhwistar
, /* die_ref_for_decl */
203 debug_nothing_tree_charstar_uhwi
, /* register_external_die */
204 debug_nothing_tree
, /* deferred_inline_function */
205 vmsdbgout_abstract_function
,
206 debug_nothing_rtx_code_label
, /* label */
207 debug_nothing_int
, /* handle_pch */
208 debug_nothing_rtx_insn
, /* var_location */
209 debug_nothing_tree
, /* inline_entry */
210 debug_nothing_tree
, /* size_function */
211 debug_nothing_void
, /* switch_text_section */
212 debug_nothing_tree_tree
, /* set_name */
213 0, /* start_end_main_source_file */
214 TYPE_SYMTAB_IS_ADDRESS
/* tree_type_symtab_field */
217 /* Definitions of defaults for assembler-dependent names of various
218 pseudo-ops and section names. */
219 #define VMS_UNALIGNED_SHORT_ASM_OP ".word"
220 #define VMS_UNALIGNED_INT_ASM_OP ".long"
221 #define VMS_UNALIGNED_LONG_ASM_OP ".long"
222 #define VMS_UNALIGNED_DOUBLE_INT_ASM_OP ".quad"
224 #define VMS_ASM_BYTE_OP ".byte"
226 #define NUMBYTES(I) ((I) < 256 ? 1 : (I) < 65536 ? 2 : 4)
228 #define NUMBYTES0(I) ((I) < 128 ? 0 : (I) < 65536 ? 2 : 4)
230 #ifndef UNALIGNED_PTR_ASM_OP
231 #define UNALIGNED_PTR_ASM_OP \
232 (PTR_SIZE == 8 ? VMS_UNALIGNED_DOUBLE_INT_ASM_OP : VMS_UNALIGNED_INT_ASM_OP)
235 #ifndef UNALIGNED_OFFSET_ASM_OP
236 #define UNALIGNED_OFFSET_ASM_OP(OFFSET) \
237 (NUMBYTES (OFFSET) == 4 \
238 ? VMS_UNALIGNED_LONG_ASM_OP \
239 : (NUMBYTES (OFFSET) == 2 ? VMS_UNALIGNED_SHORT_ASM_OP : VMS_ASM_BYTE_OP))
242 /* Definitions of defaults for formats and names of various special
243 (artificial) labels which may be generated within this file (when the -g
244 options is used and VMS_DEBUGGING_INFO is in effect. If necessary, these
245 may be overridden from within the tm.h file, but typically, overriding these
246 defaults is unnecessary. */
248 static char text_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
250 #ifndef TEXT_END_LABEL
251 #define TEXT_END_LABEL "Lvetext"
253 #ifndef FUNC_BEGIN_LABEL
254 #define FUNC_BEGIN_LABEL "LVFB"
256 #ifndef FUNC_PROLOG_LABEL
257 #define FUNC_PROLOG_LABEL "LVFP"
259 #ifndef FUNC_EPILOG_LABEL
260 #define FUNC_EPILOG_LABEL "LVEB"
262 #ifndef FUNC_END_LABEL
263 #define FUNC_END_LABEL "LVFE"
265 #ifndef BLOCK_BEGIN_LABEL
266 #define BLOCK_BEGIN_LABEL "LVBB"
268 #ifndef BLOCK_END_LABEL
269 #define BLOCK_END_LABEL "LVBE"
271 #ifndef LINE_CODE_LABEL
272 #define LINE_CODE_LABEL "LVM"
275 #ifndef ASM_OUTPUT_DEBUG_DELTA2
276 #define ASM_OUTPUT_DEBUG_DELTA2(FILE,LABEL1,LABEL2) \
279 fprintf ((FILE), "\t%s\t", VMS_UNALIGNED_SHORT_ASM_OP); \
280 assemble_name (FILE, LABEL1); \
281 fprintf (FILE, "-"); \
282 assemble_name (FILE, LABEL2); \
287 #ifndef ASM_OUTPUT_DEBUG_DELTA4
288 #define ASM_OUTPUT_DEBUG_DELTA4(FILE,LABEL1,LABEL2) \
291 fprintf ((FILE), "\t%s\t", VMS_UNALIGNED_INT_ASM_OP); \
292 assemble_name (FILE, LABEL1); \
293 fprintf (FILE, "-"); \
294 assemble_name (FILE, LABEL2); \
299 #ifndef ASM_OUTPUT_DEBUG_ADDR_DELTA
300 #define ASM_OUTPUT_DEBUG_ADDR_DELTA(FILE,LABEL1,LABEL2) \
303 fprintf ((FILE), "\t%s\t", UNALIGNED_PTR_ASM_OP); \
304 assemble_name (FILE, LABEL1); \
305 fprintf (FILE, "-"); \
306 assemble_name (FILE, LABEL2); \
311 #ifndef ASM_OUTPUT_DEBUG_ADDR
312 #define ASM_OUTPUT_DEBUG_ADDR(FILE,LABEL) \
315 fprintf ((FILE), "\t%s\t", UNALIGNED_PTR_ASM_OP); \
316 assemble_name (FILE, LABEL); \
321 #ifndef ASM_OUTPUT_DEBUG_ADDR_CONST
322 #define ASM_OUTPUT_DEBUG_ADDR_CONST(FILE,ADDR) \
323 fprintf ((FILE), "\t%s\t%s", UNALIGNED_PTR_ASM_OP, (ADDR))
326 #ifndef ASM_OUTPUT_DEBUG_DATA1
327 #define ASM_OUTPUT_DEBUG_DATA1(FILE,VALUE) \
328 fprintf ((FILE), "\t%s\t%#x", VMS_ASM_BYTE_OP, (unsigned char) VALUE)
331 #ifndef ASM_OUTPUT_DEBUG_DATA2
332 #define ASM_OUTPUT_DEBUG_DATA2(FILE,VALUE) \
333 fprintf ((FILE), "\t%s\t%#x", VMS_UNALIGNED_SHORT_ASM_OP, \
334 (unsigned short) VALUE)
337 #ifndef ASM_OUTPUT_DEBUG_DATA4
338 #define ASM_OUTPUT_DEBUG_DATA4(FILE,VALUE) \
339 fprintf ((FILE), "\t%s\t%#lx", VMS_UNALIGNED_INT_ASM_OP, \
340 (unsigned long) VALUE)
343 #ifndef ASM_OUTPUT_DEBUG_DATA
344 #define ASM_OUTPUT_DEBUG_DATA(FILE,VALUE) \
345 fprintf ((FILE), "\t%s\t%#lx", UNALIGNED_OFFSET_ASM_OP (VALUE), VALUE)
348 #ifndef ASM_OUTPUT_DEBUG_ADDR_DATA
349 #define ASM_OUTPUT_DEBUG_ADDR_DATA(FILE,VALUE) \
350 fprintf ((FILE), "\t%s\t%#lx", UNALIGNED_PTR_ASM_OP, \
351 (unsigned long) VALUE)
354 #ifndef ASM_OUTPUT_DEBUG_DATA8
355 #define ASM_OUTPUT_DEBUG_DATA8(FILE,VALUE) \
356 fprintf ((FILE), "\t%s\t%#llx", VMS_UNALIGNED_DOUBLE_INT_ASM_OP, \
357 (unsigned long long) VALUE)
360 /* This is similar to the default ASM_OUTPUT_ASCII, except that no trailing
361 newline is produced. When flag_verbose_asm is asserted, we add commentary
362 at the end of the line, so we must avoid output of a newline here. */
363 #ifndef ASM_OUTPUT_DEBUG_STRING
364 #define ASM_OUTPUT_DEBUG_STRING(FILE,P) \
367 register int slen = strlen (P); \
368 register const char *p = (P); \
370 fprintf (FILE, "\t.ascii \""); \
371 for (i = 0; i < slen; i++) \
373 register int c = p[i]; \
374 if (c == '\"' || c == '\\') \
376 if (c >= ' ' && c < 0177) \
379 fprintf (FILE, "\\%o", c); \
381 fprintf (FILE, "\""); \
386 /* Convert a reference to the assembler name of a C-level name. This
387 macro has the same effect as ASM_OUTPUT_LABELREF, but copies to
388 a string rather than writing to a file. */
389 #ifndef ASM_NAME_TO_STRING
390 #define ASM_NAME_TO_STRING(STR, NAME) \
393 if ((NAME)[0] == '*') \
394 strcpy (STR, NAME+1); \
396 strcpy (STR, NAME); \
402 /* Output the debug header HEADER. Also output COMMENT if flag_verbose_asm is
403 set. Return the header size. Just return the size if DOSIZEONLY is
407 write_debug_header (DST_HEADER
*header
, const char *comment
, int dosizeonly
)
411 ASM_OUTPUT_DEBUG_DATA2 (asm_out_file
,
412 header
->dst__header_length
.dst_w_length
);
414 if (flag_verbose_asm
)
415 fprintf (asm_out_file
, "\t%s record length", ASM_COMMENT_START
);
416 fputc ('\n', asm_out_file
);
418 ASM_OUTPUT_DEBUG_DATA2 (asm_out_file
,
419 header
->dst__header_type
.dst_w_type
);
421 if (flag_verbose_asm
)
422 fprintf (asm_out_file
, "\t%s record type (%s)", ASM_COMMENT_START
,
425 fputc ('\n', asm_out_file
);
431 /* Output the address of SYMBOL. Also output COMMENT if flag_verbose_asm is
432 set. Return the address size. Just return the size if DOSIZEONLY is
436 write_debug_addr (const char *symbol
, const char *comment
, int dosizeonly
)
440 ASM_OUTPUT_DEBUG_ADDR (asm_out_file
, symbol
);
441 if (flag_verbose_asm
)
442 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
443 fputc ('\n', asm_out_file
);
449 /* Output the single byte DATA1. Also output COMMENT if flag_verbose_asm is
450 set. Return the data size. Just return the size if DOSIZEONLY is
454 write_debug_data1 (unsigned int data1
, const char *comment
, int dosizeonly
)
458 ASM_OUTPUT_DEBUG_DATA1 (asm_out_file
, data1
);
459 if (flag_verbose_asm
)
460 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
461 fputc ('\n', asm_out_file
);
467 /* Output the single word DATA2. Also output COMMENT if flag_verbose_asm is
468 set. Return the data size. Just return the size if DOSIZEONLY is
472 write_debug_data2 (unsigned int data2
, const char *comment
, int dosizeonly
)
476 ASM_OUTPUT_DEBUG_DATA2 (asm_out_file
, data2
);
477 if (flag_verbose_asm
)
478 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
479 fputc ('\n', asm_out_file
);
485 /* Output double word DATA4. Also output COMMENT if flag_verbose_asm is set.
486 Return the data size. Just return the size if DOSIZEONLY is nonzero. */
489 write_debug_data4 (unsigned long data4
, const char *comment
, int dosizeonly
)
493 ASM_OUTPUT_DEBUG_DATA4 (asm_out_file
, data4
);
494 if (flag_verbose_asm
)
495 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
496 fputc ('\n', asm_out_file
);
502 /* Output quad word DATA8. Also output COMMENT if flag_verbose_asm is set.
503 Return the data size. Just return the size if DOSIZEONLY is nonzero. */
506 write_debug_data8 (unsigned long long data8
, const char *comment
,
511 ASM_OUTPUT_DEBUG_DATA8 (asm_out_file
, data8
);
512 if (flag_verbose_asm
)
513 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
514 fputc ('\n', asm_out_file
);
520 /* Output the difference between LABEL1 and LABEL2. Also output COMMENT if
521 flag_verbose_asm is set. Return the data size. Just return the size if
522 DOSIZEONLY is nonzero. */
525 write_debug_delta4 (const char *label1
, const char *label2
,
526 const char *comment
, int dosizeonly
)
530 ASM_OUTPUT_DEBUG_DELTA4 (asm_out_file
, label1
, label2
);
531 if (flag_verbose_asm
)
532 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
533 fputc ('\n', asm_out_file
);
539 /* Output a character string STRING. Also write COMMENT if flag_verbose_asm is
540 set. Return the string length. Just return the length if DOSIZEONLY is
544 write_debug_string (const char *string
, const char *comment
, int dosizeonly
)
548 ASM_OUTPUT_DEBUG_STRING (asm_out_file
, string
);
549 if (flag_verbose_asm
)
550 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
551 fputc ('\n', asm_out_file
);
554 return strlen (string
);
557 /* Output a module begin header and return the header size. Just return the
558 size if DOSIZEONLY is nonzero. */
561 write_modbeg (int dosizeonly
)
563 DST_MODULE_BEGIN modbeg
;
566 char *module_name
, *m
;
571 /* Assumes primary filename has Unix syntax file spec. */
572 module_name
= xstrdup (lbasename (primary_filename
));
574 m
= strrchr (module_name
, '.');
578 modnamelen
= strlen (module_name
);
579 for (i
= 0; i
< modnamelen
; i
++)
580 module_name
[i
] = TOUPPER (module_name
[i
]);
582 prodnamelen
= strlen (module_producer
);
584 modbeg
.dst_a_modbeg_header
.dst__header_length
.dst_w_length
585 = DST_K_MODBEG_SIZE
+ modnamelen
+ DST_K_MB_TRLR_SIZE
+ prodnamelen
- 1;
586 modbeg
.dst_a_modbeg_header
.dst__header_type
.dst_w_type
= DST_K_MODBEG
;
587 modbeg
.dst_b_modbeg_flags
.dst_v_modbeg_hide
= 0;
588 modbeg
.dst_b_modbeg_flags
.dst_v_modbeg_version
= 1;
589 modbeg
.dst_b_modbeg_flags
.dst_v_modbeg_unused
= 0;
590 modbeg
.dst_b_modbeg_unused
= 0;
591 modbeg
.dst_l_modbeg_language
= (DST_LANGUAGE
) module_language
;
592 modbeg
.dst_w_version_major
= DST_K_VERSION_MAJOR
;
593 modbeg
.dst_w_version_minor
= DST_K_VERSION_MINOR
;
594 modbeg
.dst_b_modbeg_name
= strlen (module_name
);
596 mb_trlr
.dst_b_compiler
= strlen (module_producer
);
598 totsize
+= write_debug_header (&modbeg
.dst_a_modbeg_header
,
599 "modbeg", dosizeonly
);
600 totsize
+= write_debug_data1 (*((char *) &modbeg
.dst_b_modbeg_flags
),
601 "flags", dosizeonly
);
602 totsize
+= write_debug_data1 (modbeg
.dst_b_modbeg_unused
,
603 "unused", dosizeonly
);
604 totsize
+= write_debug_data4 (modbeg
.dst_l_modbeg_language
,
605 "language", dosizeonly
);
606 totsize
+= write_debug_data2 (modbeg
.dst_w_version_major
,
607 "DST major version", dosizeonly
);
608 totsize
+= write_debug_data2 (modbeg
.dst_w_version_minor
,
609 "DST minor version", dosizeonly
);
610 totsize
+= write_debug_data1 (modbeg
.dst_b_modbeg_name
,
611 "length of module name", dosizeonly
);
612 totsize
+= write_debug_string (module_name
, "module name", dosizeonly
);
613 totsize
+= write_debug_data1 (mb_trlr
.dst_b_compiler
,
614 "length of compiler name", dosizeonly
);
615 totsize
+= write_debug_string (module_producer
, "compiler name", dosizeonly
);
620 /* Output a module end trailer and return the trailer size. Just return
621 the size if DOSIZEONLY is nonzero. */
624 write_modend (int dosizeonly
)
626 DST_MODULE_END modend
;
629 modend
.dst_a_modend_header
.dst__header_length
.dst_w_length
630 = DST_K_MODEND_SIZE
- 1;
631 modend
.dst_a_modend_header
.dst__header_type
.dst_w_type
= DST_K_MODEND
;
633 totsize
+= write_debug_header (&modend
.dst_a_modend_header
, "modend",
639 /* Output a routine begin header routine RTNNUM and return the header size.
640 Just return the size if DOSIZEONLY is nonzero. */
643 write_rtnbeg (int rtnnum
, int dosizeonly
)
649 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
650 DST_ROUTINE_BEGIN rtnbeg
;
653 rtnname
= funcnam_table
[rtnnum
];
654 rtnnamelen
= strlen (rtnname
);
655 rtnentryname
= concat (rtnname
, "..en", NULL
);
657 if (!strcmp (rtnname
, "main"))
660 const char *go
= "TRANSFER$BREAK$GO";
662 /* This command isn't documented in DSTRECORDS, so it's made to
663 look like what DEC C does */
665 /* header size - 1st byte + flag byte + STO_LW size
666 + string count byte + string length */
667 header
.dst__header_length
.dst_w_length
668 = DST_K_DST_HEADER_SIZE
- 1 + 1 + 4 + 1 + strlen (go
);
669 header
.dst__header_type
.dst_w_type
= DST_K_TBG
;
671 totsize
+= write_debug_header (&header
, "transfer", dosizeonly
);
673 /* I think this is a flag byte, but I don't know what this flag means */
674 totsize
+= write_debug_data1 (0x1, "flags ???", dosizeonly
);
676 /* Routine Begin PD Address */
677 totsize
+= write_debug_addr (rtnname
, "main procedure descriptor",
679 totsize
+= write_debug_data1 (strlen (go
), "length of main_name",
681 totsize
+= write_debug_string (go
, "main name", dosizeonly
);
684 /* The header length never includes the length byte. */
685 rtnbeg
.dst_a_rtnbeg_header
.dst__header_length
.dst_w_length
686 = DST_K_RTNBEG_SIZE
+ rtnnamelen
- 1;
687 rtnbeg
.dst_a_rtnbeg_header
.dst__header_type
.dst_w_type
= DST_K_RTNBEG
;
688 rtnbeg
.dst_b_rtnbeg_flags
.dst_v_rtnbeg_unused
= 0;
689 rtnbeg
.dst_b_rtnbeg_flags
.dst_v_rtnbeg_unalloc
= 0;
690 rtnbeg
.dst_b_rtnbeg_flags
.dst_v_rtnbeg_prototype
= 0;
691 rtnbeg
.dst_b_rtnbeg_flags
.dst_v_rtnbeg_inlined
= 0;
692 rtnbeg
.dst_b_rtnbeg_flags
.dst_v_rtnbeg_no_call
= 1;
693 rtnbeg
.dst_b_rtnbeg_name
= rtnnamelen
;
695 totsize
+= write_debug_header (&rtnbeg
.dst_a_rtnbeg_header
, "rtnbeg",
697 totsize
+= write_debug_data1 (*((char *) &rtnbeg
.dst_b_rtnbeg_flags
),
698 "flags", dosizeonly
);
700 /* Routine Begin Address */
701 totsize
+= write_debug_addr (rtnentryname
, "routine entry name", dosizeonly
);
703 /* Routine Begin PD Address */
704 totsize
+= write_debug_addr (rtnname
, "routine procedure descriptor",
707 /* Routine Begin Name */
708 totsize
+= write_debug_data1 (rtnbeg
.dst_b_rtnbeg_name
,
709 "length of routine name", dosizeonly
);
711 totsize
+= write_debug_string (rtnname
, "routine name", dosizeonly
);
715 if (debug_info_level
> DINFO_LEVEL_TERSE
)
717 prolog
.dst_a_prolog_header
.dst__header_length
.dst_w_length
718 = DST_K_PROLOG_SIZE
- 1;
719 prolog
.dst_a_prolog_header
.dst__header_type
.dst_w_type
= DST_K_PROLOG
;
721 totsize
+= write_debug_header (&prolog
.dst_a_prolog_header
, "prolog",
724 ASM_GENERATE_INTERNAL_LABEL
725 (label
, FUNC_PROLOG_LABEL
,
726 funcnum_table
[rtnnum
]);
727 totsize
+= write_debug_addr (label
, "prolog breakpoint addr",
734 /* Output a routine end trailer for routine RTNNUM and return the header size.
735 Just return the size if DOSIZEONLY is nonzero. */
738 write_rtnend (int rtnnum
, int dosizeonly
)
740 DST_ROUTINE_END rtnend
;
741 char label1
[MAX_ARTIFICIAL_LABEL_BYTES
];
742 char label2
[MAX_ARTIFICIAL_LABEL_BYTES
];
747 rtnend
.dst_a_rtnend_header
.dst__header_length
.dst_w_length
748 = DST_K_RTNEND_SIZE
- 1;
749 rtnend
.dst_a_rtnend_header
.dst__header_type
.dst_w_type
= DST_K_RTNEND
;
750 rtnend
.dst_b_rtnend_unused
= 0;
751 rtnend
.dst_l_rtnend_size
= 0; /* Calculated below. */
753 totsize
+= write_debug_header (&rtnend
.dst_a_rtnend_header
, "rtnend",
755 totsize
+= write_debug_data1 (rtnend
.dst_b_rtnend_unused
, "unused",
758 ASM_GENERATE_INTERNAL_LABEL
759 (label1
, FUNC_BEGIN_LABEL
,
760 funcnum_table
[rtnnum
]);
761 ASM_GENERATE_INTERNAL_LABEL
762 (label2
, FUNC_END_LABEL
,
763 funcnum_table
[rtnnum
]);
764 totsize
+= write_debug_delta4 (label2
, label1
, "routine size", dosizeonly
);
769 #define K_DELTA_PC(I) \
770 ((I) < 128 ? -(I) : (I) < 65536 ? DST_K_DELTA_PC_W : DST_K_DELTA_PC_L)
772 #define K_SET_LINUM(I) \
773 ((I) < 256 ? DST_K_SET_LINUM_B \
774 : (I) < 65536 ? DST_K_SET_LINUM : DST_K_SET_LINUM_L)
776 #define K_INCR_LINUM(I) \
777 ((I) < 256 ? DST_K_INCR_LINUM \
778 : (I) < 65536 ? DST_K_INCR_LINUM_W : DST_K_INCR_LINUM_L)
780 /* Output the PC to line number correlations and return the size. Just return
781 the size if DOSIZEONLY is nonzero */
784 write_pclines (int dosizeonly
)
791 DST_LINE_NUM_HEADER line_num
;
792 DST_PCLINE_COMMANDS pcline
;
793 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
794 char lastlabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
798 max_line
= file_info_table
[1].max_line
;
799 file_info_table
[1].listing_line_start
= linestart
;
800 linestart
= linestart
+ ((max_line
/ 100000) + 1) * 100000;
802 for (i
= 2; i
< file_info_table_in_use
; i
++)
804 max_line
= file_info_table
[i
].max_line
;
805 file_info_table
[i
].listing_line_start
= linestart
;
806 linestart
= linestart
+ ((max_line
/ 10000) + 1) * 10000;
809 /* Set starting address to beginning of text section. */
810 line_num
.dst_a_line_num_header
.dst__header_length
.dst_w_length
= 8;
811 line_num
.dst_a_line_num_header
.dst__header_type
.dst_w_type
= DST_K_LINE_NUM
;
812 pcline
.dst_b_pcline_command
= DST_K_SET_ABS_PC
;
814 totsize
+= write_debug_header (&line_num
.dst_a_line_num_header
,
815 "line_num", dosizeonly
);
816 totsize
+= write_debug_data1 (pcline
.dst_b_pcline_command
,
817 "line_num (SET ABS PC)", dosizeonly
);
823 ASM_OUTPUT_DEBUG_ADDR (asm_out_file
, TEXT_SECTION_ASM_OP
);
824 if (flag_verbose_asm
)
825 fprintf (asm_out_file
, "\t%s line_num", ASM_COMMENT_START
);
826 fputc ('\n', asm_out_file
);
829 fn
= line_info_table
[1].dst_file_num
;
830 ln
= (file_info_table
[fn
].listing_line_start
831 + line_info_table
[1].dst_line_num
);
832 line_num
.dst_a_line_num_header
.dst__header_length
.dst_w_length
= 4 + 4;
833 pcline
.dst_b_pcline_command
= DST_K_SET_LINUM_L
;
835 totsize
+= write_debug_header (&line_num
.dst_a_line_num_header
,
836 "line_num", dosizeonly
);
837 totsize
+= write_debug_data1 (pcline
.dst_b_pcline_command
,
838 "line_num (SET LINUM LONG)", dosizeonly
);
840 sprintf (buff
, "line_num (%d)", ln
? ln
- 1 : 0);
841 totsize
+= write_debug_data4 (ln
? ln
- 1 : 0, buff
, dosizeonly
);
844 strcpy (lastlabel
, TEXT_SECTION_ASM_OP
);
845 for (i
= 1; i
< line_info_table_in_use
; i
++)
849 fn
= line_info_table
[i
].dst_file_num
;
850 ln
= (file_info_table
[fn
].listing_line_start
851 + line_info_table
[i
].dst_line_num
);
854 extrabytes
= 5; /* NUMBYTES (ln - lastln - 1) + 1; */
855 else if (ln
<= lastln
)
856 extrabytes
= 5; /* NUMBYTES (ln - 1) + 1; */
860 line_num
.dst_a_line_num_header
.dst__header_length
.dst_w_length
863 totsize
+= write_debug_header
864 (&line_num
.dst_a_line_num_header
, "line_num", dosizeonly
);
868 int lndif
= ln
- lastln
- 1;
870 /* K_INCR_LINUM (lndif); */
871 pcline
.dst_b_pcline_command
= DST_K_INCR_LINUM_L
;
873 totsize
+= write_debug_data1 (pcline
.dst_b_pcline_command
,
874 "line_num (INCR LINUM LONG)",
877 sprintf (buff
, "line_num (%d)", lndif
);
878 totsize
+= write_debug_data4 (lndif
, buff
, dosizeonly
);
880 else if (ln
<= lastln
)
882 /* K_SET_LINUM (ln-1); */
883 pcline
.dst_b_pcline_command
= DST_K_SET_LINUM_L
;
885 totsize
+= write_debug_data1 (pcline
.dst_b_pcline_command
,
886 "line_num (SET LINUM LONG)",
889 sprintf (buff
, "line_num (%d)", ln
- 1);
890 totsize
+= write_debug_data4 (ln
- 1, buff
, dosizeonly
);
893 pcline
.dst_b_pcline_command
= DST_K_DELTA_PC_L
;
895 totsize
+= write_debug_data1 (pcline
.dst_b_pcline_command
,
896 "line_num (DELTA PC LONG)", dosizeonly
);
898 ASM_GENERATE_INTERNAL_LABEL (label
, LINE_CODE_LABEL
, i
);
899 totsize
+= write_debug_delta4 (label
, lastlabel
, "increment line_num",
903 strcpy (lastlabel
, label
);
909 /* Output a source correlation for file FILEID using information saved in
910 FILE_INFO_ENTRY and return the size. Just return the size if DOSIZEONLY is
914 write_srccorr (int fileid
, dst_file_info_entry file_info_entry
,
917 int src_command_size
;
918 int linesleft
= file_info_entry
.max_line
;
919 int linestart
= file_info_entry
.listing_line_start
;
920 int flen
= strlen (file_info_entry
.file_name
);
922 DST_SOURCE_CORR src_header
;
923 DST_SRC_COMMAND src_command
;
924 DST_SRC_COMMAND src_command_sf
;
925 DST_SRC_COMMAND src_command_sl
;
926 DST_SRC_COMMAND src_command_sr
;
927 DST_SRC_COMMAND src_command_dl
;
928 DST_SRC_CMDTRLR src_cmdtrlr
;
934 src_header
.dst_a_source_corr_header
.dst__header_length
.dst_w_length
935 = DST_K_SOURCE_CORR_HEADER_SIZE
+ 1 - 1;
936 src_header
.dst_a_source_corr_header
.dst__header_type
.dst_w_type
938 src_command
.dst_b_src_command
= DST_K_SRC_FORMFEED
;
940 totsize
+= write_debug_header (&src_header
.dst_a_source_corr_header
,
941 "source corr", dosizeonly
);
943 totsize
+= write_debug_data1 (src_command
.dst_b_src_command
,
944 "source_corr (SRC FORMFEED)",
949 = DST_K_SRC_COMMAND_SIZE
+ flen
+ DST_K_SRC_CMDTRLR_SIZE
;
950 src_command
.dst_b_src_command
= DST_K_SRC_DECLFILE
;
951 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_length
952 = src_command_size
- 2;
953 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_flags
= 0;
954 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_w_src_df_fileid
956 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_q_src_df_rms_cdt
957 = file_info_entry
.cdt
;
958 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_l_src_df_rms_ebk
959 = file_info_entry
.ebk
;
960 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_w_src_df_rms_ffb
961 = file_info_entry
.ffb
;
962 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_rms_rfo
963 = file_info_entry
.rfo
;
964 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_filename
967 src_header
.dst_a_source_corr_header
.dst__header_length
.dst_w_length
968 = DST_K_SOURCE_CORR_HEADER_SIZE
+ src_command_size
- 1;
969 src_header
.dst_a_source_corr_header
.dst__header_type
.dst_w_type
972 src_cmdtrlr
.dst_b_src_df_libmodname
= 0;
974 totsize
+= write_debug_header (&src_header
.dst_a_source_corr_header
,
975 "source corr", dosizeonly
);
976 totsize
+= write_debug_data1 (src_command
.dst_b_src_command
,
977 "source_corr (DECL SRC FILE)", dosizeonly
);
978 totsize
+= write_debug_data1
979 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_length
,
980 "source_corr (length)", dosizeonly
);
982 totsize
+= write_debug_data1
983 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_flags
,
984 "source_corr (flags)", dosizeonly
);
986 totsize
+= write_debug_data2
987 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_w_src_df_fileid
,
988 "source_corr (fileid)", dosizeonly
);
990 totsize
+= write_debug_data8
991 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_q_src_df_rms_cdt
,
992 "source_corr (creation date)", dosizeonly
);
994 totsize
+= write_debug_data4
995 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_l_src_df_rms_ebk
,
996 "source_corr (EOF block number)", dosizeonly
);
998 totsize
+= write_debug_data2
999 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_w_src_df_rms_ffb
,
1000 "source_corr (first free byte)", dosizeonly
);
1002 totsize
+= write_debug_data1
1003 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_rms_rfo
,
1004 "source_corr (record and file organization)", dosizeonly
);
1006 totsize
+= write_debug_data1
1007 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_filename
,
1008 "source_corr (filename length)", dosizeonly
);
1010 totsize
+= write_debug_string (remap_debug_filename (
1011 file_info_entry
.file_name
),
1012 "source file name", dosizeonly
);
1013 totsize
+= write_debug_data1 (src_cmdtrlr
.dst_b_src_df_libmodname
,
1014 "source_corr (libmodname)", dosizeonly
);
1016 src_command_sf
.dst_b_src_command
= DST_K_SRC_SETFILE
;
1017 src_command_sf
.dst_a_src_cmd_fields
.dst_w_src_unsword
= fileid
;
1019 src_command_sr
.dst_b_src_command
= DST_K_SRC_SETREC_W
;
1020 src_command_sr
.dst_a_src_cmd_fields
.dst_w_src_unsword
= 1;
1022 src_command_sl
.dst_b_src_command
= DST_K_SRC_SETLNUM_L
;
1023 src_command_sl
.dst_a_src_cmd_fields
.dst_l_src_unslong
= linestart
+ 1;
1025 src_command_dl
.dst_b_src_command
= DST_K_SRC_DEFLINES_W
;
1027 if (linesleft
> 65534)
1028 linesleft
= linesleft
- 65534, linestodo
= 65534;
1030 linestodo
= linesleft
, linesleft
= 0;
1032 src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
= linestodo
;
1034 src_header
.dst_a_source_corr_header
.dst__header_length
.dst_w_length
1035 = DST_K_SOURCE_CORR_HEADER_SIZE
+ 3 + 3 + 5 + 3 - 1;
1036 src_header
.dst_a_source_corr_header
.dst__header_type
.dst_w_type
1039 if (src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
)
1041 totsize
+= write_debug_header (&src_header
.dst_a_source_corr_header
,
1042 "source corr", dosizeonly
);
1044 totsize
+= write_debug_data1 (src_command_sf
.dst_b_src_command
,
1045 "source_corr (src setfile)", dosizeonly
);
1047 totsize
+= write_debug_data2
1048 (src_command_sf
.dst_a_src_cmd_fields
.dst_w_src_unsword
,
1049 "source_corr (fileid)", dosizeonly
);
1051 totsize
+= write_debug_data1 (src_command_sr
.dst_b_src_command
,
1052 "source_corr (setrec)", dosizeonly
);
1054 totsize
+= write_debug_data2
1055 (src_command_sr
.dst_a_src_cmd_fields
.dst_w_src_unsword
,
1056 "source_corr (recnum)", dosizeonly
);
1058 totsize
+= write_debug_data1 (src_command_sl
.dst_b_src_command
,
1059 "source_corr (setlnum)", dosizeonly
);
1061 totsize
+= write_debug_data4
1062 (src_command_sl
.dst_a_src_cmd_fields
.dst_l_src_unslong
,
1063 "source_corr (linenum)", dosizeonly
);
1065 totsize
+= write_debug_data1 (src_command_dl
.dst_b_src_command
,
1066 "source_corr (deflines)", dosizeonly
);
1068 sprintf (buff
, "source_corr (%d)",
1069 src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
);
1070 totsize
+= write_debug_data2
1071 (src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
,
1074 while (linesleft
> 0)
1076 src_header
.dst_a_source_corr_header
.dst__header_length
.dst_w_length
1077 = DST_K_SOURCE_CORR_HEADER_SIZE
+ 3 - 1;
1078 src_header
.dst_a_source_corr_header
.dst__header_type
.dst_w_type
1080 src_command_dl
.dst_b_src_command
= DST_K_SRC_DEFLINES_W
;
1082 if (linesleft
> 65534)
1083 linesleft
= linesleft
- 65534, linestodo
= 65534;
1085 linestodo
= linesleft
, linesleft
= 0;
1087 src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
= linestodo
;
1089 totsize
+= write_debug_header (&src_header
.dst_a_source_corr_header
,
1090 "source corr", dosizeonly
);
1091 totsize
+= write_debug_data1 (src_command_dl
.dst_b_src_command
,
1092 "source_corr (deflines)", dosizeonly
);
1093 sprintf (buff
, "source_corr (%d)",
1094 src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
);
1095 totsize
+= write_debug_data2
1096 (src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
,
1104 /* Output all the source correlation entries and return the size. Just return
1105 the size if DOSIZEONLY is nonzero. */
1108 write_srccorrs (int dosizeonly
)
1113 for (i
= 1; i
< file_info_table_in_use
; i
++)
1114 totsize
+= write_srccorr (i
, file_info_table
[i
], dosizeonly
);
1119 /* Output a marker (i.e. a label) for the beginning of a function, before
1123 vmsdbgout_begin_prologue (unsigned int line
, unsigned int column
,
1126 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1128 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1129 (*dwarf2_debug_hooks
.begin_prologue
) (line
, column
, file
);
1131 if (debug_info_level
> DINFO_LEVEL_NONE
)
1133 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_BEGIN_LABEL
,
1134 current_function_funcdef_no
);
1135 ASM_OUTPUT_LABEL (asm_out_file
, label
);
1139 /* Output a marker (i.e. a label) for the beginning of a function, after
1143 vmsdbgout_end_prologue (unsigned int line
, const char *file
)
1145 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1147 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1148 (*dwarf2_debug_hooks
.end_prologue
) (line
, file
);
1150 if (debug_info_level
> DINFO_LEVEL_TERSE
)
1152 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_PROLOG_LABEL
,
1153 current_function_funcdef_no
);
1154 ASM_OUTPUT_LABEL (asm_out_file
, label
);
1156 /* VMS PCA expects every PC range to correlate to some line and file. */
1157 vmsdbgout_write_source_line (line
, file
, 0, true);
1161 /* No output for VMS debug, but make obligatory call to Dwarf2 debug */
1164 vmsdbgout_end_function (unsigned int line
)
1166 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1167 (*dwarf2_debug_hooks
.end_function
) (line
);
1170 /* Output a marker (i.e. a label) for the beginning of the epilogue.
1171 This gets called *before* the epilogue code has been generated. */
1174 vmsdbgout_begin_epilogue (unsigned int line
, const char *file
)
1176 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1177 static int save_current_function_funcdef_no
= -1;
1179 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1180 (*dwarf2_debug_hooks
.begin_epilogue
) (line
, file
);
1182 if (debug_info_level
> DINFO_LEVEL_NONE
)
1184 if (save_current_function_funcdef_no
!= current_function_funcdef_no
)
1186 /* Output a label to mark the endpoint of the code generated for this
1188 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_EPILOG_LABEL
,
1189 current_function_funcdef_no
);
1191 ASM_OUTPUT_LABEL (asm_out_file
, label
);
1193 save_current_function_funcdef_no
= current_function_funcdef_no
;
1195 /* VMS PCA expects every PC range to correlate to some line and
1197 vmsdbgout_write_source_line (line
, file
, 0, true);
1202 /* Output a marker (i.e. a label) for the absolute end of the generated code
1203 for a function definition. This gets called *after* the epilogue code has
1207 vmsdbgout_end_epilogue (unsigned int line
, const char *file
)
1209 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1211 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1212 (*dwarf2_debug_hooks
.end_epilogue
) (line
, file
);
1214 if (debug_info_level
> DINFO_LEVEL_NONE
)
1216 /* Output a label to mark the endpoint of the code generated for this
1218 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_END_LABEL
,
1219 current_function_funcdef_no
);
1220 ASM_OUTPUT_LABEL (asm_out_file
, label
);
1222 /* VMS PCA expects every PC range to correlate to some line and file. */
1223 vmsdbgout_write_source_line (line
, file
, 0, true);
1227 /* Output a marker (i.e. a label) for the beginning of the generated code for
1231 vmsdbgout_begin_block (register unsigned line
, register unsigned blocknum
)
1233 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1234 (*dwarf2_debug_hooks
.begin_block
) (line
, blocknum
);
1236 if (debug_info_level
> DINFO_LEVEL_TERSE
)
1237 targetm
.asm_out
.internal_label (asm_out_file
, BLOCK_BEGIN_LABEL
, blocknum
);
1240 /* Output a marker (i.e. a label) for the end of the generated code for a
1244 vmsdbgout_end_block (register unsigned line
, register unsigned blocknum
)
1246 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1247 (*dwarf2_debug_hooks
.end_block
) (line
, blocknum
);
1249 if (debug_info_level
> DINFO_LEVEL_TERSE
)
1250 targetm
.asm_out
.internal_label (asm_out_file
, BLOCK_END_LABEL
, blocknum
);
1253 /* Not implemented in VMS Debug. */
1256 vmsdbgout_ignore_block (const_tree block
)
1260 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1261 retval
= (*dwarf2_debug_hooks
.ignore_block
) (block
);
1266 /* Add an entry for function DECL into the funcnam_table. */
1269 vmsdbgout_begin_function (tree decl
)
1271 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
1273 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1274 (*dwarf2_debug_hooks
.begin_function
) (decl
);
1276 /* Add the new entry to the end of the function name table. */
1277 funcnam_table
.safe_push (xstrdup (name
));
1278 funcnum_table
.safe_push (current_function_funcdef_no
);
1281 static char fullname_buff
[4096];
1283 /* Return the full file specification for FILENAME. The specification must be
1284 in VMS syntax in order to be processed by VMS Debug. */
1287 full_name (const char *filename
)
1290 FILE *fp
= fopen (filename
, "r");
1292 fgetname (fp
, fullname_buff
, 1);
1295 /* Unix paths really mess up VMS debug. Better to just output the
1297 strcpy (fullname_buff
, filename
);
1300 return fullname_buff
;
1303 /* Lookup a filename (in the list of filenames that we know about here in
1304 vmsdbgout.c) and return its "index". The index of each (known) filename is
1305 just a unique number which is associated with only that one filename. We
1306 need such numbers for the sake of generating labels and references
1307 to those files numbers. If the filename given as an argument is not
1308 found in our current list, add it to the list and assign it the next
1309 available unique index number. In order to speed up searches, we remember
1310 the index of the filename was looked up last. This handles the majority of
1314 lookup_filename (const char *file_name
)
1316 static unsigned int last_file_lookup_index
= 0;
1318 register unsigned i
;
1327 fnam
= full_name (file_name
);
1329 /* Check to see if the file name that was searched on the previous call
1330 matches this file name. If so, return the index. */
1331 if (last_file_lookup_index
!= 0)
1333 fn
= file_info_table
[last_file_lookup_index
].file_name
;
1334 if (strcmp (fnam
, fn
) == 0)
1335 return last_file_lookup_index
;
1338 /* Didn't match the previous lookup, search the table */
1339 for (i
= 1; i
< file_info_table_in_use
; ++i
)
1341 fn
= file_info_table
[i
].file_name
;
1342 if (strcmp (fnam
, fn
) == 0)
1344 last_file_lookup_index
= i
;
1349 /* Prepare to add a new table entry by making sure there is enough space in
1350 the table to do so. If not, expand the current table. */
1351 if (file_info_table_in_use
== file_info_table_allocated
)
1354 file_info_table_allocated
+= FILE_TABLE_INCREMENT
;
1355 file_info_table
= XRESIZEVEC (dst_file_info_entry
, file_info_table
,
1356 file_info_table_allocated
);
1359 if (vms_file_stats_name (file_name
, &cdt
, &siz
, &rfo
, &ver
) == 0)
1361 ebk
= siz
/ 512 + 1;
1362 ffb
= siz
- ((siz
/ 512) * 512);
1365 /* Add the new entry to the end of the filename table. */
1366 file_info_table
[file_info_table_in_use
].file_name
= xstrdup (fnam
);
1367 file_info_table
[file_info_table_in_use
].max_line
= 0;
1368 file_info_table
[file_info_table_in_use
].cdt
= cdt
;
1369 file_info_table
[file_info_table_in_use
].ebk
= ebk
;
1370 file_info_table
[file_info_table_in_use
].ffb
= ffb
;
1371 file_info_table
[file_info_table_in_use
].rfo
= rfo
;
1373 last_file_lookup_index
= file_info_table_in_use
++;
1374 return last_file_lookup_index
;
1377 /* Output a label to mark the beginning of a source code line entry
1378 and record information relating to this source line, in
1379 'line_info_table' for later output of the .debug_line section. */
1382 vmsdbgout_write_source_line (unsigned line
, const char *filename
,
1383 int /* discriminator */, bool /* is_stmt */)
1385 dst_line_info_ref line_info
;
1387 targetm
.asm_out
.internal_label (asm_out_file
, LINE_CODE_LABEL
,
1388 line_info_table_in_use
);
1390 /* Expand the line info table if necessary. */
1391 if (line_info_table_in_use
== line_info_table_allocated
)
1393 line_info_table_allocated
+= LINE_INFO_TABLE_INCREMENT
;
1394 line_info_table
= XRESIZEVEC (dst_line_info_entry
, line_info_table
,
1395 line_info_table_allocated
);
1398 /* Add the new entry at the end of the line_info_table. */
1399 line_info
= &line_info_table
[line_info_table_in_use
++];
1400 line_info
->dst_file_num
= lookup_filename (filename
);
1401 line_info
->dst_line_num
= line
;
1402 if (line
> file_info_table
[line_info
->dst_file_num
].max_line
)
1403 file_info_table
[line_info
->dst_file_num
].max_line
= line
;
1407 vmsdbgout_source_line (register unsigned line
, unsigned int column
,
1408 register const char *filename
,
1409 int discriminator
, bool is_stmt
)
1411 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1412 (*dwarf2_debug_hooks
.source_line
) (line
, column
, filename
, discriminator
,
1415 if (debug_info_level
>= DINFO_LEVEL_TERSE
)
1416 vmsdbgout_write_source_line (line
, filename
, discriminator
, is_stmt
);
1419 /* Record the beginning of a new source file, for later output.
1420 At present, unimplemented. */
1423 vmsdbgout_start_source_file (unsigned int lineno
, const char *filename
)
1425 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1426 (*dwarf2_debug_hooks
.start_source_file
) (lineno
, filename
);
1429 /* Record the end of a source file, for later output.
1430 At present, unimplemented. */
1433 vmsdbgout_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED
)
1435 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1436 (*dwarf2_debug_hooks
.end_source_file
) (lineno
);
1439 /* Set up for Debug output at the start of compilation. */
1442 vmsdbgout_init (const char *filename
)
1444 const char *language_string
= lang_hooks
.name
;
1446 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1447 (*dwarf2_debug_hooks
.init
) (filename
);
1449 if (debug_info_level
== DINFO_LEVEL_NONE
)
1452 /* Remember the name of the primary input file. */
1453 primary_filename
= filename
;
1455 /* Allocate the initial hunk of the file_info_table. */
1456 file_info_table
= XCNEWVEC (dst_file_info_entry
, FILE_TABLE_INCREMENT
);
1457 file_info_table_allocated
= FILE_TABLE_INCREMENT
;
1458 /* Skip the first entry - file numbers begin at 1. */
1459 file_info_table_in_use
= 1;
1461 funcnam_table
.create (FUNC_TABLE_INITIAL
);
1462 funcnum_table
.create (FUNC_TABLE_INITIAL
);
1464 /* Allocate the initial hunk of the line_info_table. */
1465 line_info_table
= XCNEWVEC (dst_line_info_entry
, LINE_INFO_TABLE_INCREMENT
);
1466 line_info_table_allocated
= LINE_INFO_TABLE_INCREMENT
;
1467 /* zero-th entry is allocated, but unused */
1468 line_info_table_in_use
= 1;
1470 lookup_filename (primary_filename
);
1473 module_language
= DST_K_C
;
1474 else if (lang_GNU_CXX ())
1475 module_language
= DST_K_CXX
;
1476 else if (!strcmp (language_string
, "GNU Ada"))
1477 module_language
= DST_K_ADA
;
1478 else if (!strcmp (language_string
, "GNU F77"))
1479 module_language
= DST_K_FORTRAN
;
1481 module_language
= DST_K_UNKNOWN
;
1483 module_producer
= concat (language_string
, " ", version_string
, NULL
);
1485 ASM_GENERATE_INTERNAL_LABEL (text_end_label
, TEXT_END_LABEL
, 0);
1489 /* Not implemented in VMS Debug. */
1492 vmsdbgout_assembly_start (void)
1494 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1495 (*dwarf2_debug_hooks
.assembly_start
) ();
1498 /* Not implemented in VMS Debug. */
1501 vmsdbgout_define (unsigned int lineno
, const char *buffer
)
1503 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1504 (*dwarf2_debug_hooks
.define
) (lineno
, buffer
);
1507 /* Not implemented in VMS Debug. */
1510 vmsdbgout_undef (unsigned int lineno
, const char *buffer
)
1512 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1513 (*dwarf2_debug_hooks
.undef
) (lineno
, buffer
);
1516 /* Not implemented in VMS Debug. */
1519 vmsdbgout_function_decl (tree decl
)
1521 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1522 (*dwarf2_debug_hooks
.function_decl
) (decl
);
1525 /* Not implemented in VMS Debug. */
1528 vmsdbgout_early_global_decl (tree decl
)
1530 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1531 (*dwarf2_debug_hooks
.early_global_decl
) (decl
);
1534 /* Not implemented in VMS Debug. */
1537 vmsdbgout_late_global_decl (tree decl
)
1539 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1540 (*dwarf2_debug_hooks
.late_global_decl
) (decl
);
1543 /* Not implemented in VMS Debug. */
1546 vmsdbgout_type_decl (tree decl
, int local
)
1548 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1549 (*dwarf2_debug_hooks
.type_decl
) (decl
, local
);
1552 /* Not implemented in VMS Debug. */
1555 vmsdbgout_abstract_function (tree decl
)
1557 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1558 (*dwarf2_debug_hooks
.outlining_inline_function
) (decl
);
1562 vmsdbgout_early_finish (const char *filename
)
1564 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1565 (*dwarf2_debug_hooks
.early_finish
) (filename
);
1568 /* Output stuff that Debug requires at the end of every file and generate the
1569 VMS Debug debugging info. */
1572 vmsdbgout_finish (const char *filename ATTRIBUTE_UNUSED
)
1574 unsigned int i
, ifunc
;
1577 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1578 (*dwarf2_debug_hooks
.finish
) (filename
);
1580 if (debug_info_level
== DINFO_LEVEL_NONE
)
1583 /* Output a terminator label for the .text section. */
1584 switch_to_section (text_section
);
1585 targetm
.asm_out
.internal_label (asm_out_file
, TEXT_END_LABEL
, 0);
1587 /* Output debugging information.
1588 Warning! Do not change the name of the .vmsdebug section without
1589 changing it in the assembler also. */
1590 switch_to_section (get_named_section (NULL
, ".vmsdebug", 0));
1591 ASM_OUTPUT_ALIGN (asm_out_file
, 0);
1593 totsize
= write_modbeg (1);
1594 FOR_EACH_VEC_ELT (funcnum_table
, i
, ifunc
)
1596 totsize
+= write_rtnbeg (i
, 1);
1597 totsize
+= write_rtnend (i
, 1);
1599 totsize
+= write_pclines (1);
1602 FOR_EACH_VEC_ELT (funcnum_table
, i
, ifunc
)
1604 write_rtnbeg (i
, 0);
1605 write_rtnend (i
, 0);
1609 if (debug_info_level
> DINFO_LEVEL_TERSE
)
1611 totsize
= write_srccorrs (1);
1615 totsize
= write_modend (1);
1619 /* Need for both Dwarf2 on IVMS and VMS Debug on AVMS */
1622 #define __NEW_STARLET 1
1623 #include <vms/rms.h>
1624 #include <vms/atrdef.h>
1625 #include <vms/fibdef.h>
1626 #include <vms/stsdef.h>
1627 #include <vms/iodef.h>
1628 #include <vms/fatdef.h>
1629 #include <vms/descrip.h>
1630 #include <unixlib.h>
1634 /* descrip.h doesn't have everything ... */
1635 typedef struct fibdef
* __fibdef_ptr32
__attribute__ (( mode (SI
) ));
1636 struct dsc$descriptor_fib
1638 unsigned int fib$l_len
;
1639 __fibdef_ptr32 fib$l_addr
;
1642 /* I/O Status Block. */
1645 unsigned short status
, count
;
1646 unsigned int devdep
;
1649 static char *tryfile
;
1651 /* Variable length string. */
1655 char string
[NAM$C_MAXRSS
+1];
1658 static char filename_buff
[MAXPATH
];
1659 static char vms_filespec
[MAXPATH
];
1661 /* Callback function for filespec style conversion. */
1664 translate_unix (char *name
, int type ATTRIBUTE_UNUSED
)
1666 strncpy (filename_buff
, name
, MAXPATH
);
1667 filename_buff
[MAXPATH
- 1] = (char) 0;
1671 /* Wrapper for DECC function that converts a Unix filespec
1672 to VMS style filespec. */
1675 to_vms_file_spec (char *filespec
)
1677 strncpy (vms_filespec
, "", MAXPATH
);
1678 decc$
to_vms (filespec
, translate_unix
, 1, 1);
1679 strncpy (vms_filespec
, filename_buff
, MAXPATH
);
1681 vms_filespec
[MAXPATH
- 1] = (char) 0;
1683 return vms_filespec
;
1687 #define VMS_EPOCH_OFFSET 35067168000000000LL
1688 #define VMS_GRANULARITY_FACTOR 10000000
1691 /* Return VMS file date, size, format, version given a name. */
1694 vms_file_stats_name (const char *filename
, long long *cdt
, long *siz
, char *rfo
,
1701 unsigned long long create
;
1703 char ascnamebuff
[256];
1707 { ATR$S_CREDATE
, ATR$C_CREDATE
, &create
},
1708 { ATR$S_RECATTR
, ATR$C_RECATTR
, &recattr
},
1709 { ATR$S_ASCNAME
, ATR$C_ASCNAME
, &ascnamebuff
},
1714 struct dsc$descriptor_fib fibdsc
= {sizeof (fib
), (void *) &fib
};
1719 unsigned short chan
;
1721 struct vstring file
;
1722 struct dsc$descriptor_s filedsc
1723 = {NAM$C_MAXRSS
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, (void *) file
.string
};
1724 struct vstring device
;
1725 struct dsc$descriptor_s devicedsc
1726 = {NAM$C_MAXRSS
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, (void *) device
.string
};
1727 struct vstring result
;
1728 struct dsc$descriptor_s resultdsc
1729 = {NAM$C_MAXRSS
, DSC$K_DTYPE_VT
, DSC$K_CLASS_VS
, (void *) result
.string
};
1731 if (strcmp (filename
, "<internal>") == 0
1732 || strcmp (filename
, "<built-in>") == 0)
1749 tryfile
= to_vms_file_spec (filename
);
1751 /* Allocate and initialize a FAB and NAM structures. */
1755 nam
.nam$l_esa
= file
.string
;
1756 nam
.nam$b_ess
= NAM$C_MAXRSS
;
1757 nam
.nam$l_rsa
= result
.string
;
1758 nam
.nam$b_rss
= NAM$C_MAXRSS
;
1759 fab
.fab$l_fna
= tryfile
;
1760 fab
.fab$b_fns
= strlen (tryfile
);
1761 fab
.fab$l_nam
= &nam
;
1763 /* Validate filespec syntax and device existence. */
1764 status
= SYS$
PARSE (&fab
, 0, 0);
1765 if ((status
& 1) != 1)
1768 file
.string
[nam
.nam$b_esl
] = 0;
1770 /* Find matching filespec. */
1771 status
= SYS$
SEARCH (&fab
, 0, 0);
1772 if ((status
& 1) != 1)
1775 file
.string
[nam
.nam$b_esl
] = 0;
1776 result
.string
[result
.length
=nam
.nam$b_rsl
] = 0;
1778 /* Get the device name and assign an IO channel. */
1779 strncpy (device
.string
, nam
.nam$l_dev
, nam
.nam$b_dev
);
1780 devicedsc
.dsc$w_length
= nam
.nam$b_dev
;
1782 status
= SYS$
ASSIGN (&devicedsc
, &chan
, 0, 0, 0);
1783 if ((status
& 1) != 1)
1786 /* Initialize the FIB and fill in the directory id field. */
1787 memset (&fib
, 0, sizeof (fib
));
1788 fib
.fib$w_did
[0] = nam
.nam$w_did
[0];
1789 fib
.fib$w_did
[1] = nam
.nam$w_did
[1];
1790 fib
.fib$w_did
[2] = nam
.nam$w_did
[2];
1791 fib
.fib$l_acctl
= 0;
1793 strcpy (file
.string
, (strrchr (result
.string
, ']') + 1));
1794 filedsc
.dsc$w_length
= strlen (file
.string
);
1795 result
.string
[result
.length
= 0] = 0;
1797 /* Open and close the file to fill in the attributes. */
1799 = SYS$
QIOW (0, chan
, IO$_ACCESS
|IO$M_ACCESS
, &iosb
, 0, 0,
1800 &fibdsc
, &filedsc
, &result
.length
, &resultdsc
, &atrlst
, 0);
1801 if ((status
& 1) != 1)
1803 if ((iosb
.status
& 1) != 1)
1806 result
.string
[result
.length
] = 0;
1807 status
= SYS$
QIOW (0, chan
, IO$_DEACCESS
, &iosb
, 0, 0, &fibdsc
, 0, 0, 0,
1809 if ((status
& 1) != 1)
1811 if ((iosb
.status
& 1) != 1)
1814 /* Deassign the channel and exit. */
1815 status
= SYS$
DASSGN (chan
);
1816 if ((status
& 1) != 1)
1819 if (cdt
) *cdt
= create
;
1820 if (siz
) *siz
= (512 * 65536 * recattr
.fat$w_efblkh
) +
1821 (512 * (recattr
.fat$w_efblkl
- 1)) +
1822 recattr
.fat$w_ffbyte
;
1823 if (rfo
) *rfo
= recattr
.fat$v_rtype
;
1824 if (ver
) *ver
= strtol (strrchr (ascnamebuff
, ';')+1, 0, 10);
1830 if ((stat (filename
, &buff
)) != 0)
1834 *cdt
= (long long) (buff
.st_mtime
* VMS_GRANULARITY_FACTOR
)
1838 *siz
= buff
.st_size
;
1841 *rfo
= 2; /* Stream LF format */