1 /* dwarf2dbg.c - DWARF2 debug support
2 Copyright (C) 1999-2019 Free Software Foundation, Inc.
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
22 /* Logical line numbers can be controlled by the compiler via the
26 .loc FILENO LINENO [COLUMN] [basic_block] [prologue_end] \
27 [epilogue_begin] [is_stmt VALUE] [isa VALUE] \
32 #include "safe-ctype.h"
37 #ifdef HAVE_SYS_PARAM_H
38 #include <sys/param.h>
41 #define INT_MAX (int) (((unsigned) (-1)) >> 1)
45 #include "dwarf2dbg.h"
46 #include <filenames.h>
48 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
49 /* We need to decide which character to use as a directory separator.
50 Just because HAVE_DOS_BASED_FILE_SYSTEM is defined, it does not
51 necessarily mean that the backslash character is the one to use.
52 Some environments, eg Cygwin, can support both naming conventions.
53 So we use the heuristic that we only need to use the backslash if
54 the path is an absolute path starting with a DOS style drive
55 selector. eg C: or D: */
56 # define INSERT_DIR_SEPARATOR(string, offset) \
61 && string[1] == ':') \
62 string [offset] = '\\'; \
64 string [offset] = '/'; \
68 # define INSERT_DIR_SEPARATOR(string, offset) string[offset] = '/'
72 # define DWARF2_FORMAT(SEC) dwarf2_format_32bit
75 #ifndef DWARF2_ADDR_SIZE
76 # define DWARF2_ADDR_SIZE(bfd) (bfd_arch_bits_per_address (bfd) / 8)
79 #ifndef DWARF2_FILE_NAME
80 #define DWARF2_FILE_NAME(FILENAME, DIRNAME) FILENAME
83 #ifndef DWARF2_FILE_TIME_NAME
84 #define DWARF2_FILE_TIME_NAME(FILENAME,DIRNAME) 0
87 #ifndef DWARF2_FILE_SIZE_NAME
88 #define DWARF2_FILE_SIZE_NAME(FILENAME,DIRNAME) 0
91 #ifndef DWARF2_VERSION
92 #define DWARF2_VERSION 2
95 /* The .debug_aranges version has been 2 in DWARF version 2, 3 and 4. */
96 #ifndef DWARF2_ARANGES_VERSION
97 #define DWARF2_ARANGES_VERSION 2
100 /* This implementation outputs version 3 .debug_line information. */
101 #ifndef DWARF2_LINE_VERSION
102 #define DWARF2_LINE_VERSION 3
109 /* Since we can't generate the prolog until the body is complete, we
110 use three different subsegments for .debug_line: one holding the
111 prolog, one for the directory and filename info, and one for the
112 body ("statement program"). */
117 /* If linker relaxation might change offsets in the code, the DWARF special
118 opcodes and variable-length operands cannot be used. If this macro is
119 nonzero, use the DW_LNS_fixed_advance_pc opcode instead. */
120 #ifndef DWARF2_USE_FIXED_ADVANCE_PC
121 # define DWARF2_USE_FIXED_ADVANCE_PC linkrelax
124 /* First special line opcode - leave room for the standard opcodes.
125 Note: If you want to change this, you'll have to update the
126 "standard_opcode_lengths" table that is emitted below in
128 #define DWARF2_LINE_OPCODE_BASE 13
130 #ifndef DWARF2_LINE_BASE
131 /* Minimum line offset in a special line info. opcode. This value
132 was chosen to give a reasonable range of values. */
133 # define DWARF2_LINE_BASE -5
136 /* Range of line offsets in a special line info. opcode. */
137 #ifndef DWARF2_LINE_RANGE
138 # define DWARF2_LINE_RANGE 14
141 #ifndef DWARF2_LINE_MIN_INSN_LENGTH
142 /* Define the architecture-dependent minimum instruction length (in
143 bytes). This value should be rather too small than too big. */
144 # define DWARF2_LINE_MIN_INSN_LENGTH 1
147 /* Flag that indicates the initial value of the is_stmt_start flag. */
148 #define DWARF2_LINE_DEFAULT_IS_STMT 1
150 /* Given a special op, return the line skip amount. */
151 #define SPECIAL_LINE(op) \
152 (((op) - DWARF2_LINE_OPCODE_BASE)%DWARF2_LINE_RANGE + DWARF2_LINE_BASE)
154 /* Given a special op, return the address skip amount (in units of
155 DWARF2_LINE_MIN_INSN_LENGTH. */
156 #define SPECIAL_ADDR(op) (((op) - DWARF2_LINE_OPCODE_BASE)/DWARF2_LINE_RANGE)
158 /* The maximum address skip amount that can be encoded with a special op. */
159 #define MAX_SPECIAL_ADDR_DELTA SPECIAL_ADDR(255)
161 #ifndef TC_PARSE_CONS_RETURN_NONE
162 #define TC_PARSE_CONS_RETURN_NONE BFD_RELOC_NONE
167 struct line_entry *next;
169 struct dwarf2_line_info loc;
172 /* Don't change the offset of next in line_entry. set_or_check_view
173 calls in dwarf2_gen_line_info_1 depend on it. */
174 static char unused[offsetof(struct line_entry, next) ? -1 : 1]
179 struct line_subseg *next;
181 struct line_entry *head;
182 struct line_entry **ptail;
183 struct line_entry **pmove_tail;
188 struct line_seg *next;
190 struct line_subseg *head;
195 /* Collects data for all line table entries during assembly. */
196 static struct line_seg *all_segs;
197 static struct line_seg **last_seg_ptr;
201 const char *filename;
205 /* Table of files used by .debug_line. */
206 static struct file_entry *files;
207 static unsigned int files_in_use;
208 static unsigned int files_allocated;
210 /* Table of directories used by .debug_line. */
212 static unsigned int dirs_in_use;
213 static unsigned int dirs_allocated;
215 /* TRUE when we've seen a .loc directive recently. Used to avoid
216 doing work when there's nothing to do. */
217 bfd_boolean dwarf2_loc_directive_seen;
219 /* TRUE when we're supposed to set the basic block mark whenever a
221 bfd_boolean dwarf2_loc_mark_labels;
223 /* Current location as indicated by the most recent .loc directive. */
224 static struct dwarf2_line_info current =
227 DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0,
231 /* This symbol is used to recognize view number forced resets in loc
233 static symbolS *force_reset_view;
235 /* This symbol evaluates to an expression that, if nonzero, indicates
236 some view assert check failed. */
237 static symbolS *view_assert_failed;
239 /* The size of an address on the target. */
240 static unsigned int sizeof_address;
242 static unsigned int get_filenum (const char *, unsigned int);
244 #ifndef TC_DWARF2_EMIT_OFFSET
245 #define TC_DWARF2_EMIT_OFFSET generic_dwarf2_emit_offset
247 /* Create an offset to .dwarf2_*. */
250 generic_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
254 memset (&exp, 0, sizeof exp);
256 exp.X_add_symbol = symbol;
257 exp.X_add_number = 0;
258 emit_expr (&exp, size);
262 /* Find or create (if CREATE_P) an entry for SEG+SUBSEG in ALL_SEGS. */
264 static struct line_subseg *
265 get_line_subseg (segT seg, subsegT subseg, bfd_boolean create_p)
267 struct line_seg *s = seg_info (seg)->dwarf2_line_seg;
268 struct line_subseg **pss, *lss;
275 s = XNEW (struct line_seg);
280 last_seg_ptr = &s->next;
281 seg_info (seg)->dwarf2_line_seg = s;
283 gas_assert (seg == s->seg);
285 for (pss = &s->head; (lss = *pss) != NULL ; pss = &lss->next)
287 if (lss->subseg == subseg)
289 if (lss->subseg > subseg)
293 lss = XNEW (struct line_subseg);
295 lss->subseg = subseg;
297 lss->ptail = &lss->head;
298 lss->pmove_tail = &lss->head;
305 /* (Un)reverse the line_entry list starting from H. */
307 static struct line_entry *
308 reverse_line_entry_list (struct line_entry *h)
310 struct line_entry *p = NULL, *e, *n;
312 for (e = h; e; e = n)
321 /* Compute the view for E based on the previous entry P. If we
322 introduce an (undefined) view symbol for P, and H is given (P must
323 be the tail in this case), introduce view symbols for earlier list
324 entries as well, until one of them is constant. */
327 set_or_check_view (struct line_entry *e, struct line_entry *p,
328 struct line_entry *h)
332 memset (&viewx, 0, sizeof (viewx));
333 viewx.X_unsigned = 1;
335 /* First, compute !(E->label > P->label), to tell whether or not
336 we're to reset the view number. If we can't resolve it to a
337 constant, keep it symbolic. */
338 if (!p || (e->loc.view == force_reset_view && force_reset_view))
340 viewx.X_op = O_constant;
341 viewx.X_add_number = 0;
342 viewx.X_add_symbol = NULL;
343 viewx.X_op_symbol = NULL;
348 viewx.X_add_number = 0;
349 viewx.X_add_symbol = e->label;
350 viewx.X_op_symbol = p->label;
351 resolve_expression (&viewx);
352 if (viewx.X_op == O_constant)
353 viewx.X_add_number = !viewx.X_add_number;
356 viewx.X_add_symbol = make_expr_symbol (&viewx);
357 viewx.X_add_number = 0;
358 viewx.X_op_symbol = NULL;
359 viewx.X_op = O_logical_not;
363 if (S_IS_DEFINED (e->loc.view) && symbol_constant_p (e->loc.view))
365 expressionS *value = symbol_get_value_expression (e->loc.view);
366 /* We can't compare the view numbers at this point, because in
367 VIEWX we've only determined whether we're to reset it so
369 if (viewx.X_op == O_constant)
371 if (!value->X_add_number != !viewx.X_add_number)
372 as_bad (_("view number mismatch"));
374 /* Record the expression to check it later. It is the result of
375 a logical not, thus 0 or 1. We just add up all such deferred
376 expressions, and resolve it at the end. */
377 else if (!value->X_add_number)
379 symbolS *deferred = make_expr_symbol (&viewx);
380 if (view_assert_failed)
384 memset (&chk, 0, sizeof (chk));
387 chk.X_add_number = 0;
388 chk.X_add_symbol = view_assert_failed;
389 chk.X_op_symbol = deferred;
390 deferred = make_expr_symbol (&chk);
392 view_assert_failed = deferred;
396 if (viewx.X_op != O_constant || viewx.X_add_number)
402 p->loc.view = symbol_temp_make ();
403 gas_assert (!S_IS_DEFINED (p->loc.view));
406 memset (&incv, 0, sizeof (incv));
408 incv.X_op = O_symbol;
409 incv.X_add_symbol = p->loc.view;
410 incv.X_add_number = 1;
412 if (viewx.X_op == O_constant)
414 gas_assert (viewx.X_add_number == 1);
419 viewx.X_add_symbol = make_expr_symbol (&viewx);
420 viewx.X_add_number = 0;
421 viewx.X_op_symbol = make_expr_symbol (&incv);
422 viewx.X_op = O_multiply;
426 if (!S_IS_DEFINED (e->loc.view))
428 symbol_set_value_expression (e->loc.view, &viewx);
429 S_SET_SEGMENT (e->loc.view, expr_section);
430 symbol_set_frag (e->loc.view, &zero_address_frag);
433 /* Define and attempt to simplify any earlier views needed to
435 if (h && p && p->loc.view && !S_IS_DEFINED (p->loc.view))
437 struct line_entry *h2;
438 /* Reverse the list to avoid quadratic behavior going backwards
439 in a single-linked list. */
440 struct line_entry *r = reverse_line_entry_list (h);
443 /* Set or check views until we find a defined or absent view. */
446 /* Do not define the head of a (sub?)segment view while
447 handling others. It would be defined too early, without
448 regard to the last view of other subsegments.
449 set_or_check_view will be called for every head segment
453 set_or_check_view (r, r->next, NULL);
455 while (r->next && r->next->loc.view && !S_IS_DEFINED (r->next->loc.view)
458 /* Unreverse the list, so that we can go forward again. */
459 h2 = reverse_line_entry_list (p);
460 gas_assert (h2 == h);
462 /* Starting from the last view we just defined, attempt to
463 simplify the view expressions, until we do so to P. */
466 /* The head view of a subsegment may remain undefined while
467 handling other elements, before it is linked to the last
468 view of the previous subsegment. */
471 gas_assert (S_IS_DEFINED (r->loc.view));
472 resolve_expression (symbol_get_value_expression (r->loc.view));
474 while (r != p && (r = r->next));
476 /* Now that we've defined and computed all earlier views that might
477 be needed to compute E's, attempt to simplify it. */
478 resolve_expression (symbol_get_value_expression (e->loc.view));
482 /* Record an entry for LOC occurring at LABEL. */
485 dwarf2_gen_line_info_1 (symbolS *label, struct dwarf2_line_info *loc)
487 struct line_subseg *lss;
488 struct line_entry *e;
490 e = XNEW (struct line_entry);
495 lss = get_line_subseg (now_seg, now_subseg, TRUE);
497 /* Subseg heads are chained to previous subsegs in
499 if (loc->view && lss->head)
500 set_or_check_view (e,
501 (struct line_entry *)lss->ptail,
505 lss->ptail = &e->next;
508 /* Record an entry for LOC occurring at OFS within the current fragment. */
511 dwarf2_gen_line_info (addressT ofs, struct dwarf2_line_info *loc)
513 static unsigned int line = -1;
514 static unsigned int filenum = -1;
518 /* Early out for as-yet incomplete location information. */
519 if (loc->filenum == 0 || loc->line == 0)
522 /* Don't emit sequences of line symbols for the same line when the
523 symbols apply to assembler code. It is necessary to emit
524 duplicate line symbols when a compiler asks for them, because GDB
525 uses them to determine the end of the prologue. */
526 if (debug_type == DEBUG_DWARF2
527 && line == loc->line && filenum == loc->filenum)
531 filenum = loc->filenum;
537 /* Use a non-fake name for the line number location,
538 so that it can be referred to by relocations. */
539 sprintf (name, ".Loc.%u.%u", line, filenum);
540 sym = symbol_new (name, now_seg, ofs, frag_now);
543 sym = symbol_temp_new (now_seg, ofs, frag_now);
544 dwarf2_gen_line_info_1 (sym, loc);
547 /* Returns the current source information. If .file directives have
548 been encountered, the info for the corresponding source file is
549 returned. Otherwise, the info for the assembly source file is
553 dwarf2_where (struct dwarf2_line_info *line)
555 if (debug_type == DEBUG_DWARF2)
557 const char *filename;
559 memset (line, 0, sizeof (*line));
560 filename = as_where (&line->line);
561 line->filenum = get_filenum (filename, 0);
563 line->flags = DWARF2_FLAG_IS_STMT;
564 line->isa = current.isa;
565 line->discriminator = current.discriminator;
572 /* A hook to allow the target backend to inform the line number state
573 machine of isa changes when assembler debug info is enabled. */
576 dwarf2_set_isa (unsigned int isa)
581 /* Called for each machine instruction, or relatively atomic group of
582 machine instructions (ie built-in macro). The instruction or group
583 is SIZE bytes in length. If dwarf2 line number generation is called
584 for, emit a line statement appropriately. */
587 dwarf2_emit_insn (int size)
589 struct dwarf2_line_info loc;
591 if (debug_type != DEBUG_DWARF2
592 ? !dwarf2_loc_directive_seen
593 : !seen_at_least_1_file ())
598 dwarf2_gen_line_info ((frag_now_fix_octets () - size) / OCTETS_PER_BYTE, &loc);
599 dwarf2_consume_line_info ();
602 /* Move all previously-emitted line entries for the current position by
603 DELTA bytes. This function cannot be used to move the same entries
607 dwarf2_move_insn (int delta)
609 struct line_subseg *lss;
610 struct line_entry *e;
616 lss = get_line_subseg (now_seg, now_subseg, FALSE);
620 now = frag_now_fix ();
621 while ((e = *lss->pmove_tail))
623 if (S_GET_VALUE (e->label) == now)
624 S_SET_VALUE (e->label, now + delta);
625 lss->pmove_tail = &e->next;
629 /* Called after the current line information has been either used with
630 dwarf2_gen_line_info or saved with a machine instruction for later use.
631 This resets the state of the line number information to reflect that
635 dwarf2_consume_line_info (void)
637 /* Unless we generate DWARF2 debugging information for each
638 assembler line, we only emit one line symbol for one LOC. */
639 dwarf2_loc_directive_seen = FALSE;
641 current.flags &= ~(DWARF2_FLAG_BASIC_BLOCK
642 | DWARF2_FLAG_PROLOGUE_END
643 | DWARF2_FLAG_EPILOGUE_BEGIN);
644 current.discriminator = 0;
648 /* Called for each (preferably code) label. If dwarf2_loc_mark_labels
649 is enabled, emit a basic block marker. */
652 dwarf2_emit_label (symbolS *label)
654 struct dwarf2_line_info loc;
656 if (!dwarf2_loc_mark_labels)
658 if (S_GET_SEGMENT (label) != now_seg)
660 if (!(bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE))
662 if (files_in_use == 0 && debug_type != DEBUG_DWARF2)
667 loc.flags |= DWARF2_FLAG_BASIC_BLOCK;
669 dwarf2_gen_line_info_1 (label, &loc);
670 dwarf2_consume_line_info ();
673 /* Get a .debug_line file number for FILENAME. If NUM is nonzero,
674 allocate it on that file table slot, otherwise return the first
678 get_filenum (const char *filename, unsigned int num)
680 static unsigned int last_used, last_used_dir_len;
685 if (num == 0 && last_used)
687 if (! files[last_used].dir
688 && filename_cmp (filename, files[last_used].filename) == 0)
690 if (files[last_used].dir
691 && filename_ncmp (filename, dirs[files[last_used].dir],
692 last_used_dir_len) == 0
693 && IS_DIR_SEPARATOR (filename [last_used_dir_len])
694 && filename_cmp (filename + last_used_dir_len + 1,
695 files[last_used].filename) == 0)
699 file = lbasename (filename);
700 /* Don't make empty string from / or A: from A:/ . */
701 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
702 if (file <= filename + 3)
705 if (file == filename + 1)
708 dir_len = file - filename;
713 #ifndef DWARF2_DIR_SHOULD_END_WITH_SEPARATOR
716 for (dir = 1; dir < dirs_in_use; ++dir)
717 if (filename_ncmp (filename, dirs[dir], dir_len) == 0
718 && dirs[dir][dir_len] == '\0')
721 if (dir >= dirs_in_use)
723 if (dir >= dirs_allocated)
725 dirs_allocated = dir + 32;
726 dirs = XRESIZEVEC (char *, dirs, dirs_allocated);
729 dirs[dir] = xmemdup0 (filename, dir_len);
730 dirs_in_use = dir + 1;
736 for (i = 1; i < files_in_use; ++i)
737 if (files[i].dir == dir
739 && filename_cmp (file, files[i].filename) == 0)
742 last_used_dir_len = dir_len;
749 if (i >= files_allocated)
751 unsigned int old = files_allocated;
753 files_allocated = i + 32;
754 /* Catch wraparound. */
755 if (files_allocated <= old)
757 as_bad (_("file number %lu is too big"), (unsigned long) i);
761 files = XRESIZEVEC (struct file_entry, files, files_allocated);
762 memset (files + old, 0, (i + 32 - old) * sizeof (struct file_entry));
765 files[i].filename = file;
767 if (files_in_use < i + 1)
768 files_in_use = i + 1;
770 last_used_dir_len = dir_len;
775 /* Handle two forms of .file directive:
776 - Pass .file "source.c" to s_app_file
777 - Handle .file 1 "source.c" by adding an entry to the DWARF-2 file table
779 If an entry is added to the file table, return a pointer to the filename. */
782 dwarf2_directive_filename (void)
788 /* Continue to accept a bare string and pass it off. */
790 if (*input_line_pointer == '"')
796 num = get_absolute_expression ();
797 filename = demand_copy_C_string (&filename_len);
798 if (filename == NULL)
800 demand_empty_rest_of_line ();
802 if ((offsetT) num < 1)
804 as_bad (_("file number less than one"));
808 /* A .file directive implies compiler generated debug information is
809 being supplied. Turn off gas generated debug info. */
810 debug_type = DEBUG_NONE;
812 if (num != (unsigned int) num
813 || num >= (size_t) -1 / sizeof (struct file_entry) - 32)
815 as_bad (_("file number %lu is too big"), (unsigned long) num);
818 if (num < files_in_use && files[num].filename != 0)
820 as_bad (_("file number %u already allocated"), (unsigned int) num);
824 get_filenum (filename, (unsigned int) num);
829 /* Calls dwarf2_directive_filename, but discards its result.
830 Used in pseudo-op tables where the function result is ignored. */
833 dwarf2_directive_file (int dummy ATTRIBUTE_UNUSED)
835 (void) dwarf2_directive_filename ();
839 dwarf2_directive_loc (int dummy ATTRIBUTE_UNUSED)
841 offsetT filenum, line;
843 /* If we see two .loc directives in a row, force the first one to be
845 if (dwarf2_loc_directive_seen)
846 dwarf2_emit_insn (0);
848 filenum = get_absolute_expression ();
850 line = get_absolute_expression ();
854 as_bad (_("file number less than one"));
857 if (filenum >= (int) files_in_use || files[filenum].filename == 0)
859 as_bad (_("unassigned file number %ld"), (long) filenum);
863 current.filenum = filenum;
865 current.discriminator = 0;
870 if (files[filenum].dir)
872 size_t dir_len = strlen (dirs[files[filenum].dir]);
873 size_t file_len = strlen (files[filenum].filename);
874 char *cp = XNEWVEC (char, dir_len + 1 + file_len + 1);
876 memcpy (cp, dirs[files[filenum].dir], dir_len);
877 INSERT_DIR_SEPARATOR (cp, dir_len);
878 memcpy (cp + dir_len + 1, files[filenum].filename, file_len);
879 cp[dir_len + file_len + 1] = '\0';
880 listing_source_file (cp);
884 listing_source_file (files[filenum].filename);
885 listing_source_line (line);
890 if (ISDIGIT (*input_line_pointer))
892 current.column = get_absolute_expression ();
896 while (ISALPHA (*input_line_pointer))
901 c = get_symbol_name (& p);
903 if (strcmp (p, "basic_block") == 0)
905 current.flags |= DWARF2_FLAG_BASIC_BLOCK;
906 *input_line_pointer = c;
908 else if (strcmp (p, "prologue_end") == 0)
910 current.flags |= DWARF2_FLAG_PROLOGUE_END;
911 *input_line_pointer = c;
913 else if (strcmp (p, "epilogue_begin") == 0)
915 current.flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
916 *input_line_pointer = c;
918 else if (strcmp (p, "is_stmt") == 0)
920 (void) restore_line_pointer (c);
921 value = get_absolute_expression ();
923 current.flags &= ~DWARF2_FLAG_IS_STMT;
925 current.flags |= DWARF2_FLAG_IS_STMT;
928 as_bad (_("is_stmt value not 0 or 1"));
932 else if (strcmp (p, "isa") == 0)
934 (void) restore_line_pointer (c);
935 value = get_absolute_expression ();
940 as_bad (_("isa number less than zero"));
944 else if (strcmp (p, "discriminator") == 0)
946 (void) restore_line_pointer (c);
947 value = get_absolute_expression ();
949 current.discriminator = value;
952 as_bad (_("discriminator less than zero"));
956 else if (strcmp (p, "view") == 0)
960 (void) restore_line_pointer (c);
963 if (ISDIGIT (*input_line_pointer)
964 || *input_line_pointer == '-')
966 bfd_boolean force_reset = *input_line_pointer == '-';
968 value = get_absolute_expression ();
971 as_bad (_("numeric view can only be asserted to zero"));
974 if (force_reset && force_reset_view)
975 sym = force_reset_view;
978 sym = symbol_temp_new (absolute_section, value,
981 force_reset_view = sym;
986 char *name = read_symbol_name ();
990 sym = symbol_find_or_make (name);
991 if (S_IS_DEFINED (sym) || symbol_equated_p (sym))
993 if (S_IS_VOLATILE (sym))
994 sym = symbol_clone (sym, 1);
995 else if (!S_CAN_BE_REDEFINED (sym))
997 as_bad (_("symbol `%s' is already defined"), name);
1001 S_SET_SEGMENT (sym, undefined_section);
1002 S_SET_VALUE (sym, 0);
1003 symbol_set_frag (sym, &zero_address_frag);
1009 as_bad (_("unknown .loc sub-directive `%s'"), p);
1010 (void) restore_line_pointer (c);
1014 SKIP_WHITESPACE_AFTER_NAME ();
1017 demand_empty_rest_of_line ();
1018 dwarf2_loc_directive_seen = TRUE;
1019 debug_type = DEBUG_NONE;
1021 /* If we were given a view id, emit the row right away. */
1023 dwarf2_emit_insn (0);
1027 dwarf2_directive_loc_mark_labels (int dummy ATTRIBUTE_UNUSED)
1029 offsetT value = get_absolute_expression ();
1031 if (value != 0 && value != 1)
1033 as_bad (_("expected 0 or 1"));
1034 ignore_rest_of_line ();
1038 dwarf2_loc_mark_labels = value != 0;
1039 demand_empty_rest_of_line ();
1043 static struct frag *
1044 first_frag_for_seg (segT seg)
1046 return seg_info (seg)->frchainP->frch_root;
1049 static struct frag *
1050 last_frag_for_seg (segT seg)
1052 frchainS *f = seg_info (seg)->frchainP;
1054 while (f->frch_next != NULL)
1057 return f->frch_last;
1060 /* Emit a single byte into the current segment. */
1065 FRAG_APPEND_1_CHAR (byte);
1068 /* Emit a statement program opcode into the current segment. */
1071 out_opcode (int opc)
1076 /* Emit a two-byte word into the current segment. */
1081 md_number_to_chars (frag_more (2), data, 2);
1084 /* Emit a four byte word into the current segment. */
1089 md_number_to_chars (frag_more (4), data, 4);
1092 /* Emit an unsigned "little-endian base 128" number. */
1095 out_uleb128 (addressT value)
1097 output_leb128 (frag_more (sizeof_leb128 (value, 0)), value, 0);
1100 /* Emit a signed "little-endian base 128" number. */
1103 out_leb128 (addressT value)
1105 output_leb128 (frag_more (sizeof_leb128 (value, 1)), value, 1);
1108 /* Emit a tuple for .debug_abbrev. */
1111 out_abbrev (int name, int form)
1117 /* Get the size of a fragment. */
1120 get_frag_fix (fragS *frag, segT seg)
1125 return frag->fr_fix;
1127 /* If a fragment is the last in the chain, special measures must be
1128 taken to find its size before relaxation, since it may be pending
1129 on some subsegment chain. */
1130 for (fr = seg_info (seg)->frchainP; fr; fr = fr->frch_next)
1131 if (fr->frch_last == frag)
1132 return (char *) obstack_next_free (&fr->frch_obstack) - frag->fr_literal;
1137 /* Set an absolute address (may result in a relocation entry). */
1140 out_inc_line_addr (int line_delta, addressT addr_delta);
1143 out_set_addr (symbolS *sym)
1146 addressT expr_addr, expr_addr_aligned;
1148 memset (&exp, 0, sizeof exp);
1150 /* The expression at the bottom must be aligned to OCTETS_PER_BYTE. The
1151 statements after the for loop will contribute 3 more octets. */
1152 expr_addr = frag_now_fix_octets () + 3;
1153 expr_addr_aligned = (expr_addr + OCTETS_PER_BYTE - 1) & -OCTETS_PER_BYTE;
1154 for ( ; expr_addr != expr_addr_aligned; expr_addr++)
1155 out_inc_line_addr (0, 0); /* NOP */
1157 out_opcode (DW_LNS_extended_op); /* 1 octet */
1158 out_uleb128 (sizeof_address + 1); /* 1 octet */
1160 out_opcode (DW_LNE_set_address); /* 1 octet */
1161 exp.X_op = O_symbol;
1162 exp.X_add_symbol = sym;
1163 exp.X_add_number = 0;
1164 emit_expr (&exp, sizeof_address);
1167 static void scale_addr_delta (addressT *);
1170 scale_addr_delta (addressT *addr_delta)
1172 static int printed_this = 0;
1173 if (DWARF2_LINE_MIN_INSN_LENGTH > 1)
1175 if (*addr_delta % DWARF2_LINE_MIN_INSN_LENGTH != 0 && !printed_this)
1177 as_bad("unaligned opcodes detected in executable segment");
1180 *addr_delta /= DWARF2_LINE_MIN_INSN_LENGTH;
1184 /* Encode a pair of line and address skips as efficiently as possible.
1185 Note that the line skip is signed, whereas the address skip is unsigned.
1187 The following two routines *must* be kept in sync. This is
1188 enforced by making emit_inc_line_addr abort if we do not emit
1189 exactly the expected number of bytes. */
1192 size_inc_line_addr (int line_delta, addressT addr_delta)
1194 unsigned int tmp, opcode;
1197 /* Scale the address delta by the minimum instruction length. */
1198 scale_addr_delta (&addr_delta);
1200 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence.
1201 We cannot use special opcodes here, since we want the end_sequence
1202 to emit the matrix entry. */
1203 if (line_delta == INT_MAX)
1205 if (addr_delta == MAX_SPECIAL_ADDR_DELTA)
1207 else if (addr_delta)
1208 len = 1 + sizeof_leb128 (addr_delta, 0);
1212 /* Bias the line delta by the base. */
1213 tmp = line_delta - DWARF2_LINE_BASE;
1215 /* If the line increment is out of range of a special opcode, we
1216 must encode it with DW_LNS_advance_line. */
1217 if (tmp >= DWARF2_LINE_RANGE)
1219 len = 1 + sizeof_leb128 (line_delta, 1);
1221 tmp = 0 - DWARF2_LINE_BASE;
1224 /* Bias the opcode by the special opcode base. */
1225 tmp += DWARF2_LINE_OPCODE_BASE;
1227 /* Avoid overflow when addr_delta is large. */
1228 if (addr_delta < 256 + MAX_SPECIAL_ADDR_DELTA)
1230 /* Try using a special opcode. */
1231 opcode = tmp + addr_delta * DWARF2_LINE_RANGE;
1235 /* Try using DW_LNS_const_add_pc followed by special op. */
1236 opcode = tmp + (addr_delta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
1241 /* Otherwise use DW_LNS_advance_pc. */
1242 len += 1 + sizeof_leb128 (addr_delta, 0);
1244 /* DW_LNS_copy or special opcode. */
1251 emit_inc_line_addr (int line_delta, addressT addr_delta, char *p, int len)
1253 unsigned int tmp, opcode;
1255 char *end = p + len;
1257 /* Line number sequences cannot go backward in addresses. This means
1258 we've incorrectly ordered the statements in the sequence. */
1259 gas_assert ((offsetT) addr_delta >= 0);
1261 /* Scale the address delta by the minimum instruction length. */
1262 scale_addr_delta (&addr_delta);
1264 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence.
1265 We cannot use special opcodes here, since we want the end_sequence
1266 to emit the matrix entry. */
1267 if (line_delta == INT_MAX)
1269 if (addr_delta == MAX_SPECIAL_ADDR_DELTA)
1270 *p++ = DW_LNS_const_add_pc;
1271 else if (addr_delta)
1273 *p++ = DW_LNS_advance_pc;
1274 p += output_leb128 (p, addr_delta, 0);
1277 *p++ = DW_LNS_extended_op;
1279 *p++ = DW_LNE_end_sequence;
1283 /* Bias the line delta by the base. */
1284 tmp = line_delta - DWARF2_LINE_BASE;
1286 /* If the line increment is out of range of a special opcode, we
1287 must encode it with DW_LNS_advance_line. */
1288 if (tmp >= DWARF2_LINE_RANGE)
1290 *p++ = DW_LNS_advance_line;
1291 p += output_leb128 (p, line_delta, 1);
1294 tmp = 0 - DWARF2_LINE_BASE;
1298 /* Prettier, I think, to use DW_LNS_copy instead of a "line +0, addr +0"
1300 if (line_delta == 0 && addr_delta == 0)
1306 /* Bias the opcode by the special opcode base. */
1307 tmp += DWARF2_LINE_OPCODE_BASE;
1309 /* Avoid overflow when addr_delta is large. */
1310 if (addr_delta < 256 + MAX_SPECIAL_ADDR_DELTA)
1312 /* Try using a special opcode. */
1313 opcode = tmp + addr_delta * DWARF2_LINE_RANGE;
1320 /* Try using DW_LNS_const_add_pc followed by special op. */
1321 opcode = tmp + (addr_delta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
1324 *p++ = DW_LNS_const_add_pc;
1330 /* Otherwise use DW_LNS_advance_pc. */
1331 *p++ = DW_LNS_advance_pc;
1332 p += output_leb128 (p, addr_delta, 0);
1340 gas_assert (p == end);
1343 /* Handy routine to combine calls to the above two routines. */
1346 out_inc_line_addr (int line_delta, addressT addr_delta)
1348 int len = size_inc_line_addr (line_delta, addr_delta);
1349 emit_inc_line_addr (line_delta, addr_delta, frag_more (len), len);
1352 /* Write out an alternative form of line and address skips using
1353 DW_LNS_fixed_advance_pc opcodes. This uses more space than the default
1354 line and address information, but it is required if linker relaxation
1355 could change the code offsets. The following two routines *must* be
1357 #define ADDR_DELTA_LIMIT 50000
1360 size_fixed_inc_line_addr (int line_delta, addressT addr_delta)
1364 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence. */
1365 if (line_delta != INT_MAX)
1366 len = 1 + sizeof_leb128 (line_delta, 1);
1368 if (addr_delta > ADDR_DELTA_LIMIT)
1370 /* DW_LNS_extended_op */
1371 len += 1 + sizeof_leb128 (sizeof_address + 1, 0);
1372 /* DW_LNE_set_address */
1373 len += 1 + sizeof_address;
1376 /* DW_LNS_fixed_advance_pc */
1379 if (line_delta == INT_MAX)
1380 /* DW_LNS_extended_op + DW_LNE_end_sequence */
1390 emit_fixed_inc_line_addr (int line_delta, addressT addr_delta, fragS *frag,
1394 char *end = p + len;
1396 /* Line number sequences cannot go backward in addresses. This means
1397 we've incorrectly ordered the statements in the sequence. */
1398 gas_assert ((offsetT) addr_delta >= 0);
1400 /* Verify that we have kept in sync with size_fixed_inc_line_addr. */
1401 gas_assert (len == size_fixed_inc_line_addr (line_delta, addr_delta));
1403 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence. */
1404 if (line_delta != INT_MAX)
1406 *p++ = DW_LNS_advance_line;
1407 p += output_leb128 (p, line_delta, 1);
1410 pexp = symbol_get_value_expression (frag->fr_symbol);
1412 /* The DW_LNS_fixed_advance_pc opcode has a 2-byte operand so it can
1413 advance the address by at most 64K. Linker relaxation (without
1414 which this function would not be used) could change the operand by
1415 an unknown amount. If the address increment is getting close to
1416 the limit, just reset the address. */
1417 if (addr_delta > ADDR_DELTA_LIMIT)
1422 memset (&exp, 0, sizeof exp);
1423 gas_assert (pexp->X_op == O_subtract);
1424 to_sym = pexp->X_add_symbol;
1426 *p++ = DW_LNS_extended_op;
1427 p += output_leb128 (p, sizeof_address + 1, 0);
1428 *p++ = DW_LNE_set_address;
1429 exp.X_op = O_symbol;
1430 exp.X_add_symbol = to_sym;
1431 exp.X_add_number = 0;
1432 emit_expr_fix (&exp, sizeof_address, frag, p, TC_PARSE_CONS_RETURN_NONE);
1433 p += sizeof_address;
1437 *p++ = DW_LNS_fixed_advance_pc;
1438 emit_expr_fix (pexp, 2, frag, p, TC_PARSE_CONS_RETURN_NONE);
1442 if (line_delta == INT_MAX)
1444 *p++ = DW_LNS_extended_op;
1446 *p++ = DW_LNE_end_sequence;
1451 gas_assert (p == end);
1454 /* Generate a variant frag that we can use to relax address/line
1455 increments between fragments of the target segment. */
1458 relax_inc_line_addr (int line_delta, symbolS *to_sym, symbolS *from_sym)
1463 memset (&exp, 0, sizeof exp);
1464 exp.X_op = O_subtract;
1465 exp.X_add_symbol = to_sym;
1466 exp.X_op_symbol = from_sym;
1467 exp.X_add_number = 0;
1469 /* The maximum size of the frag is the line delta with a maximum
1470 sized address delta. */
1471 if (DWARF2_USE_FIXED_ADVANCE_PC)
1472 max_chars = size_fixed_inc_line_addr (line_delta,
1473 -DWARF2_LINE_MIN_INSN_LENGTH);
1475 max_chars = size_inc_line_addr (line_delta, -DWARF2_LINE_MIN_INSN_LENGTH);
1477 frag_var (rs_dwarf2dbg, max_chars, max_chars, 1,
1478 make_expr_symbol (&exp), line_delta, NULL);
1481 /* The function estimates the size of a rs_dwarf2dbg variant frag
1482 based on the current values of the symbols. It is called before
1483 the relaxation loop. We set fr_subtype to the expected length. */
1486 dwarf2dbg_estimate_size_before_relax (fragS *frag)
1491 addr_delta = resolve_symbol_value (frag->fr_symbol);
1492 if (DWARF2_USE_FIXED_ADVANCE_PC)
1493 size = size_fixed_inc_line_addr (frag->fr_offset, addr_delta);
1495 size = size_inc_line_addr (frag->fr_offset, addr_delta);
1497 frag->fr_subtype = size;
1502 /* This function relaxes a rs_dwarf2dbg variant frag based on the
1503 current values of the symbols. fr_subtype is the current length
1504 of the frag. This returns the change in frag length. */
1507 dwarf2dbg_relax_frag (fragS *frag)
1509 int old_size, new_size;
1511 old_size = frag->fr_subtype;
1512 new_size = dwarf2dbg_estimate_size_before_relax (frag);
1514 return new_size - old_size;
1517 /* This function converts a rs_dwarf2dbg variant frag into a normal
1518 fill frag. This is called after all relaxation has been done.
1519 fr_subtype will be the desired length of the frag. */
1522 dwarf2dbg_convert_frag (fragS *frag)
1526 if (DWARF2_USE_FIXED_ADVANCE_PC)
1528 /* If linker relaxation is enabled then the distance between the two
1529 symbols in the frag->fr_symbol expression might change. Hence we
1530 cannot rely upon the value computed by resolve_symbol_value.
1531 Instead we leave the expression unfinalized and allow
1532 emit_fixed_inc_line_addr to create a fixup (which later becomes a
1533 relocation) that will allow the linker to correctly compute the
1534 actual address difference. We have to use a fixed line advance for
1535 this as we cannot (easily) relocate leb128 encoded values. */
1536 int saved_finalize_syms = finalize_syms;
1539 addr_diff = resolve_symbol_value (frag->fr_symbol);
1540 finalize_syms = saved_finalize_syms;
1543 addr_diff = resolve_symbol_value (frag->fr_symbol);
1545 /* fr_var carries the max_chars that we created the fragment with.
1546 fr_subtype carries the current expected length. We must, of
1547 course, have allocated enough memory earlier. */
1548 gas_assert (frag->fr_var >= (int) frag->fr_subtype);
1550 if (DWARF2_USE_FIXED_ADVANCE_PC)
1551 emit_fixed_inc_line_addr (frag->fr_offset, addr_diff, frag,
1552 frag->fr_literal + frag->fr_fix,
1555 emit_inc_line_addr (frag->fr_offset, addr_diff,
1556 frag->fr_literal + frag->fr_fix, frag->fr_subtype);
1558 frag->fr_fix += frag->fr_subtype;
1559 frag->fr_type = rs_fill;
1561 frag->fr_offset = 0;
1564 /* Generate .debug_line content for the chain of line number entries
1565 beginning at E, for segment SEG. */
1568 process_entries (segT seg, struct line_entry *e)
1570 unsigned filenum = 1;
1572 unsigned column = 0;
1574 unsigned flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
1575 fragS *last_frag = NULL, *frag;
1576 addressT last_frag_ofs = 0, frag_ofs;
1577 symbolS *last_lab = NULL, *lab;
1578 struct line_entry *next;
1580 if (flag_dwarf_sections)
1583 const char * sec_name;
1585 /* Switch to the relevant sub-section before we start to emit
1586 the line number table.
1588 FIXME: These sub-sections do not have a normal Line Number
1589 Program Header, thus strictly speaking they are not valid
1590 DWARF sections. Unfortunately the DWARF standard assumes
1591 a one-to-one relationship between compilation units and
1592 line number tables. Thus we have to have a .debug_line
1593 section, as well as our sub-sections, and we have to ensure
1594 that all of the sub-sections are merged into a proper
1595 .debug_line section before a debugger sees them. */
1597 sec_name = bfd_get_section_name (stdoutput, seg);
1598 if (strcmp (sec_name, ".text") != 0)
1600 name = concat (".debug_line", sec_name, (char *) NULL);
1601 subseg_set (subseg_get (name, FALSE), 0);
1604 /* Don't create a .debug_line.text section -
1605 that is redundant. Instead just switch back to the
1606 normal .debug_line section. */
1607 subseg_set (subseg_get (".debug_line", FALSE), 0);
1614 if (filenum != e->loc.filenum)
1616 filenum = e->loc.filenum;
1617 out_opcode (DW_LNS_set_file);
1618 out_uleb128 (filenum);
1621 if (column != e->loc.column)
1623 column = e->loc.column;
1624 out_opcode (DW_LNS_set_column);
1625 out_uleb128 (column);
1628 if (e->loc.discriminator != 0)
1630 out_opcode (DW_LNS_extended_op);
1631 out_leb128 (1 + sizeof_leb128 (e->loc.discriminator, 0));
1632 out_opcode (DW_LNE_set_discriminator);
1633 out_uleb128 (e->loc.discriminator);
1636 if (isa != e->loc.isa)
1639 out_opcode (DW_LNS_set_isa);
1643 if ((e->loc.flags ^ flags) & DWARF2_FLAG_IS_STMT)
1645 flags = e->loc.flags;
1646 out_opcode (DW_LNS_negate_stmt);
1649 if (e->loc.flags & DWARF2_FLAG_BASIC_BLOCK)
1650 out_opcode (DW_LNS_set_basic_block);
1652 if (e->loc.flags & DWARF2_FLAG_PROLOGUE_END)
1653 out_opcode (DW_LNS_set_prologue_end);
1655 if (e->loc.flags & DWARF2_FLAG_EPILOGUE_BEGIN)
1656 out_opcode (DW_LNS_set_epilogue_begin);
1658 /* Don't try to optimize away redundant entries; gdb wants two
1659 entries for a function where the code starts on the same line as
1660 the {, and there's no way to identify that case here. Trust gcc
1661 to optimize appropriately. */
1662 line_delta = e->loc.line - line;
1664 frag = symbol_get_frag (lab);
1665 frag_ofs = S_GET_VALUE (lab);
1667 if (last_frag == NULL
1668 || (e->loc.view == force_reset_view && force_reset_view
1669 /* If we're going to reset the view, but we know we're
1670 advancing the PC, we don't have to force with
1671 set_address. We know we do when we're at the same
1672 address of the same frag, and we know we might when
1673 we're in the beginning of a frag, and we were at the
1674 end of the previous frag. */
1675 && (frag == last_frag
1676 ? (last_frag_ofs == frag_ofs)
1678 && ((offsetT)last_frag_ofs
1679 >= get_frag_fix (last_frag, seg))))))
1682 out_inc_line_addr (line_delta, 0);
1684 else if (frag == last_frag && ! DWARF2_USE_FIXED_ADVANCE_PC)
1685 out_inc_line_addr (line_delta, frag_ofs - last_frag_ofs);
1687 relax_inc_line_addr (line_delta, lab, last_lab);
1692 last_frag_ofs = frag_ofs;
1700 /* Emit a DW_LNE_end_sequence for the end of the section. */
1701 frag = last_frag_for_seg (seg);
1702 frag_ofs = get_frag_fix (frag, seg);
1703 if (frag == last_frag && ! DWARF2_USE_FIXED_ADVANCE_PC)
1704 out_inc_line_addr (INT_MAX, frag_ofs - last_frag_ofs);
1707 lab = symbol_temp_new (seg, frag_ofs, frag);
1708 relax_inc_line_addr (INT_MAX, lab, last_lab);
1712 /* Emit the directory and file tables for .debug_line. */
1715 out_file_list (void)
1722 /* Emit directory list. */
1723 for (i = 1; i < dirs_in_use; ++i)
1725 dir = remap_debug_filename (dirs[i]);
1726 size = strlen (dir) + 1;
1727 cp = frag_more (size);
1728 memcpy (cp, dir, size);
1733 for (i = 1; i < files_in_use; ++i)
1735 const char *fullfilename;
1737 if (files[i].filename == NULL)
1739 as_bad (_("unassigned file number %ld"), (long) i);
1740 /* Prevent a crash later, particularly for file 1. */
1741 files[i].filename = "";
1745 fullfilename = DWARF2_FILE_NAME (files[i].filename,
1746 files[i].dir ? dirs [files [i].dir] : "");
1747 size = strlen (fullfilename) + 1;
1748 cp = frag_more (size);
1749 memcpy (cp, fullfilename, size);
1751 out_uleb128 (files[i].dir); /* directory number */
1752 /* Output the last modification timestamp. */
1753 out_uleb128 (DWARF2_FILE_TIME_NAME (files[i].filename,
1754 files[i].dir ? dirs [files [i].dir] : ""));
1755 /* Output the filesize. */
1756 out_uleb128 (DWARF2_FILE_SIZE_NAME (files[i].filename,
1757 files[i].dir ? dirs [files [i].dir] : ""));
1760 /* Terminate filename list. */
1764 /* Switch to SEC and output a header length field. Return the size of
1765 offsets used in SEC. The caller must set EXPR->X_add_symbol value
1766 to the end of the section. EXPR->X_add_number will be set to the
1767 negative size of the header. */
1770 out_header (asection *sec, expressionS *exp)
1775 subseg_set (sec, 0);
1777 if (flag_dwarf_sections)
1779 /* If we are going to put the start and end symbols in different
1780 sections, then we need real symbols, not just fake, local ones. */
1782 start_sym = symbol_make (".Ldebug_line_start");
1783 end_sym = symbol_make (".Ldebug_line_end");
1784 symbol_set_value_now (start_sym);
1788 start_sym = symbol_temp_new_now_octets ();
1789 end_sym = symbol_temp_make ();
1792 /* Total length of the information. */
1793 exp->X_op = O_subtract;
1794 exp->X_add_symbol = end_sym;
1795 exp->X_op_symbol = start_sym;
1797 switch (DWARF2_FORMAT (sec))
1799 case dwarf2_format_32bit:
1800 exp->X_add_number = -4;
1804 case dwarf2_format_64bit:
1805 exp->X_add_number = -12;
1810 case dwarf2_format_64bit_irix:
1811 exp->X_add_number = -8;
1816 as_fatal (_("internal error: unknown dwarf2 format"));
1820 /* Emit the collected .debug_line data. */
1823 out_debug_line (segT line_seg)
1826 symbolS *prologue_start, *prologue_end;
1830 addressT section_end, section_end_aligned;
1832 memset (&exp, 0, sizeof exp);
1833 sizeof_offset = out_header (line_seg, &exp);
1834 line_end = exp.X_add_symbol;
1837 out_two (DWARF2_LINE_VERSION);
1839 /* Length of the prologue following this length. */
1840 prologue_start = symbol_temp_make ();
1841 prologue_end = symbol_temp_make ();
1842 exp.X_op = O_subtract;
1843 exp.X_add_symbol = prologue_end;
1844 exp.X_op_symbol = prologue_start;
1845 exp.X_add_number = 0;
1846 emit_expr (&exp, sizeof_offset);
1847 symbol_set_value_now_octets (prologue_start);
1849 /* Parameters of the state machine. */
1850 out_byte (DWARF2_LINE_MIN_INSN_LENGTH);
1851 out_byte (DWARF2_LINE_DEFAULT_IS_STMT);
1852 out_byte (DWARF2_LINE_BASE);
1853 out_byte (DWARF2_LINE_RANGE);
1854 out_byte (DWARF2_LINE_OPCODE_BASE);
1856 /* Standard opcode lengths. */
1857 out_byte (0); /* DW_LNS_copy */
1858 out_byte (1); /* DW_LNS_advance_pc */
1859 out_byte (1); /* DW_LNS_advance_line */
1860 out_byte (1); /* DW_LNS_set_file */
1861 out_byte (1); /* DW_LNS_set_column */
1862 out_byte (0); /* DW_LNS_negate_stmt */
1863 out_byte (0); /* DW_LNS_set_basic_block */
1864 out_byte (0); /* DW_LNS_const_add_pc */
1865 out_byte (1); /* DW_LNS_fixed_advance_pc */
1866 out_byte (0); /* DW_LNS_set_prologue_end */
1867 out_byte (0); /* DW_LNS_set_epilogue_begin */
1868 out_byte (1); /* DW_LNS_set_isa */
1872 symbol_set_value_now_octets (prologue_end);
1874 /* For each section, emit a statement program. */
1875 for (s = all_segs; s; s = s->next)
1876 if (SEG_NORMAL (s->seg))
1877 process_entries (s->seg, s->head->head);
1879 as_warn ("dwarf line number information for %s ignored",
1880 segment_name (s->seg));
1882 if (flag_dwarf_sections)
1883 /* We have to switch to the special .debug_line_end section
1884 before emitting the end-of-debug_line symbol. The linker
1885 script arranges for this section to be placed after all the
1886 (potentially garbage collected) .debug_line.<foo> sections.
1887 This section contains the line_end symbol which is used to
1888 compute the size of the linked .debug_line section, as seen
1889 in the DWARF Line Number header. */
1890 subseg_set (subseg_get (".debug_line_end", FALSE), 0);
1892 /* Pad size of .debug_line section to a multiple of OCTETS_PER_BYTE.
1893 Simply sizing the section in md_section_align() is not sufficient,
1894 also the size field in the .debug_line header must be a multiple
1895 of OCTETS_PER_BYTE. Not doing so will introduce gaps within the
1896 .debug_line sections after linking. */
1897 section_end = frag_now_fix_octets ();
1898 section_end_aligned = (section_end + OCTETS_PER_BYTE - 1) & -OCTETS_PER_BYTE;
1899 for ( ; section_end != section_end_aligned; section_end++)
1900 out_inc_line_addr (0, 0); /* NOP */
1902 symbol_set_value_now_octets (line_end);
1906 out_debug_ranges (segT ranges_seg)
1908 unsigned int addr_size = sizeof_address;
1913 memset (&exp, 0, sizeof exp);
1914 subseg_set (ranges_seg, 0);
1916 /* Base Address Entry. */
1917 for (i = 0; i < addr_size; i++)
1919 for (i = 0; i < addr_size; i++)
1922 /* Range List Entry. */
1923 for (s = all_segs; s; s = s->next)
1928 frag = first_frag_for_seg (s->seg);
1929 beg = symbol_temp_new (s->seg, 0, frag);
1930 s->text_start = beg;
1932 frag = last_frag_for_seg (s->seg);
1933 end = symbol_temp_new (s->seg, get_frag_fix (frag, s->seg), frag);
1936 exp.X_op = O_symbol;
1937 exp.X_add_symbol = beg;
1938 exp.X_add_number = 0;
1939 emit_expr (&exp, addr_size);
1941 exp.X_op = O_symbol;
1942 exp.X_add_symbol = end;
1943 exp.X_add_number = 0;
1944 emit_expr (&exp, addr_size);
1947 /* End of Range Entry. */
1948 for (i = 0; i < addr_size; i++)
1950 for (i = 0; i < addr_size; i++)
1954 /* Emit data for .debug_aranges. */
1957 out_debug_aranges (segT aranges_seg, segT info_seg)
1959 unsigned int addr_size = sizeof_address;
1963 symbolS *aranges_end;
1967 memset (&exp, 0, sizeof exp);
1968 sizeof_offset = out_header (aranges_seg, &exp);
1969 aranges_end = exp.X_add_symbol;
1970 size = -exp.X_add_number;
1973 out_two (DWARF2_ARANGES_VERSION);
1976 /* Offset to .debug_info. */
1977 TC_DWARF2_EMIT_OFFSET (section_symbol (info_seg), sizeof_offset);
1978 size += sizeof_offset;
1980 /* Size of an address (offset portion). */
1981 out_byte (addr_size);
1984 /* Size of a segment descriptor. */
1988 /* Align the header. */
1989 while ((size++ % (2 * addr_size)) > 0)
1992 for (s = all_segs; s; s = s->next)
1997 frag = first_frag_for_seg (s->seg);
1998 beg = symbol_temp_new (s->seg, 0, frag);
1999 s->text_start = beg;
2001 frag = last_frag_for_seg (s->seg);
2002 end = symbol_temp_new (s->seg, get_frag_fix (frag, s->seg), frag);
2005 exp.X_op = O_symbol;
2006 exp.X_add_symbol = beg;
2007 exp.X_add_number = 0;
2008 emit_expr (&exp, addr_size);
2010 exp.X_op = O_subtract;
2011 exp.X_add_symbol = end;
2012 exp.X_op_symbol = beg;
2013 exp.X_add_number = 0;
2014 emit_expr (&exp, addr_size);
2017 p = frag_more (2 * addr_size);
2018 md_number_to_chars (p, 0, addr_size);
2019 md_number_to_chars (p + addr_size, 0, addr_size);
2021 symbol_set_value_now_octets (aranges_end);
2024 /* Emit data for .debug_abbrev. Note that this must be kept in
2025 sync with out_debug_info below. */
2028 out_debug_abbrev (segT abbrev_seg,
2029 segT info_seg ATTRIBUTE_UNUSED,
2030 segT line_seg ATTRIBUTE_UNUSED)
2032 subseg_set (abbrev_seg, 0);
2035 out_uleb128 (DW_TAG_compile_unit);
2036 out_byte (DW_CHILDREN_no);
2037 if (DWARF2_FORMAT (line_seg) == dwarf2_format_32bit)
2038 out_abbrev (DW_AT_stmt_list, DW_FORM_data4);
2040 out_abbrev (DW_AT_stmt_list, DW_FORM_data8);
2041 if (all_segs->next == NULL)
2043 out_abbrev (DW_AT_low_pc, DW_FORM_addr);
2044 if (DWARF2_VERSION < 4)
2045 out_abbrev (DW_AT_high_pc, DW_FORM_addr);
2047 out_abbrev (DW_AT_high_pc, (sizeof_address == 4
2048 ? DW_FORM_data4 : DW_FORM_data8));
2052 if (DWARF2_FORMAT (info_seg) == dwarf2_format_32bit)
2053 out_abbrev (DW_AT_ranges, DW_FORM_data4);
2055 out_abbrev (DW_AT_ranges, DW_FORM_data8);
2057 out_abbrev (DW_AT_name, DW_FORM_strp);
2058 out_abbrev (DW_AT_comp_dir, DW_FORM_strp);
2059 out_abbrev (DW_AT_producer, DW_FORM_strp);
2060 out_abbrev (DW_AT_language, DW_FORM_data2);
2063 /* Terminate the abbreviations for this compilation unit. */
2067 /* Emit a description of this compilation unit for .debug_info. */
2070 out_debug_info (segT info_seg, segT abbrev_seg, segT line_seg, segT ranges_seg,
2071 symbolS *name_sym, symbolS *comp_dir_sym, symbolS *producer_sym)
2077 memset (&exp, 0, sizeof exp);
2078 sizeof_offset = out_header (info_seg, &exp);
2079 info_end = exp.X_add_symbol;
2081 /* DWARF version. */
2082 out_two (DWARF2_VERSION);
2084 /* .debug_abbrev offset */
2085 TC_DWARF2_EMIT_OFFSET (section_symbol (abbrev_seg), sizeof_offset);
2087 /* Target address size. */
2088 out_byte (sizeof_address);
2090 /* DW_TAG_compile_unit DIE abbrev */
2093 /* DW_AT_stmt_list */
2094 TC_DWARF2_EMIT_OFFSET (section_symbol (line_seg),
2095 (DWARF2_FORMAT (line_seg) == dwarf2_format_32bit
2098 /* These two attributes are emitted if all of the code is contiguous. */
2099 if (all_segs->next == NULL)
2102 exp.X_op = O_symbol;
2103 exp.X_add_symbol = all_segs->text_start;
2104 exp.X_add_number = 0;
2105 emit_expr (&exp, sizeof_address);
2108 if (DWARF2_VERSION < 4)
2109 exp.X_op = O_symbol;
2112 exp.X_op = O_subtract;
2113 exp.X_op_symbol = all_segs->text_start;
2115 exp.X_add_symbol = all_segs->text_end;
2116 exp.X_add_number = 0;
2117 emit_expr (&exp, sizeof_address);
2121 /* This attribute is emitted if the code is disjoint. */
2123 TC_DWARF2_EMIT_OFFSET (section_symbol (ranges_seg), sizeof_offset);
2126 /* DW_AT_name, DW_AT_comp_dir and DW_AT_producer. Symbols in .debug_str
2127 setup in out_debug_str below. */
2128 TC_DWARF2_EMIT_OFFSET (name_sym, sizeof_offset);
2129 TC_DWARF2_EMIT_OFFSET (comp_dir_sym, sizeof_offset);
2130 TC_DWARF2_EMIT_OFFSET (producer_sym, sizeof_offset);
2132 /* DW_AT_language. Yes, this is probably not really MIPS, but the
2133 dwarf2 draft has no standard code for assembler. */
2134 out_two (DW_LANG_Mips_Assembler);
2136 symbol_set_value_now_octets (info_end);
2139 /* Emit the three debug strings needed in .debug_str and setup symbols
2140 to them for use in out_debug_info. */
2142 out_debug_str (segT str_seg, symbolS **name_sym, symbolS **comp_dir_sym,
2143 symbolS **producer_sym)
2146 const char *comp_dir;
2147 const char *dirname;
2151 subseg_set (str_seg, 0);
2153 /* DW_AT_name. We don't have the actual file name that was present
2154 on the command line, so assume files[1] is the main input file.
2155 We're not supposed to get called unless at least one line number
2156 entry was emitted, so this should always be defined. */
2157 *name_sym = symbol_temp_new_now_octets ();
2158 if (files_in_use == 0)
2162 dirname = remap_debug_filename (dirs[files[1].dir]);
2163 len = strlen (dirname);
2165 /* Already has trailing slash. */
2166 p = frag_more (len);
2167 memcpy (p, dirname, len);
2169 p = frag_more (len + 1);
2170 memcpy (p, dirname, len);
2171 INSERT_DIR_SEPARATOR (p, len);
2174 len = strlen (files[1].filename) + 1;
2175 p = frag_more (len);
2176 memcpy (p, files[1].filename, len);
2178 /* DW_AT_comp_dir */
2179 *comp_dir_sym = symbol_temp_new_now_octets ();
2180 comp_dir = remap_debug_filename (getpwd ());
2181 len = strlen (comp_dir) + 1;
2182 p = frag_more (len);
2183 memcpy (p, comp_dir, len);
2185 /* DW_AT_producer */
2186 *producer_sym = symbol_temp_new_now_octets ();
2187 sprintf (producer, "GNU AS %s", VERSION);
2188 len = strlen (producer) + 1;
2189 p = frag_more (len);
2190 memcpy (p, producer, len);
2196 last_seg_ptr = &all_segs;
2200 /* Finish the dwarf2 debug sections. We emit .debug.line if there
2201 were any .file/.loc directives, or --gdwarf2 was given, or if the
2202 file has a non-empty .debug_info section and an empty .debug_line
2203 section. If we emit .debug_line, and the .debug_info section is
2204 empty, we also emit .debug_info, .debug_aranges and .debug_abbrev.
2205 ALL_SEGS will be non-null if there were any .file/.loc directives,
2206 or --gdwarf2 was given and there were any located instructions
2210 dwarf2_finish (void)
2215 int emit_other_sections = 0;
2216 int empty_debug_line = 0;
2218 info_seg = bfd_get_section_by_name (stdoutput, ".debug_info");
2219 emit_other_sections = info_seg == NULL || !seg_not_empty_p (info_seg);
2221 line_seg = bfd_get_section_by_name (stdoutput, ".debug_line");
2222 empty_debug_line = line_seg == NULL || !seg_not_empty_p (line_seg);
2224 /* We can't construct a new debug_line section if we already have one.
2226 if (all_segs && !empty_debug_line)
2227 as_fatal ("duplicate .debug_line sections");
2229 if ((!all_segs && emit_other_sections)
2230 || (!emit_other_sections && !empty_debug_line))
2231 /* If there is no line information and no non-empty .debug_info
2232 section, or if there is both a non-empty .debug_info and a non-empty
2233 .debug_line, then we do nothing. */
2236 /* Calculate the size of an address for the target machine. */
2237 sizeof_address = DWARF2_ADDR_SIZE (stdoutput);
2239 /* Create and switch to the line number section. */
2240 line_seg = subseg_new (".debug_line", 0);
2241 bfd_set_section_flags (stdoutput, line_seg, SEC_READONLY | SEC_DEBUGGING);
2243 /* For each subsection, chain the debug entries together. */
2244 for (s = all_segs; s; s = s->next)
2246 struct line_subseg *lss = s->head;
2247 struct line_entry **ptail = lss->ptail;
2249 /* Reset the initial view of the first subsection of the
2251 if (lss->head && lss->head->loc.view)
2252 set_or_check_view (lss->head, NULL, NULL);
2254 while ((lss = lss->next) != NULL)
2256 /* Link the first view of subsequent subsections to the
2258 if (lss->head && lss->head->loc.view)
2259 set_or_check_view (lss->head,
2260 !s->head ? NULL : (struct line_entry *)ptail,
2261 s->head ? s->head->head : NULL);
2267 out_debug_line (line_seg);
2269 /* If this is assembler generated line info, and there is no
2270 debug_info already, we need .debug_info, .debug_abbrev and
2271 .debug_str sections as well. */
2272 if (emit_other_sections)
2278 symbolS *name_sym, *comp_dir_sym, *producer_sym;
2280 gas_assert (all_segs);
2282 info_seg = subseg_new (".debug_info", 0);
2283 abbrev_seg = subseg_new (".debug_abbrev", 0);
2284 aranges_seg = subseg_new (".debug_aranges", 0);
2285 str_seg = subseg_new (".debug_str", 0);
2287 bfd_set_section_flags (stdoutput, info_seg,
2288 SEC_READONLY | SEC_DEBUGGING);
2289 bfd_set_section_flags (stdoutput, abbrev_seg,
2290 SEC_READONLY | SEC_DEBUGGING);
2291 bfd_set_section_flags (stdoutput, aranges_seg,
2292 SEC_READONLY | SEC_DEBUGGING);
2293 bfd_set_section_flags (stdoutput, str_seg,
2294 (SEC_READONLY | SEC_DEBUGGING
2295 | SEC_MERGE | SEC_STRINGS));
2296 str_seg->entsize = 1;
2298 record_alignment (aranges_seg, ffs (2 * sizeof_address) - 1);
2300 if (all_segs->next == NULL)
2304 ranges_seg = subseg_new (".debug_ranges", 0);
2305 bfd_set_section_flags (stdoutput, ranges_seg,
2306 SEC_READONLY | SEC_DEBUGGING);
2307 record_alignment (ranges_seg, ffs (2 * sizeof_address) - 1);
2308 out_debug_ranges (ranges_seg);
2311 out_debug_aranges (aranges_seg, info_seg);
2312 out_debug_abbrev (abbrev_seg, info_seg, line_seg);
2313 out_debug_str (str_seg, &name_sym, &comp_dir_sym, &producer_sym);
2314 out_debug_info (info_seg, abbrev_seg, line_seg, ranges_seg,
2315 name_sym, comp_dir_sym, producer_sym);
2319 /* Perform any deferred checks pertaining to debug information. */
2322 dwarf2dbg_final_check (void)
2324 /* Perform reset-view checks. Don't evaluate view_assert_failed
2325 recursively: it could be very deep. It's a chain of adds, with
2326 each chain element pointing to the next in X_add_symbol, and
2327 holding the check value in X_op_symbol. */
2328 while (view_assert_failed)
2334 gas_assert (!symbol_resolved_p (view_assert_failed));
2336 exp = symbol_get_value_expression (view_assert_failed);
2337 sym = view_assert_failed;
2339 /* If view_assert_failed looks like a compound check in the
2340 chain, break it up. */
2341 if (exp->X_op == O_add && exp->X_add_number == 0 && exp->X_unsigned)
2343 view_assert_failed = exp->X_add_symbol;
2344 sym = exp->X_op_symbol;
2347 view_assert_failed = NULL;
2349 failed = resolve_symbol_value (sym);
2350 if (!symbol_resolved_p (sym) || failed)
2352 as_bad (_("view number mismatch"));