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
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
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/>. */
26 #include "coretypes.h"
29 #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 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
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
178 vmsdbgout_assembly_start
,
181 vmsdbgout_start_source_file
,
182 vmsdbgout_end_source_file
,
183 vmsdbgout_begin_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
,
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
212 #ifdef UNALIGNED_SHORT_ASM_OP
213 #undef UNALIGNED_SHORT_ASM_OP
215 #define UNALIGNED_SHORT_ASM_OP ".word"
217 #ifdef UNALIGNED_INT_ASM_OP
218 #undef UNALIGNED_INT_ASM_OP
220 #define UNALIGNED_INT_ASM_OP ".long"
222 #ifdef UNALIGNED_LONG_ASM_OP
223 #undef UNALIGNED_LONG_ASM_OP
225 #define UNALIGNED_LONG_ASM_OP ".long"
227 #ifdef UNALIGNED_DOUBLE_INT_ASM_OP
228 #undef UNALIGNED_DOUBLE_INT_ASM_OP
230 #define UNALIGNED_DOUBLE_INT_ASM_OP ".quad"
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)
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))
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"
264 #ifndef FUNC_BEGIN_LABEL
265 #define FUNC_BEGIN_LABEL "LVFB"
267 #ifndef FUNC_PROLOG_LABEL
268 #define FUNC_PROLOG_LABEL "LVFP"
270 #ifndef FUNC_EPILOG_LABEL
271 #define FUNC_EPILOG_LABEL "LVEB"
273 #ifndef FUNC_END_LABEL
274 #define FUNC_END_LABEL "LVFE"
276 #ifndef BLOCK_BEGIN_LABEL
277 #define BLOCK_BEGIN_LABEL "LVBB"
279 #ifndef BLOCK_END_LABEL
280 #define BLOCK_END_LABEL "LVBE"
282 #ifndef LINE_CODE_LABEL
283 #define LINE_CODE_LABEL "LVM"
286 #ifndef ASM_OUTPUT_DEBUG_DELTA2
287 #define ASM_OUTPUT_DEBUG_DELTA2(FILE,LABEL1,LABEL2) \
290 fprintf ((FILE), "\t%s\t", UNALIGNED_SHORT_ASM_OP); \
291 assemble_name (FILE, LABEL1); \
292 fprintf (FILE, "-"); \
293 assemble_name (FILE, LABEL2); \
298 #ifndef ASM_OUTPUT_DEBUG_DELTA4
299 #define ASM_OUTPUT_DEBUG_DELTA4(FILE,LABEL1,LABEL2) \
302 fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \
303 assemble_name (FILE, LABEL1); \
304 fprintf (FILE, "-"); \
305 assemble_name (FILE, LABEL2); \
310 #ifndef ASM_OUTPUT_DEBUG_ADDR_DELTA
311 #define ASM_OUTPUT_DEBUG_ADDR_DELTA(FILE,LABEL1,LABEL2) \
314 fprintf ((FILE), "\t%s\t", UNALIGNED_PTR_ASM_OP); \
315 assemble_name (FILE, LABEL1); \
316 fprintf (FILE, "-"); \
317 assemble_name (FILE, LABEL2); \
322 #ifndef ASM_OUTPUT_DEBUG_ADDR
323 #define ASM_OUTPUT_DEBUG_ADDR(FILE,LABEL) \
326 fprintf ((FILE), "\t%s\t", UNALIGNED_PTR_ASM_OP); \
327 assemble_name (FILE, LABEL); \
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))
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)
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)
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)
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)
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)
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)
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) \
377 register int slen = strlen(P); \
378 register const char *p = (P); \
380 fprintf (FILE, "\t.ascii \""); \
381 for (i = 0; i < slen; i++) \
383 register int c = p[i]; \
384 if (c == '\"' || c == '\\') \
386 if (c >= ' ' && c < 0177) \
389 fprintf (FILE, "\\%o", c); \
391 fprintf (FILE, "\""); \
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) \
403 if ((NAME)[0] == '*') \
404 strcpy (STR, NAME+1); \
406 strcpy (STR, NAME); \
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
417 write_debug_header (DST_HEADER
*header
, const char *comment
, int 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
,
435 fputc ('\n', asm_out_file
);
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
446 write_debug_addr (const char *symbol
, const char *comment
, int 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
);
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
464 write_debug_data1 (unsigned int data1
, const char *comment
, int 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
);
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
482 write_debug_data2 (unsigned int data2
, const char *comment
, int 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
);
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. */
499 write_debug_data4 (unsigned long data4
, const char *comment
, int 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
);
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. */
516 write_debug_data8 (unsigned long long data8
, const char *comment
,
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
);
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. */
535 write_debug_delta4 (const char *label1
, const char *label2
,
536 const char *comment
, int 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
);
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
554 write_debug_string (const char *string
, const char *comment
, int 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. */
571 write_modbeg (int dosizeonly
)
573 DST_MODULE_BEGIN modbeg
;
576 char *module_name
, *m
;
581 /* Assumes primary filename has Unix syntax file spec. */
582 module_name
= xstrdup (lbasename (primary_filename
));
584 m
= strrchr (module_name
, '.');
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
);
630 /* Output a module end trailer and return the trailer size. Just return
631 the size if DOSIZEONLY is nonzero. */
634 write_modend (int dosizeonly
)
636 DST_MODULE_END modend
;
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",
649 /* Output a routine begin header routine RTNNUM and return the header size.
650 Just return the size if DOSIZEONLY is nonzero. */
653 write_rtnbeg (int rtnnum
, int dosizeonly
)
659 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
660 DST_ROUTINE_BEGIN rtnbeg
;
663 rtnname
= VEC_index (char_p
, funcnam_table
, rtnnum
);
664 rtnnamelen
= strlen (rtnname
);
665 rtnentryname
= concat (rtnname
, "..en", NULL
);
667 if (!strcmp (rtnname
, "main"))
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",
689 totsize
+= write_debug_data1 (strlen (go
), "length of main_name",
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",
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",
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
);
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",
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",
744 /* Output a routine end trailer for routine RTNNUM and return the header size.
745 Just return the size if DOSIZEONLY is nonzero. */
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
];
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",
765 totsize
+= write_debug_data1 (rtnend
.dst_b_rtnend_unused
, "unused",
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
);
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 */
794 write_pclines (int dosizeonly
)
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
];
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
);
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
);
854 strcpy (lastlabel
, TEXT_SECTION_ASM_OP
);
855 for (i
= 1; i
< line_info_table_in_use
; i
++)
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
);
864 extrabytes
= 5; /* NUMBYTES (ln - lastln - 1) + 1; */
865 else if (ln
<= lastln
)
866 extrabytes
= 5; /* NUMBYTES (ln - 1) + 1; */
870 line_num
.dst_a_line_num_header
.dst__header_length
.dst_w_length
873 totsize
+= write_debug_header
874 (&line_num
.dst_a_line_num_header
, "line_num", dosizeonly
);
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)",
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)",
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",
913 strcpy (lastlabel
, label
);
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
924 write_srccorr (int fileid
, dst_file_info_entry file_info_entry
,
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
);
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
;
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
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)",
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
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
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
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;
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
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
,
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
1090 src_command_dl
.dst_b_src_command
= DST_K_SRC_DEFLINES_W
;
1092 if (linesleft
> 65534)
1093 linesleft
= linesleft
- 65534, linestodo
= 65534;
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
,
1114 /* Output all the source correlation entries and return the size. Just return
1115 the size if DOSIZEONLY is nonzero. */
1118 write_srccorrs (int dosizeonly
)
1123 for (i
= 1; i
< file_info_table_in_use
; i
++)
1124 totsize
+= write_srccorr (i
, file_info_table
[i
], dosizeonly
);
1129 /* Output a marker (i.e. a label) for the beginning of a function, before
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
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 */
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. */
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
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
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
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
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
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
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. */
1265 vmsdbgout_ignore_block (const_tree block
)
1269 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1270 retval
= (*dwarf2_debug_hooks
.ignore_block
) (block
);
1275 /* Add an entry for function DECL into the funcnam_table. */
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. */
1297 full_name (const char *filename
)
1300 FILE *fp
= fopen (filename
, "r");
1302 fgetname (fp
, fullname_buff
, 1);
1305 /* Unix paths really mess up VMS debug. Better to just output the
1307 strcpy (fullname_buff
, filename
);
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
1324 lookup_filename (const char *file_name
)
1326 static unsigned int last_file_lookup_index
= 0;
1328 register unsigned i
;
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
;
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. */
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
;
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. */
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. */
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. */
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
)
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
;
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. */
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. */
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. */
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. */
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. */
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. */
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. */
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. */
1564 vmsdbgout_finish (const char *filename ATTRIBUTE_UNUSED
)
1566 unsigned int i
, ifunc
;
1569 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1570 (*dwarf2_debug_hooks
.finish
) (filename
);
1572 if (debug_info_level
== DINFO_LEVEL_NONE
)
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);
1594 FOR_EACH_VEC_ELT (unsigned, funcnum_table
, i
, ifunc
)
1596 write_rtnbeg (i
, 0);
1597 write_rtnend (i
, 0);
1601 if (debug_info_level
> DINFO_LEVEL_TERSE
)
1603 totsize
= write_srccorrs (1);
1607 totsize
= write_modend (1);
1611 /* Need for both Dwarf2 on IVMS and VMS Debug on AVMS */
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>
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. */
1637 unsigned short status
, count
;
1638 unsigned int devdep
;
1641 static char *tryfile
;
1643 /* Variable length string. */
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. */
1656 translate_unix (char *name
, int type ATTRIBUTE_UNUSED
)
1658 strncpy (filename_buff
, name
, MAXPATH
);
1659 filename_buff
[MAXPATH
- 1] = (char) 0;
1663 /* Wrapper for DECC function that converts a Unix filespec
1664 to VMS style filespec. */
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
;
1679 #define VMS_EPOCH_OFFSET 35067168000000000
1680 #define VMS_GRANULARITY_FACTOR 10000000
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
,
1693 unsigned long long create
;
1695 char ascnamebuff
[256];
1699 { ATR$S_CREDATE
, ATR$C_CREDATE
, &create
},
1700 { ATR$S_RECATTR
, ATR$C_RECATTR
, &recattr
},
1701 { ATR$S_ASCNAME
, ATR$C_ASCNAME
, &ascnamebuff
},
1706 struct dsc$descriptor_fib fibdsc
= {sizeof (fib
), (void *) &fib
};
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)
1741 tryfile
= to_vms_file_spec (filename
);
1743 /* Allocate and initialize a FAB and NAM structures. */
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)
1760 file
.string
[nam
.nam$b_esl
] = 0;
1762 /* Find matching filespec. */
1763 status
= SYS$
SEARCH (&fab
, 0, 0);
1764 if ((status
& 1) != 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
;
1774 status
= SYS$
ASSIGN (&devicedsc
, &chan
, 0, 0, 0);
1775 if ((status
& 1) != 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;
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. */
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)
1795 if ((iosb
.status
& 1) != 1)
1798 result
.string
[result
.length
] = 0;
1799 status
= SYS$
QIOW (0, chan
, IO$_DEACCESS
, &iosb
, 0, 0, &fibdsc
, 0, 0, 0,
1801 if ((status
& 1) != 1)
1803 if ((iosb
.status
& 1) != 1)
1806 /* Deassign the channel and exit. */
1807 status
= SYS$
DASSGN (chan
);
1808 if ((status
& 1) != 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);
1822 if ((stat (filename
, &buff
)) != 0)
1826 *cdt
= (long long) (buff
.st_mtime
* VMS_GRANULARITY_FACTOR
)
1830 *siz
= buff
.st_size
;
1833 *rfo
= 2; /* Stream LF format */