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 Free Software Foundation, Inc.
4 Contributed by Douglas B. Rupp (rupp@gnat.com).
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 2, 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 COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 #include "coretypes.h"
28 #ifdef VMS_DEBUGGING_INFO
35 #include "langhooks.h"
39 /* Difference in seconds between the VMS Epoch and the Unix Epoch */
40 static const long long vms_epoch_offset
= 3506716800ll;
42 /* NOTE: In the comments in this file, many references are made to "Debug
43 Symbol Table". This term is abbreviated as `DST' throughout the remainder
46 typedef struct dst_line_info_struct
*dst_line_info_ref
;
48 /* Each entry in the line_info_table maintains the file and
49 line number associated with the label generated for that
50 entry. The label gives the PC value associated with
51 the line number entry. */
52 typedef struct dst_line_info_struct
54 unsigned long dst_file_num
;
55 unsigned long dst_line_num
;
59 typedef struct dst_file_info_struct
*dst_file_info_ref
;
61 typedef struct dst_file_info_struct
64 unsigned int max_line
;
65 unsigned int listing_line_start
;
74 /* How to start an assembler comment. */
75 #ifndef ASM_COMMENT_START
76 #define ASM_COMMENT_START ";#"
79 /* Maximum size (in bytes) of an artificially generated label. */
80 #define MAX_ARTIFICIAL_LABEL_BYTES 30
82 /* Make sure we know the sizes of the various types debug can describe. These
83 are only defaults. If the sizes are different for your target, you should
84 override these values by defining the appropriate symbols in your tm.h
87 #define PTR_SIZE 4 /* Must be 32 bits for VMS debug info */
90 /* Pointer to a structure of filenames referenced by this compilation unit. */
91 static dst_file_info_ref file_info_table
;
93 /* Total number of entries in the table (i.e. array) pointed to by
94 `file_info_table'. This is the *total* and includes both used and unused
96 static unsigned int file_info_table_allocated
;
98 /* Number of entries in the file_info_table which are actually in use. */
99 static unsigned int file_info_table_in_use
;
101 /* Size (in elements) of increments by which we may expand the filename
103 #define FILE_TABLE_INCREMENT 64
105 static char **func_table
;
106 static unsigned int func_table_allocated
;
107 static unsigned int func_table_in_use
;
108 #define FUNC_TABLE_INCREMENT 256
110 /* Local pointer to the name of the main input file. Initialized in
112 static const char *primary_filename
;
114 static char *module_producer
;
115 static unsigned int module_language
;
117 /* A pointer to the base of a table that contains line information
118 for each source code line in .text in the compilation unit. */
119 static dst_line_info_ref line_info_table
;
121 /* Number of elements currently allocated for line_info_table. */
122 static unsigned int line_info_table_allocated
;
124 /* Number of elements in line_info_table currently in use. */
125 static unsigned int line_info_table_in_use
;
127 /* Size (in elements) of increments by which we may expand line_info_table. */
128 #define LINE_INFO_TABLE_INCREMENT 1024
130 /* Forward declarations for functions defined in this file. */
131 static char *full_name (const char *);
132 static unsigned int lookup_filename (const char *);
133 static void addr_const_to_string (char *, rtx
);
134 static int write_debug_header (DST_HEADER
*, const char *, int);
135 static int write_debug_addr (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 (char *, char *, const char *, int);
141 static int write_debug_string (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_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 (tree
);
159 static void vmsdbgout_source_line (unsigned int, const char *);
160 static void vmsdbgout_begin_prologue (unsigned int, const char *);
161 static void vmsdbgout_end_prologue (unsigned int, const char *);
162 static void vmsdbgout_end_function (unsigned int);
163 static void vmsdbgout_end_epilogue (unsigned int, const char *);
164 static void vmsdbgout_begin_function (tree
);
165 static void vmsdbgout_decl (tree
);
166 static void vmsdbgout_global_decl (tree
);
167 static void vmsdbgout_abstract_function (tree
);
169 /* The debug hooks structure. */
171 const struct gcc_debug_hooks vmsdbg_debug_hooks
176 vmsdbgout_start_source_file
,
177 vmsdbgout_end_source_file
,
178 vmsdbgout_begin_block
,
180 vmsdbgout_ignore_block
,
181 vmsdbgout_source_line
,
182 vmsdbgout_begin_prologue
,
183 vmsdbgout_end_prologue
,
184 vmsdbgout_end_epilogue
,
185 vmsdbgout_begin_function
,
186 vmsdbgout_end_function
,
188 vmsdbgout_global_decl
,
189 debug_nothing_tree_int
, /* type_decl */
190 debug_nothing_tree_tree
, /* imported_module_or_decl */
191 debug_nothing_tree
, /* deferred_inline_function */
192 vmsdbgout_abstract_function
,
193 debug_nothing_rtx
, /* label */
194 debug_nothing_int
, /* handle_pch */
195 debug_nothing_rtx
/* var_location */
198 /* Definitions of defaults for assembler-dependent names of various
199 pseudo-ops and section names.
200 Theses may be overridden in the tm.h file (if necessary) for a particular
202 #ifdef UNALIGNED_SHORT_ASM_OP
203 #undef UNALIGNED_SHORT_ASM_OP
205 #define UNALIGNED_SHORT_ASM_OP ".word"
207 #ifdef UNALIGNED_INT_ASM_OP
208 #undef UNALIGNED_INT_ASM_OP
210 #define UNALIGNED_INT_ASM_OP ".long"
212 #ifdef UNALIGNED_LONG_ASM_OP
213 #undef UNALIGNED_LONG_ASM_OP
215 #define UNALIGNED_LONG_ASM_OP ".long"
217 #ifdef UNALIGNED_DOUBLE_INT_ASM_OP
218 #undef UNALIGNED_DOUBLE_INT_ASM_OP
220 #define UNALIGNED_DOUBLE_INT_ASM_OP ".quad"
225 #define ASM_BYTE_OP ".byte"
227 #define NUMBYTES(I) ((I) < 256 ? 1 : (I) < 65536 ? 2 : 4)
229 #define NUMBYTES0(I) ((I) < 128 ? 0 : (I) < 65536 ? 2 : 4)
231 #ifndef UNALIGNED_PTR_ASM_OP
232 #define UNALIGNED_PTR_ASM_OP \
233 (PTR_SIZE == 8 ? UNALIGNED_DOUBLE_INT_ASM_OP : UNALIGNED_INT_ASM_OP)
236 #ifndef UNALIGNED_OFFSET_ASM_OP
237 #define UNALIGNED_OFFSET_ASM_OP(OFFSET) \
238 (NUMBYTES(OFFSET) == 4 \
239 ? UNALIGNED_LONG_ASM_OP \
240 : (NUMBYTES(OFFSET) == 2 ? UNALIGNED_SHORT_ASM_OP : ASM_BYTE_OP))
243 /* Definitions of defaults for formats and names of various special
244 (artificial) labels which may be generated within this file (when the -g
245 options is used and VMS_DEBUGGING_INFO is in effect. If necessary, these
246 may be overridden from within the tm.h file, but typically, overriding these
247 defaults is unnecessary. */
249 static char text_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
251 #ifndef TEXT_END_LABEL
252 #define TEXT_END_LABEL "Lvetext"
254 #ifndef FUNC_BEGIN_LABEL
255 #define FUNC_BEGIN_LABEL "LVFB"
257 #ifndef FUNC_PROLOG_LABEL
258 #define FUNC_PROLOG_LABEL "LVFP"
260 #ifndef FUNC_END_LABEL
261 #define FUNC_END_LABEL "LVFE"
263 #ifndef BLOCK_BEGIN_LABEL
264 #define BLOCK_BEGIN_LABEL "LVBB"
266 #ifndef BLOCK_END_LABEL
267 #define BLOCK_END_LABEL "LVBE"
269 #ifndef LINE_CODE_LABEL
270 #define LINE_CODE_LABEL "LVM"
273 #ifndef ASM_OUTPUT_DEBUG_DELTA2
274 #define ASM_OUTPUT_DEBUG_DELTA2(FILE,LABEL1,LABEL2) \
277 fprintf ((FILE), "\t%s\t", UNALIGNED_SHORT_ASM_OP); \
278 assemble_name (FILE, LABEL1); \
279 fprintf (FILE, "-"); \
280 assemble_name (FILE, LABEL2); \
285 #ifndef ASM_OUTPUT_DEBUG_DELTA4
286 #define ASM_OUTPUT_DEBUG_DELTA4(FILE,LABEL1,LABEL2) \
289 fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \
290 assemble_name (FILE, LABEL1); \
291 fprintf (FILE, "-"); \
292 assemble_name (FILE, LABEL2); \
297 #ifndef ASM_OUTPUT_DEBUG_ADDR_DELTA
298 #define ASM_OUTPUT_DEBUG_ADDR_DELTA(FILE,LABEL1,LABEL2) \
301 fprintf ((FILE), "\t%s\t", UNALIGNED_PTR_ASM_OP); \
302 assemble_name (FILE, LABEL1); \
303 fprintf (FILE, "-"); \
304 assemble_name (FILE, LABEL2); \
309 #ifndef ASM_OUTPUT_DEBUG_ADDR
310 #define ASM_OUTPUT_DEBUG_ADDR(FILE,LABEL) \
313 fprintf ((FILE), "\t%s\t", UNALIGNED_PTR_ASM_OP); \
314 assemble_name (FILE, LABEL); \
319 #ifndef ASM_OUTPUT_DEBUG_ADDR_CONST
320 #define ASM_OUTPUT_DEBUG_ADDR_CONST(FILE,ADDR) \
321 fprintf ((FILE), "\t%s\t%s", UNALIGNED_PTR_ASM_OP, (ADDR))
324 #ifndef ASM_OUTPUT_DEBUG_DATA1
325 #define ASM_OUTPUT_DEBUG_DATA1(FILE,VALUE) \
326 fprintf ((FILE), "\t%s\t0x%x", ASM_BYTE_OP, (unsigned char) VALUE)
329 #ifndef ASM_OUTPUT_DEBUG_DATA2
330 #define ASM_OUTPUT_DEBUG_DATA2(FILE,VALUE) \
331 fprintf ((FILE), "\t%s\t0x%x", UNALIGNED_SHORT_ASM_OP, \
332 (unsigned short) VALUE)
335 #ifndef ASM_OUTPUT_DEBUG_DATA4
336 #define ASM_OUTPUT_DEBUG_DATA4(FILE,VALUE) \
337 fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_INT_ASM_OP, (unsigned long) VALUE)
340 #ifndef ASM_OUTPUT_DEBUG_DATA
341 #define ASM_OUTPUT_DEBUG_DATA(FILE,VALUE) \
342 fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_OFFSET_ASM_OP(VALUE), VALUE)
345 #ifndef ASM_OUTPUT_DEBUG_ADDR_DATA
346 #define ASM_OUTPUT_DEBUG_ADDR_DATA(FILE,VALUE) \
347 fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_PTR_ASM_OP, \
348 (unsigned long) VALUE)
351 #ifndef ASM_OUTPUT_DEBUG_DATA8
352 #define ASM_OUTPUT_DEBUG_DATA8(FILE,VALUE) \
353 fprintf ((FILE), "\t%s\t0x%llx", UNALIGNED_DOUBLE_INT_ASM_OP, \
354 (unsigned long long) VALUE)
357 /* This is similar to the default ASM_OUTPUT_ASCII, except that no trailing
358 newline is produced. When flag_verbose_asm is asserted, we add commentary
359 at the end of the line, so we must avoid output of a newline here. */
360 #ifndef ASM_OUTPUT_DEBUG_STRING
361 #define ASM_OUTPUT_DEBUG_STRING(FILE,P) \
364 register int slen = strlen(P); \
365 register char *p = (P); \
367 fprintf (FILE, "\t.ascii \""); \
368 for (i = 0; i < slen; i++) \
370 register int c = p[i]; \
371 if (c == '\"' || c == '\\') \
373 if (c >= ' ' && c < 0177) \
376 fprintf (FILE, "\\%o", c); \
378 fprintf (FILE, "\""); \
383 /* Convert a reference to the assembler name of a C-level name. This
384 macro has the same effect as ASM_OUTPUT_LABELREF, but copies to
385 a string rather than writing to a file. */
386 #ifndef ASM_NAME_TO_STRING
387 #define ASM_NAME_TO_STRING(STR, NAME) \
390 if ((NAME)[0] == '*') \
391 strcpy (STR, NAME+1); \
393 strcpy (STR, NAME); \
399 /* General utility functions. */
401 /* Convert an integer constant expression into assembler syntax. Addition and
402 subtraction are the only arithmetic that may appear in these expressions.
403 This is an adaptation of output_addr_const in final.c. Here, the target
404 of the conversion is a string buffer. We can't use output_addr_const
405 directly, because it writes to a file. */
408 addr_const_to_string (char *str
, rtx x
)
415 switch (GET_CODE (x
))
425 ASM_NAME_TO_STRING (buf1
, XSTR (x
, 0));
430 ASM_GENERATE_INTERNAL_LABEL (buf1
, "L", CODE_LABEL_NUMBER (XEXP (x
, 0)));
431 ASM_NAME_TO_STRING (buf2
, buf1
);
436 ASM_GENERATE_INTERNAL_LABEL (buf1
, "L", CODE_LABEL_NUMBER (x
));
437 ASM_NAME_TO_STRING (buf2
, buf1
);
442 sprintf (buf1
, HOST_WIDE_INT_PRINT_DEC
, INTVAL (x
));
447 /* This used to output parentheses around the expression, but that does
448 not work on the 386 (either ATT or BSD assembler). */
449 addr_const_to_string (buf1
, XEXP (x
, 0));
454 if (GET_MODE (x
) == VOIDmode
)
456 /* We can use %d if the number is one word and positive. */
457 if (CONST_DOUBLE_HIGH (x
))
458 sprintf (buf1
, HOST_WIDE_INT_PRINT_DOUBLE_HEX
,
459 CONST_DOUBLE_HIGH (x
), CONST_DOUBLE_LOW (x
));
460 else if (CONST_DOUBLE_LOW (x
) < 0)
461 sprintf (buf1
, HOST_WIDE_INT_PRINT_HEX
, CONST_DOUBLE_LOW (x
));
463 sprintf (buf1
, HOST_WIDE_INT_PRINT_DEC
,
464 CONST_DOUBLE_LOW (x
));
468 /* We can't handle floating point constants; PRINT_OPERAND must
470 output_operand_lossage ("floating constant misused");
474 /* Some assemblers need integer constants to appear last (eg masm). */
475 if (GET_CODE (XEXP (x
, 0)) == CONST_INT
)
477 addr_const_to_string (buf1
, XEXP (x
, 1));
479 if (INTVAL (XEXP (x
, 0)) >= 0)
481 addr_const_to_string (buf1
, XEXP (x
, 0));
486 addr_const_to_string (buf1
, XEXP (x
, 0));
488 if (INTVAL (XEXP (x
, 1)) >= 0)
490 addr_const_to_string (buf1
, XEXP (x
, 1));
496 /* Avoid outputting things like x-x or x+5-x, since some assemblers
497 can't handle that. */
498 x
= simplify_subtraction (x
);
499 if (GET_CODE (x
) != MINUS
)
502 addr_const_to_string (buf1
, XEXP (x
, 0));
505 if (GET_CODE (XEXP (x
, 1)) == CONST_INT
506 && INTVAL (XEXP (x
, 1)) < 0)
509 addr_const_to_string (buf1
, XEXP (x
, 1));
515 addr_const_to_string (buf1
, XEXP (x
, 1));
522 addr_const_to_string (buf1
, XEXP (x
, 0));
527 output_operand_lossage ("invalid expression as operand");
531 /* Output the debug header HEADER. Also output COMMENT if flag_verbose_asm is
532 set. Return the header size. Just return the size if DOSIZEONLY is
536 write_debug_header (DST_HEADER
*header
, const char *comment
, int dosizeonly
)
540 ASM_OUTPUT_DEBUG_DATA2 (asm_out_file
,
541 header
->dst__header_length
.dst_w_length
);
543 if (flag_verbose_asm
)
544 fprintf (asm_out_file
, "\t%s record length", ASM_COMMENT_START
);
545 fputc ('\n', asm_out_file
);
547 ASM_OUTPUT_DEBUG_DATA2 (asm_out_file
,
548 header
->dst__header_type
.dst_w_type
);
550 if (flag_verbose_asm
)
551 fprintf (asm_out_file
, "\t%s record type (%s)", ASM_COMMENT_START
,
554 fputc ('\n', asm_out_file
);
560 /* Output the address of SYMBOL. Also output COMMENT if flag_verbose_asm is
561 set. Return the address size. Just return the size if DOSIZEONLY is
565 write_debug_addr (char *symbol
, const char *comment
, int dosizeonly
)
569 ASM_OUTPUT_DEBUG_ADDR (asm_out_file
, symbol
);
570 if (flag_verbose_asm
)
571 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
572 fputc ('\n', asm_out_file
);
578 /* Output the single byte DATA1. Also output COMMENT if flag_verbose_asm is
579 set. Return the data size. Just return the size if DOSIZEONLY is
583 write_debug_data1 (unsigned int data1
, const char *comment
, int dosizeonly
)
587 ASM_OUTPUT_DEBUG_DATA1 (asm_out_file
, data1
);
588 if (flag_verbose_asm
)
589 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
590 fputc ('\n', asm_out_file
);
596 /* Output the single word DATA2. Also output COMMENT if flag_verbose_asm is
597 set. Return the data size. Just return the size if DOSIZEONLY is
601 write_debug_data2 (unsigned int data2
, const char *comment
, int dosizeonly
)
605 ASM_OUTPUT_DEBUG_DATA2 (asm_out_file
, data2
);
606 if (flag_verbose_asm
)
607 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
608 fputc ('\n', asm_out_file
);
614 /* Output double word DATA4. Also output COMMENT if flag_verbose_asm is set.
615 Return the data size. Just return the size if DOSIZEONLY is nonzero. */
618 write_debug_data4 (unsigned long data4
, const char *comment
, int dosizeonly
)
622 ASM_OUTPUT_DEBUG_DATA4 (asm_out_file
, data4
);
623 if (flag_verbose_asm
)
624 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
625 fputc ('\n', asm_out_file
);
631 /* Output quad word DATA8. Also output COMMENT if flag_verbose_asm is set.
632 Return the data size. Just return the size if DOSIZEONLY is nonzero. */
635 write_debug_data8 (unsigned long long data8
, const char *comment
,
640 ASM_OUTPUT_DEBUG_DATA8 (asm_out_file
, data8
);
641 if (flag_verbose_asm
)
642 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
643 fputc ('\n', asm_out_file
);
649 /* Output the difference between LABEL1 and LABEL2. Also output COMMENT if
650 flag_verbose_asm is set. Return the data size. Just return the size if
651 DOSIZEONLY is nonzero. */
654 write_debug_delta4 (char *label1
, char *label2
, const char *comment
,
659 ASM_OUTPUT_DEBUG_DELTA4 (asm_out_file
, label1
, label2
);
660 if (flag_verbose_asm
)
661 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
662 fputc ('\n', asm_out_file
);
668 /* Output a character string STRING. Also write COMMENT if flag_verbose_asm is
669 set. Return the string length. Just return the length if DOSIZEONLY is
673 write_debug_string (char *string
, const char *comment
, int dosizeonly
)
677 ASM_OUTPUT_DEBUG_STRING (asm_out_file
, string
);
678 if (flag_verbose_asm
)
679 fprintf (asm_out_file
, "\t%s %s", ASM_COMMENT_START
, comment
);
680 fputc ('\n', asm_out_file
);
683 return strlen (string
);
686 /* Output a module begin header and return the header size. Just return the
687 size if DOSIZEONLY is nonzero. */
690 write_modbeg (int dosizeonly
)
692 DST_MODULE_BEGIN modbeg
;
695 char *module_name
, *m
;
700 /* Assumes primary filename has Unix syntax file spec. */
701 module_name
= xstrdup (basename ((char *) primary_filename
));
703 m
= strrchr (module_name
, '.');
707 modnamelen
= strlen (module_name
);
708 for (i
= 0; i
< modnamelen
; i
++)
709 module_name
[i
] = TOUPPER (module_name
[i
]);
711 prodnamelen
= strlen (module_producer
);
713 modbeg
.dst_a_modbeg_header
.dst__header_length
.dst_w_length
714 = DST_K_MODBEG_SIZE
+ modnamelen
+ DST_K_MB_TRLR_SIZE
+ prodnamelen
- 1;
715 modbeg
.dst_a_modbeg_header
.dst__header_type
.dst_w_type
= DST_K_MODBEG
;
716 modbeg
.dst_b_modbeg_flags
.dst_v_modbeg_hide
= 0;
717 modbeg
.dst_b_modbeg_flags
.dst_v_modbeg_version
= 1;
718 modbeg
.dst_b_modbeg_flags
.dst_v_modbeg_unused
= 0;
719 modbeg
.dst_b_modbeg_unused
= 0;
720 modbeg
.dst_l_modbeg_language
= module_language
;
721 modbeg
.dst_w_version_major
= DST_K_VERSION_MAJOR
;
722 modbeg
.dst_w_version_minor
= DST_K_VERSION_MINOR
;
723 modbeg
.dst_b_modbeg_name
= strlen (module_name
);
725 mb_trlr
.dst_b_compiler
= strlen (module_producer
);
727 totsize
+= write_debug_header (&modbeg
.dst_a_modbeg_header
,
728 "modbeg", dosizeonly
);
729 totsize
+= write_debug_data1 (*((char *) &modbeg
.dst_b_modbeg_flags
),
730 "flags", dosizeonly
);
731 totsize
+= write_debug_data1 (modbeg
.dst_b_modbeg_unused
,
732 "unused", dosizeonly
);
733 totsize
+= write_debug_data4 (modbeg
.dst_l_modbeg_language
,
734 "language", dosizeonly
);
735 totsize
+= write_debug_data2 (modbeg
.dst_w_version_major
,
736 "DST major version", dosizeonly
);
737 totsize
+= write_debug_data2 (modbeg
.dst_w_version_minor
,
738 "DST minor version", dosizeonly
);
739 totsize
+= write_debug_data1 (modbeg
.dst_b_modbeg_name
,
740 "length of module name", dosizeonly
);
741 totsize
+= write_debug_string (module_name
, "module name", dosizeonly
);
742 totsize
+= write_debug_data1 (mb_trlr
.dst_b_compiler
,
743 "length of compiler name", dosizeonly
);
744 totsize
+= write_debug_string (module_producer
, "compiler name", dosizeonly
);
749 /* Output a module end trailer and return the trailer size. Just return
750 the size if DOSIZEONLY is nonzero. */
753 write_modend (int dosizeonly
)
755 DST_MODULE_END modend
;
758 modend
.dst_a_modend_header
.dst__header_length
.dst_w_length
759 = DST_K_MODEND_SIZE
- 1;
760 modend
.dst_a_modend_header
.dst__header_type
.dst_w_type
= DST_K_MODEND
;
762 totsize
+= write_debug_header (&modend
.dst_a_modend_header
, "modend",
768 /* Output a routine begin header routine RTNNUM and return the header size.
769 Just return the size if DOSIZEONLY is nonzero. */
772 write_rtnbeg (int rtnnum
, int dosizeonly
)
778 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
779 DST_ROUTINE_BEGIN rtnbeg
;
782 rtnname
= func_table
[rtnnum
];
783 rtnnamelen
= strlen (rtnname
);
784 rtnentryname
= concat (rtnname
, "..en", NULL
);
786 if (!strcmp (rtnname
, "main"))
789 const char *go
= "TRANSFER$BREAK$GO";
791 /* This command isn't documented in DSTRECORDS, so it's made to
792 look like what DEC C does */
794 /* header size - 1st byte + flag byte + STO_LW size
795 + string count byte + string length */
796 header
.dst__header_length
.dst_w_length
797 = DST_K_DST_HEADER_SIZE
- 1 + 1 + 4 + 1 + strlen (go
);
798 header
.dst__header_type
.dst_w_type
= 0x17;
800 totsize
+= write_debug_header (&header
, "transfer", dosizeonly
);
802 /* I think this is a flag byte, but I don't know what this flag means */
803 totsize
+= write_debug_data1 (0x1, "flags ???", dosizeonly
);
805 /* Routine Begin PD Address */
806 totsize
+= write_debug_addr (rtnname
, "main procedure descriptor",
808 totsize
+= write_debug_data1 (strlen (go
), "length of main_name",
810 totsize
+= write_debug_string ((char *) go
, "main name", dosizeonly
);
813 /* The header length never includes the length byte. */
814 rtnbeg
.dst_a_rtnbeg_header
.dst__header_length
.dst_w_length
815 = DST_K_RTNBEG_SIZE
+ rtnnamelen
- 1;
816 rtnbeg
.dst_a_rtnbeg_header
.dst__header_type
.dst_w_type
= DST_K_RTNBEG
;
817 rtnbeg
.dst_b_rtnbeg_flags
.dst_v_rtnbeg_unused
= 0;
818 rtnbeg
.dst_b_rtnbeg_flags
.dst_v_rtnbeg_unalloc
= 0;
819 rtnbeg
.dst_b_rtnbeg_flags
.dst_v_rtnbeg_prototype
= 0;
820 rtnbeg
.dst_b_rtnbeg_flags
.dst_v_rtnbeg_inlined
= 0;
821 rtnbeg
.dst_b_rtnbeg_flags
.dst_v_rtnbeg_no_call
= 1;
822 rtnbeg
.dst_b_rtnbeg_name
= rtnnamelen
;
824 totsize
+= write_debug_header (&rtnbeg
.dst_a_rtnbeg_header
, "rtnbeg",
826 totsize
+= write_debug_data1 (*((char *) &rtnbeg
.dst_b_rtnbeg_flags
),
827 "flags", dosizeonly
);
829 /* Routine Begin Address */
830 totsize
+= write_debug_addr (rtnentryname
, "routine entry name", dosizeonly
);
832 /* Routine Begin PD Address */
833 totsize
+= write_debug_addr (rtnname
, "routine procedure descriptor",
836 /* Routine Begin Name */
837 totsize
+= write_debug_data1 (rtnbeg
.dst_b_rtnbeg_name
,
838 "length of routine name", dosizeonly
);
840 totsize
+= write_debug_string (rtnname
, "routine name", dosizeonly
);
844 if (debug_info_level
> DINFO_LEVEL_TERSE
)
846 prolog
.dst_a_prolog_header
.dst__header_length
.dst_w_length
847 = DST_K_PROLOG_SIZE
- 1;
848 prolog
.dst_a_prolog_header
.dst__header_type
.dst_w_type
= DST_K_PROLOG
;
850 totsize
+= write_debug_header (&prolog
.dst_a_prolog_header
, "prolog",
853 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_PROLOG_LABEL
, rtnnum
);
854 totsize
+= write_debug_addr (label
, "prolog breakpoint addr",
861 /* Output a routine end trailer for routine RTNNUM and return the header size.
862 Just return the size if DOSIZEONLY is nonzero. */
865 write_rtnend (int rtnnum
, int dosizeonly
)
867 DST_ROUTINE_END rtnend
;
868 char label1
[MAX_ARTIFICIAL_LABEL_BYTES
];
869 char label2
[MAX_ARTIFICIAL_LABEL_BYTES
];
874 rtnend
.dst_a_rtnend_header
.dst__header_length
.dst_w_length
875 = DST_K_RTNEND_SIZE
- 1;
876 rtnend
.dst_a_rtnend_header
.dst__header_type
.dst_w_type
= DST_K_RTNEND
;
877 rtnend
.dst_b_rtnend_unused
= 0;
878 rtnend
.dst_l_rtnend_size
= 0; /* Calculated below. */
880 totsize
+= write_debug_header (&rtnend
.dst_a_rtnend_header
, "rtnend",
882 totsize
+= write_debug_data1 (rtnend
.dst_b_rtnend_unused
, "unused",
885 ASM_GENERATE_INTERNAL_LABEL (label1
, FUNC_BEGIN_LABEL
, rtnnum
);
886 ASM_GENERATE_INTERNAL_LABEL (label2
, FUNC_END_LABEL
, rtnnum
);
887 totsize
+= write_debug_delta4 (label2
, label1
, "routine size", dosizeonly
);
892 #define K_DELTA_PC(I) \
893 ((I) < 128 ? -(I) : (I) < 65536 ? DST_K_DELTA_PC_W : DST_K_DELTA_PC_L)
895 #define K_SET_LINUM(I) \
896 ((I) < 256 ? DST_K_SET_LINUM_B \
897 : (I) < 65536 ? DST_K_SET_LINUM : DST_K_SET_LINUM_L)
899 #define K_INCR_LINUM(I) \
900 ((I) < 256 ? DST_K_INCR_LINUM \
901 : (I) < 65536 ? DST_K_INCR_LINUM_W : DST_K_INCR_LINUM_L)
903 /* Output the PC to line number correlations and return the size. Just return
904 the size if DOSIZEONLY is nonzero */
907 write_pclines (int dosizeonly
)
914 DST_LINE_NUM_HEADER line_num
;
915 DST_PCLINE_COMMANDS pcline
;
916 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
917 char lastlabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
921 max_line
= file_info_table
[1].max_line
;
922 file_info_table
[1].listing_line_start
= linestart
;
923 linestart
= linestart
+ ((max_line
/ 100000) + 1) * 100000;
925 for (i
= 2; i
< file_info_table_in_use
; i
++)
927 max_line
= file_info_table
[i
].max_line
;
928 file_info_table
[i
].listing_line_start
= linestart
;
929 linestart
= linestart
+ ((max_line
/ 10000) + 1) * 10000;
932 /* Set starting address to beginning of text section. */
933 line_num
.dst_a_line_num_header
.dst__header_length
.dst_w_length
= 8;
934 line_num
.dst_a_line_num_header
.dst__header_type
.dst_w_type
= DST_K_LINE_NUM
;
935 pcline
.dst_b_pcline_command
= DST_K_SET_ABS_PC
;
937 totsize
+= write_debug_header (&line_num
.dst_a_line_num_header
,
938 "line_num", dosizeonly
);
939 totsize
+= write_debug_data1 (pcline
.dst_b_pcline_command
,
940 "line_num (SET ABS PC)", dosizeonly
);
946 ASM_OUTPUT_DEBUG_ADDR (asm_out_file
, TEXT_SECTION_ASM_OP
);
947 if (flag_verbose_asm
)
948 fprintf (asm_out_file
, "\t%s line_num", ASM_COMMENT_START
);
949 fputc ('\n', asm_out_file
);
952 fn
= line_info_table
[1].dst_file_num
;
953 ln
= (file_info_table
[fn
].listing_line_start
954 + line_info_table
[1].dst_line_num
);
955 line_num
.dst_a_line_num_header
.dst__header_length
.dst_w_length
= 4 + 4;
956 pcline
.dst_b_pcline_command
= DST_K_SET_LINUM_L
;
958 totsize
+= write_debug_header (&line_num
.dst_a_line_num_header
,
959 "line_num", dosizeonly
);
960 totsize
+= write_debug_data1 (pcline
.dst_b_pcline_command
,
961 "line_num (SET LINUM LONG)", dosizeonly
);
963 sprintf (buff
, "line_num (%d)", ln
? ln
- 1 : 0);
964 totsize
+= write_debug_data4 (ln
? ln
- 1 : 0, buff
, dosizeonly
);
967 strcpy (lastlabel
, TEXT_SECTION_ASM_OP
);
968 for (i
= 1; i
< line_info_table_in_use
; i
++)
972 fn
= line_info_table
[i
].dst_file_num
;
973 ln
= (file_info_table
[fn
].listing_line_start
974 + line_info_table
[i
].dst_line_num
);
977 extrabytes
= 5; /* NUMBYTES (ln - lastln - 1) + 1; */
978 else if (ln
<= lastln
)
979 extrabytes
= 5; /* NUMBYTES (ln - 1) + 1; */
983 line_num
.dst_a_line_num_header
.dst__header_length
.dst_w_length
986 totsize
+= write_debug_header
987 (&line_num
.dst_a_line_num_header
, "line_num", dosizeonly
);
991 int lndif
= ln
- lastln
- 1;
993 /* K_INCR_LINUM (lndif); */
994 pcline
.dst_b_pcline_command
= DST_K_INCR_LINUM_L
;
996 totsize
+= write_debug_data1 (pcline
.dst_b_pcline_command
,
997 "line_num (INCR LINUM LONG)",
1000 sprintf (buff
, "line_num (%d)", lndif
);
1001 totsize
+= write_debug_data4 (lndif
, buff
, dosizeonly
);
1003 else if (ln
<= lastln
)
1005 /* K_SET_LINUM (ln-1); */
1006 pcline
.dst_b_pcline_command
= DST_K_SET_LINUM_L
;
1008 totsize
+= write_debug_data1 (pcline
.dst_b_pcline_command
,
1009 "line_num (SET LINUM LONG)",
1012 sprintf (buff
, "line_num (%d)", ln
- 1);
1013 totsize
+= write_debug_data4 (ln
- 1, buff
, dosizeonly
);
1016 pcline
.dst_b_pcline_command
= DST_K_DELTA_PC_L
;
1018 totsize
+= write_debug_data1 (pcline
.dst_b_pcline_command
,
1019 "line_num (DELTA PC LONG)", dosizeonly
);
1021 ASM_GENERATE_INTERNAL_LABEL (label
, LINE_CODE_LABEL
, i
);
1022 totsize
+= write_debug_delta4 (label
, lastlabel
, "increment line_num",
1026 strcpy (lastlabel
, label
);
1032 /* Output a source correlation for file FILEID using information saved in
1033 FILE_INFO_ENTRY and return the size. Just return the size if DOSIZEONLY is
1037 write_srccorr (int fileid
, dst_file_info_entry file_info_entry
,
1040 int src_command_size
;
1041 int linesleft
= file_info_entry
.max_line
;
1042 int linestart
= file_info_entry
.listing_line_start
;
1043 int flen
= file_info_entry
.flen
;
1045 DST_SOURCE_CORR src_header
;
1046 DST_SRC_COMMAND src_command
;
1047 DST_SRC_COMMAND src_command_sf
;
1048 DST_SRC_COMMAND src_command_sl
;
1049 DST_SRC_COMMAND src_command_sr
;
1050 DST_SRC_COMMAND src_command_dl
;
1051 DST_SRC_CMDTRLR src_cmdtrlr
;
1057 src_header
.dst_a_source_corr_header
.dst__header_length
.dst_w_length
1058 = DST_K_SOURCE_CORR_HEADER_SIZE
+ 1 - 1;
1059 src_header
.dst_a_source_corr_header
.dst__header_type
.dst_w_type
1061 src_command
.dst_b_src_command
= DST_K_SRC_FORMFEED
;
1063 totsize
+= write_debug_header (&src_header
.dst_a_source_corr_header
,
1064 "source corr", dosizeonly
);
1066 totsize
+= write_debug_data1 (src_command
.dst_b_src_command
,
1067 "source_corr (SRC FORMFEED)",
1072 = DST_K_SRC_COMMAND_SIZE
+ flen
+ DST_K_SRC_CMDTRLR_SIZE
;
1073 src_command
.dst_b_src_command
= DST_K_SRC_DECLFILE
;
1074 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_length
1075 = src_command_size
- 2;
1076 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_flags
= 0;
1077 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_w_src_df_fileid
1079 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_q_src_df_rms_cdt
1080 = file_info_entry
.cdt
;
1081 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_l_src_df_rms_ebk
1082 = file_info_entry
.ebk
;
1083 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_w_src_df_rms_ffb
1084 = file_info_entry
.ffb
;
1085 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_rms_rfo
1086 = file_info_entry
.rfo
;
1087 src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_filename
1088 = file_info_entry
.flen
;
1090 src_header
.dst_a_source_corr_header
.dst__header_length
.dst_w_length
1091 = DST_K_SOURCE_CORR_HEADER_SIZE
+ src_command_size
- 1;
1092 src_header
.dst_a_source_corr_header
.dst__header_type
.dst_w_type
1095 src_cmdtrlr
.dst_b_src_df_libmodname
= 0;
1097 totsize
+= write_debug_header (&src_header
.dst_a_source_corr_header
,
1098 "source corr", dosizeonly
);
1099 totsize
+= write_debug_data1 (src_command
.dst_b_src_command
,
1100 "source_corr (DECL SRC FILE)", dosizeonly
);
1101 totsize
+= write_debug_data1
1102 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_length
,
1103 "source_corr (length)", dosizeonly
);
1105 totsize
+= write_debug_data1
1106 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_flags
,
1107 "source_corr (flags)", dosizeonly
);
1109 totsize
+= write_debug_data2
1110 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_w_src_df_fileid
,
1111 "source_corr (fileid)", dosizeonly
);
1113 totsize
+= write_debug_data8
1114 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_q_src_df_rms_cdt
,
1115 "source_corr (creation date)", dosizeonly
);
1117 totsize
+= write_debug_data4
1118 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_l_src_df_rms_ebk
,
1119 "source_corr (EOF block number)", dosizeonly
);
1121 totsize
+= write_debug_data2
1122 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_w_src_df_rms_ffb
,
1123 "source_corr (first free byte)", dosizeonly
);
1125 totsize
+= write_debug_data1
1126 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_rms_rfo
,
1127 "source_corr (record and file organization)", dosizeonly
);
1129 totsize
+= write_debug_data1
1130 (src_command
.dst_a_src_cmd_fields
.dst_a_src_decl_src
.dst_b_src_df_filename
,
1131 "source_corr (filename length)", dosizeonly
);
1133 totsize
+= write_debug_string (file_info_entry
.file_name
,
1134 "source file name", dosizeonly
);
1135 totsize
+= write_debug_data1 (src_cmdtrlr
.dst_b_src_df_libmodname
,
1136 "source_corr (libmodname)", dosizeonly
);
1138 src_command_sf
.dst_b_src_command
= DST_K_SRC_SETFILE
;
1139 src_command_sf
.dst_a_src_cmd_fields
.dst_w_src_unsword
= fileid
;
1141 src_command_sr
.dst_b_src_command
= DST_K_SRC_SETREC_W
;
1142 src_command_sr
.dst_a_src_cmd_fields
.dst_w_src_unsword
= 1;
1144 src_command_sl
.dst_b_src_command
= DST_K_SRC_SETLNUM_L
;
1145 src_command_sl
.dst_a_src_cmd_fields
.dst_l_src_unslong
= linestart
+ 1;
1147 src_command_dl
.dst_b_src_command
= DST_K_SRC_DEFLINES_W
;
1149 if (linesleft
> 65534)
1150 linesleft
= linesleft
- 65534, linestodo
= 65534;
1152 linestodo
= linesleft
, linesleft
= 0;
1154 src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
= linestodo
;
1156 src_header
.dst_a_source_corr_header
.dst__header_length
.dst_w_length
1157 = DST_K_SOURCE_CORR_HEADER_SIZE
+ 3 + 3 + 5 + 3 - 1;
1158 src_header
.dst_a_source_corr_header
.dst__header_type
.dst_w_type
1161 if (src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
)
1163 totsize
+= write_debug_header (&src_header
.dst_a_source_corr_header
,
1164 "source corr", dosizeonly
);
1166 totsize
+= write_debug_data1 (src_command_sf
.dst_b_src_command
,
1167 "source_corr (src setfile)", dosizeonly
);
1169 totsize
+= write_debug_data2
1170 (src_command_sf
.dst_a_src_cmd_fields
.dst_w_src_unsword
,
1171 "source_corr (fileid)", dosizeonly
);
1173 totsize
+= write_debug_data1 (src_command_sr
.dst_b_src_command
,
1174 "source_corr (setrec)", dosizeonly
);
1176 totsize
+= write_debug_data2
1177 (src_command_sr
.dst_a_src_cmd_fields
.dst_w_src_unsword
,
1178 "source_corr (recnum)", dosizeonly
);
1180 totsize
+= write_debug_data1 (src_command_sl
.dst_b_src_command
,
1181 "source_corr (setlnum)", dosizeonly
);
1183 totsize
+= write_debug_data4
1184 (src_command_sl
.dst_a_src_cmd_fields
.dst_l_src_unslong
,
1185 "source_corr (linenum)", dosizeonly
);
1187 totsize
+= write_debug_data1 (src_command_dl
.dst_b_src_command
,
1188 "source_corr (deflines)", dosizeonly
);
1190 sprintf (buff
, "source_corr (%d)",
1191 src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
);
1192 totsize
+= write_debug_data2
1193 (src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
,
1196 while (linesleft
> 0)
1198 src_header
.dst_a_source_corr_header
.dst__header_length
.dst_w_length
1199 = DST_K_SOURCE_CORR_HEADER_SIZE
+ 3 - 1;
1200 src_header
.dst_a_source_corr_header
.dst__header_type
.dst_w_type
1202 src_command_dl
.dst_b_src_command
= DST_K_SRC_DEFLINES_W
;
1204 if (linesleft
> 65534)
1205 linesleft
= linesleft
- 65534, linestodo
= 65534;
1207 linestodo
= linesleft
, linesleft
= 0;
1209 src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
= linestodo
;
1211 totsize
+= write_debug_header (&src_header
.dst_a_source_corr_header
,
1212 "source corr", dosizeonly
);
1213 totsize
+= write_debug_data1 (src_command_dl
.dst_b_src_command
,
1214 "source_corr (deflines)", dosizeonly
);
1215 sprintf (buff
, "source_corr (%d)",
1216 src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
);
1217 totsize
+= write_debug_data2
1218 (src_command_dl
.dst_a_src_cmd_fields
.dst_w_src_unsword
,
1226 /* Output all the source correlation entries and return the size. Just return
1227 the size if DOSIZEONLY is nonzero. */
1230 write_srccorrs (int dosizeonly
)
1235 for (i
= 1; i
< file_info_table_in_use
; i
++)
1236 totsize
+= write_srccorr (i
, file_info_table
[i
], dosizeonly
);
1241 /* Output a marker (i.e. a label) for the beginning of a function, before
1245 vmsdbgout_begin_prologue (unsigned int line
, const char *file
)
1247 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1249 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1250 (*dwarf2_debug_hooks
.begin_prologue
) (line
, file
);
1252 if (debug_info_level
> DINFO_LEVEL_NONE
)
1254 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_BEGIN_LABEL
,
1255 current_function_funcdef_no
);
1256 ASM_OUTPUT_LABEL (asm_out_file
, label
);
1260 /* Output a marker (i.e. a label) for the beginning of a function, after
1264 vmsdbgout_end_prologue (unsigned int line
, const char *file
)
1266 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1268 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1269 (*dwarf2_debug_hooks
.end_prologue
) (line
, file
);
1271 if (debug_info_level
> DINFO_LEVEL_TERSE
)
1273 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_PROLOG_LABEL
,
1274 current_function_funcdef_no
);
1275 ASM_OUTPUT_LABEL (asm_out_file
, label
);
1277 /* VMS PCA expects every PC range to correlate to some line and file. */
1278 vmsdbgout_source_line (line
, file
);
1282 /* No output for VMS debug, but make obligatory call to Dwarf2 debug */
1285 vmsdbgout_end_function (unsigned int line
)
1287 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1288 (*dwarf2_debug_hooks
.end_function
) (line
);
1291 /* Output a marker (i.e. a label) for the absolute end of the generated code
1292 for a function definition. This gets called *after* the epilogue code has
1296 vmsdbgout_end_epilogue (unsigned int line
, const char *file
)
1298 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1300 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1301 (*dwarf2_debug_hooks
.end_epilogue
) (line
, file
);
1303 if (debug_info_level
> DINFO_LEVEL_NONE
)
1305 /* Output a label to mark the endpoint of the code generated for this
1307 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_END_LABEL
,
1308 current_function_funcdef_no
);
1309 ASM_OUTPUT_LABEL (asm_out_file
, label
);
1311 /* VMS PCA expects every PC range to correlate to some line and file. */
1312 vmsdbgout_source_line (line
, file
);
1316 /* Output a marker (i.e. a label) for the beginning of the generated code for
1320 vmsdbgout_begin_block (register unsigned line
, register unsigned blocknum
)
1322 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1323 (*dwarf2_debug_hooks
.begin_block
) (line
, blocknum
);
1325 if (debug_info_level
> DINFO_LEVEL_TERSE
)
1326 targetm
.asm_out
.internal_label (asm_out_file
, BLOCK_BEGIN_LABEL
, blocknum
);
1329 /* Output a marker (i.e. a label) for the end of the generated code for a
1333 vmsdbgout_end_block (register unsigned line
, register unsigned blocknum
)
1335 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1336 (*dwarf2_debug_hooks
.end_block
) (line
, blocknum
);
1338 if (debug_info_level
> DINFO_LEVEL_TERSE
)
1339 targetm
.asm_out
.internal_label (asm_out_file
, BLOCK_END_LABEL
, blocknum
);
1342 /* Not implemented in VMS Debug. */
1345 vmsdbgout_ignore_block (tree block
)
1349 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1350 retval
= (*dwarf2_debug_hooks
.ignore_block
) (block
);
1355 /* Add an entry for function DECL into the func_table. */
1358 vmsdbgout_begin_function (tree decl
)
1360 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
1362 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1363 (*dwarf2_debug_hooks
.begin_function
) (decl
);
1365 if (func_table_in_use
== func_table_allocated
)
1367 func_table_allocated
+= FUNC_TABLE_INCREMENT
;
1368 func_table
= xrealloc (func_table
,
1369 func_table_allocated
* sizeof (char *));
1372 /* Add the new entry to the end of the function name table. */
1373 func_table
[func_table_in_use
++] = xstrdup (name
);
1376 static char fullname_buff
[4096];
1378 /* Return the full file specification for FILENAME. The specification must be
1379 in VMS syntax in order to be processed by VMS Debug. */
1382 full_name (const char *filename
)
1385 FILE *fp
= fopen (filename
, "r");
1387 fgetname (fp
, fullname_buff
, 1);
1390 getcwd (fullname_buff
, sizeof (fullname_buff
));
1392 strcat (fullname_buff
, "/");
1393 strcat (fullname_buff
, filename
);
1395 /* ??? Insert hairy code here to translate Unix style file specification
1399 return fullname_buff
;
1402 /* Lookup a filename (in the list of filenames that we know about here in
1403 vmsdbgout.c) and return its "index". The index of each (known) filename is
1404 just a unique number which is associated with only that one filename. We
1405 need such numbers for the sake of generating labels and references
1406 to those files numbers. If the filename given as an argument is not
1407 found in our current list, add it to the list and assign it the next
1408 available unique index number. In order to speed up searches, we remember
1409 the index of the filename was looked up last. This handles the majority of
1413 lookup_filename (const char *file_name
)
1415 static unsigned int last_file_lookup_index
= 0;
1417 register unsigned i
;
1424 struct stat statbuf
;
1426 if (stat (file_name
, &statbuf
) == 0)
1432 /* Adjust for GMT. */
1433 ts
= (struct tm
*) localtime (&statbuf
.st_ctime
);
1434 gmtoff
= ts
->tm_gmtoff
;
1436 /* VMS has multiple file format types. */
1437 rfo
= statbuf
.st_fab_rfm
;
1439 /* Is GMT adjustment an issue with a cross-compiler? */
1442 /* Assume stream LF type file. */
1445 cdt
= 10000000 * (statbuf
.st_ctime
+ gmtoff
+ vms_epoch_offset
);
1446 ebk
= statbuf
.st_size
/ 512 + 1;
1447 ffb
= statbuf
.st_size
- ((statbuf
.st_size
/ 512) * 512);
1448 fnam
= full_name (file_name
);
1449 flen
= strlen (fnam
);
1461 /* Check to see if the file name that was searched on the previous call
1462 matches this file name. If so, return the index. */
1463 if (last_file_lookup_index
!= 0)
1465 fn
= file_info_table
[last_file_lookup_index
].file_name
;
1466 if (strcmp (fnam
, fn
) == 0)
1467 return last_file_lookup_index
;
1470 /* Didn't match the previous lookup, search the table */
1471 for (i
= 1; i
< file_info_table_in_use
; ++i
)
1473 fn
= file_info_table
[i
].file_name
;
1474 if (strcmp (fnam
, fn
) == 0)
1476 last_file_lookup_index
= i
;
1481 /* Prepare to add a new table entry by making sure there is enough space in
1482 the table to do so. If not, expand the current table. */
1483 if (file_info_table_in_use
== file_info_table_allocated
)
1486 file_info_table_allocated
+= FILE_TABLE_INCREMENT
;
1487 file_info_table
= xrealloc (file_info_table
,
1488 (file_info_table_allocated
1489 * sizeof (dst_file_info_entry
)));
1492 /* Add the new entry to the end of the filename table. */
1493 file_info_table
[file_info_table_in_use
].file_name
= xstrdup (fnam
);
1494 file_info_table
[file_info_table_in_use
].max_line
= 0;
1495 file_info_table
[file_info_table_in_use
].cdt
= cdt
;
1496 file_info_table
[file_info_table_in_use
].ebk
= ebk
;
1497 file_info_table
[file_info_table_in_use
].ffb
= ffb
;
1498 file_info_table
[file_info_table_in_use
].rfo
= rfo
;
1499 file_info_table
[file_info_table_in_use
].flen
= flen
;
1501 last_file_lookup_index
= file_info_table_in_use
++;
1502 return last_file_lookup_index
;
1505 /* Output a label to mark the beginning of a source code line entry
1506 and record information relating to this source line, in
1507 'line_info_table' for later output of the .debug_line section. */
1510 vmsdbgout_source_line (register unsigned line
, register const char *filename
)
1512 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1513 (*dwarf2_debug_hooks
.source_line
) (line
, filename
);
1515 if (debug_info_level
>= DINFO_LEVEL_TERSE
)
1517 dst_line_info_ref line_info
;
1519 targetm
.asm_out
.internal_label (asm_out_file
, LINE_CODE_LABEL
,
1520 line_info_table_in_use
);
1522 /* Expand the line info table if necessary. */
1523 if (line_info_table_in_use
== line_info_table_allocated
)
1525 line_info_table_allocated
+= LINE_INFO_TABLE_INCREMENT
;
1526 line_info_table
= xrealloc (line_info_table
,
1527 (line_info_table_allocated
1528 * sizeof (dst_line_info_entry
)));
1531 /* Add the new entry at the end of the line_info_table. */
1532 line_info
= &line_info_table
[line_info_table_in_use
++];
1533 line_info
->dst_file_num
= lookup_filename (filename
);
1534 line_info
->dst_line_num
= line
;
1535 if (line
> file_info_table
[line_info
->dst_file_num
].max_line
)
1536 file_info_table
[line_info
->dst_file_num
].max_line
= line
;
1540 /* Record the beginning of a new source file, for later output.
1541 At present, unimplemented. */
1544 vmsdbgout_start_source_file (unsigned int lineno
, const char *filename
)
1546 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1547 (*dwarf2_debug_hooks
.start_source_file
) (lineno
, filename
);
1550 /* Record the end of a source file, for later output.
1551 At present, unimplemented. */
1554 vmsdbgout_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED
)
1556 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1557 (*dwarf2_debug_hooks
.end_source_file
) (lineno
);
1560 /* Set up for Debug output at the start of compilation. */
1563 vmsdbgout_init (const char *main_input_filename
)
1565 const char *language_string
= lang_hooks
.name
;
1567 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1568 (*dwarf2_debug_hooks
.init
) (main_input_filename
);
1570 if (debug_info_level
== DINFO_LEVEL_NONE
)
1573 /* Remember the name of the primary input file. */
1574 primary_filename
= main_input_filename
;
1576 /* Allocate the initial hunk of the file_info_table. */
1578 = xcalloc (FILE_TABLE_INCREMENT
, sizeof (dst_file_info_entry
));
1579 file_info_table_allocated
= FILE_TABLE_INCREMENT
;
1581 /* Skip the first entry - file numbers begin at 1 */
1582 file_info_table_in_use
= 1;
1584 func_table
= xcalloc (FUNC_TABLE_INCREMENT
, sizeof (char *));
1585 func_table_allocated
= FUNC_TABLE_INCREMENT
;
1586 func_table_in_use
= 1;
1588 /* Allocate the initial hunk of the line_info_table. */
1590 = xcalloc (LINE_INFO_TABLE_INCREMENT
, sizeof (dst_line_info_entry
));
1591 line_info_table_allocated
= LINE_INFO_TABLE_INCREMENT
;
1592 /* zero-th entry is allocated, but unused */
1593 line_info_table_in_use
= 1;
1595 lookup_filename (primary_filename
);
1597 if (!strcmp (language_string
, "GNU C"))
1598 module_language
= DST_K_C
;
1599 else if (!strcmp (language_string
, "GNU C++"))
1600 module_language
= DST_K_CXX
;
1601 else if (!strcmp (language_string
, "GNU Ada"))
1602 module_language
= DST_K_ADA
;
1603 else if (!strcmp (language_string
, "GNU F77"))
1604 module_language
= DST_K_FORTRAN
;
1606 module_language
= DST_K_UNKNOWN
;
1608 module_producer
= concat (language_string
, " ", version_string
, NULL
);
1610 ASM_GENERATE_INTERNAL_LABEL (text_end_label
, TEXT_END_LABEL
, 0);
1614 /* Not implemented in VMS Debug. */
1617 vmsdbgout_define (unsigned int lineno
, const char *buffer
)
1619 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1620 (*dwarf2_debug_hooks
.define
) (lineno
, buffer
);
1623 /* Not implemented in VMS Debug. */
1626 vmsdbgout_undef (unsigned int lineno
, const char *buffer
)
1628 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1629 (*dwarf2_debug_hooks
.undef
) (lineno
, buffer
);
1632 /* Not implemented in VMS Debug. */
1635 vmsdbgout_decl (tree decl
)
1637 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1638 (*dwarf2_debug_hooks
.function_decl
) (decl
);
1641 /* Not implemented in VMS Debug. */
1644 vmsdbgout_global_decl (tree decl
)
1646 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1647 (*dwarf2_debug_hooks
.global_decl
) (decl
);
1650 /* Not implemented in VMS Debug. */
1653 vmsdbgout_abstract_function (tree decl
)
1655 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1656 (*dwarf2_debug_hooks
.outlining_inline_function
) (decl
);
1659 /* Output stuff that Debug requires at the end of every file and generate the
1660 VMS Debug debugging info. */
1663 vmsdbgout_finish (const char *main_input_filename ATTRIBUTE_UNUSED
)
1668 if (write_symbols
== VMS_AND_DWARF2_DEBUG
)
1669 (*dwarf2_debug_hooks
.finish
) (main_input_filename
);
1671 if (debug_info_level
== DINFO_LEVEL_NONE
)
1674 /* Output a terminator label for the .text section. */
1676 targetm
.asm_out
.internal_label (asm_out_file
, TEXT_END_LABEL
, 0);
1678 /* Output debugging information.
1679 Warning! Do not change the name of the .vmsdebug section without
1680 changing it in the assembler also. */
1681 named_section (NULL_TREE
, ".vmsdebug", 0);
1682 ASM_OUTPUT_ALIGN (asm_out_file
, 0);
1684 totsize
= write_modbeg (1);
1685 for (i
= 1; i
< func_table_in_use
; i
++)
1687 totsize
+= write_rtnbeg (i
, 1);
1688 totsize
+= write_rtnend (i
, 1);
1690 totsize
+= write_pclines (1);
1693 for (i
= 1; i
< func_table_in_use
; i
++)
1695 write_rtnbeg (i
, 0);
1696 write_rtnend (i
, 0);
1700 if (debug_info_level
> DINFO_LEVEL_TERSE
)
1702 totsize
= write_srccorrs (1);
1706 totsize
= write_modend (1);
1709 #endif /* VMS_DEBUGGING_INFO */