Automatic date update in version.in
[deliverable/binutils-gdb.git] / gas / dwarf2dbg.c
CommitLineData
fac0d250 1/* dwarf2dbg.c - DWARF2 debug support
219d1afa 2 Copyright (C) 1999-2018 Free Software Foundation, Inc.
fac0d250
RH
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4
5 This file is part of GAS, the GNU Assembler.
6
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
ec2655a6 9 the Free Software Foundation; either version 3, or (at your option)
fac0d250
RH
10 any later version.
11
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.
16
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
4b4da160
NC
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
fac0d250 21
89b66cde 22/* Logical line numbers can be controlled by the compiler via the
bd0eb99b 23 following directives:
fac0d250
RH
24
25 .file FILENO "file.c"
ecea7679 26 .loc FILENO LINENO [COLUMN] [basic_block] [prologue_end] \
92846e72
CC
27 [epilogue_begin] [is_stmt VALUE] [isa VALUE] \
28 [discriminator VALUE]
bd0eb99b 29*/
fac0d250 30
fac0d250 31#include "as.h"
bd0eb99b 32#include "safe-ctype.h"
92eb7b32 33
42dbf88c
NC
34#ifdef HAVE_LIMITS_H
35#include <limits.h>
92625c16 36#else
6717891c
NC
37#ifdef HAVE_SYS_PARAM_H
38#include <sys/param.h>
39#endif
6256f9dd 40#ifndef INT_MAX
ee515fb7 41#define INT_MAX (int) (((unsigned) (-1)) >> 1)
42dbf88c 42#endif
b8f080d6 43#endif
42dbf88c 44
70658493 45#include "dwarf2dbg.h"
a7ed1ca2 46#include <filenames.h>
70658493 47
56487c55
NC
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) \
57 do \
58 { \
59 if (offset > 1 \
7fd3924a
AM
60 && string[0] != 0 \
61 && string[1] == ':') \
56487c55
NC
62 string [offset] = '\\'; \
63 else \
64 string [offset] = '/'; \
65 } \
66 while (0)
67#else
68# define INSERT_DIR_SEPARATOR(string, offset) string[offset] = '/'
69#endif
70
14e777e0 71#ifndef DWARF2_FORMAT
413a266c 72# define DWARF2_FORMAT(SEC) dwarf2_format_32bit
14e777e0
KB
73#endif
74
9605f328 75#ifndef DWARF2_ADDR_SIZE
e4475e39 76# define DWARF2_ADDR_SIZE(bfd) (bfd_arch_bits_per_address (bfd) / 8)
9605f328
AO
77#endif
78
01e1a5bc
NC
79#ifndef DWARF2_FILE_NAME
80#define DWARF2_FILE_NAME(FILENAME, DIRNAME) FILENAME
81#endif
82
83#ifndef DWARF2_FILE_TIME_NAME
84#define DWARF2_FILE_TIME_NAME(FILENAME,DIRNAME) 0
85#endif
86
87#ifndef DWARF2_FILE_SIZE_NAME
88#define DWARF2_FILE_SIZE_NAME(FILENAME,DIRNAME) 0
89#endif
90
fc0eebac
TG
91#ifndef DWARF2_VERSION
92#define DWARF2_VERSION 2
93#endif
94
88ebb0a1
MW
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
98#endif
99
100/* This implementation output version 2 .debug_line information. */
101#ifndef DWARF2_LINE_VERSION
102#define DWARF2_LINE_VERSION 2
103#endif
104
fac0d250
RH
105#include "subsegs.h"
106
fa8f86ff 107#include "dwarf2.h"
fac0d250 108
fac0d250
RH
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"). */
113#define DL_PROLOG 0
114#define DL_FILES 1
115#define DL_BODY 2
116
1737851b
BW
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
453dc3f0 121# define DWARF2_USE_FIXED_ADVANCE_PC linkrelax
1737851b
BW
122#endif
123
33eaf5de 124/* First special line opcode - leave room for the standard opcodes.
fac0d250
RH
125 Note: If you want to change this, you'll have to update the
126 "standard_opcode_lengths" table that is emitted below in
bd0eb99b
RH
127 out_debug_line(). */
128#define DWARF2_LINE_OPCODE_BASE 13
fac0d250
RH
129
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
134#endif
135
136/* Range of line offsets in a special line info. opcode. */
137#ifndef DWARF2_LINE_RANGE
138# define DWARF2_LINE_RANGE 14
139#endif
140
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. */
4dc7ead9 144# define DWARF2_LINE_MIN_INSN_LENGTH 1
fac0d250
RH
145#endif
146
bd0eb99b 147/* Flag that indicates the initial value of the is_stmt_start flag. */
fac0d250
RH
148#define DWARF2_LINE_DEFAULT_IS_STMT 1
149
cb30237e 150/* Given a special op, return the line skip amount. */
fac0d250
RH
151#define SPECIAL_LINE(op) \
152 (((op) - DWARF2_LINE_OPCODE_BASE)%DWARF2_LINE_RANGE + DWARF2_LINE_BASE)
153
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)
157
cb30237e 158/* The maximum address skip amount that can be encoded with a special op. */
fac0d250
RH
159#define MAX_SPECIAL_ADDR_DELTA SPECIAL_ADDR(255)
160
62ebcb5c
AM
161#ifndef TC_PARSE_CONS_RETURN_NONE
162#define TC_PARSE_CONS_RETURN_NONE BFD_RELOC_NONE
163#endif
164
ba8826a8
AO
165struct line_entry
166{
220e750f 167 struct line_entry *next;
07a53e5c 168 symbolS *label;
220e750f 169 struct dwarf2_line_info loc;
e6c774b4 170};
fac0d250 171
ba8826a8
AO
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. */
174static char unused[offsetof(struct line_entry, next) ? -1 : 1]
175ATTRIBUTE_UNUSED;
176
177struct line_subseg
178{
220e750f
RH
179 struct line_subseg *next;
180 subsegT subseg;
181 struct line_entry *head;
182 struct line_entry **ptail;
e410add4 183 struct line_entry **pmove_tail;
220e750f 184};
353e2c69 185
ba8826a8
AO
186struct line_seg
187{
220e750f
RH
188 struct line_seg *next;
189 segT seg;
190 struct line_subseg *head;
191 symbolS *text_start;
192 symbolS *text_end;
193};
194
195/* Collects data for all line table entries during assembly. */
196static struct line_seg *all_segs;
1e9cc1c2 197static struct line_seg **last_seg_ptr;
220e750f 198
ba8826a8
AO
199struct file_entry
200{
a7ed1ca2 201 const char *filename;
220e750f
RH
202 unsigned int dir;
203};
204
205/* Table of files used by .debug_line. */
206static struct file_entry *files;
207static unsigned int files_in_use;
208static unsigned int files_allocated;
209
a7ed1ca2
NC
210/* Table of directories used by .debug_line. */
211static char **dirs;
212static unsigned int dirs_in_use;
213static unsigned int dirs_allocated;
214
b34976b6 215/* TRUE when we've seen a .loc directive recently. Used to avoid
220e750f 216 doing work when there's nothing to do. */
1eee4adc 217bfd_boolean dwarf2_loc_directive_seen;
220e750f 218
07a53e5c
RH
219/* TRUE when we're supposed to set the basic block mark whenever a
220 label is seen. */
221bfd_boolean dwarf2_loc_mark_labels;
222
220e750f 223/* Current location as indicated by the most recent .loc directive. */
ba8826a8
AO
224static struct dwarf2_line_info current =
225{
bd0eb99b 226 1, 1, 0, 0,
92846e72 227 DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0,
ba8826a8 228 0, NULL
bd0eb99b 229};
220e750f 230
ba8826a8
AO
231/* This symbol is used to recognize view number forced resets in loc
232 lists. */
233static symbolS *force_reset_view;
234
235/* This symbol evaluates to an expression that, if nonzero, indicates
236 some view assert check failed. */
237static symbolS *view_assert_failed;
238
220e750f
RH
239/* The size of an address on the target. */
240static unsigned int sizeof_address;
241\f
a2e22468 242static unsigned int get_filenum (const char *, unsigned int);
413a266c 243
c5c0a210 244#ifndef TC_DWARF2_EMIT_OFFSET
802f5d9e 245#define TC_DWARF2_EMIT_OFFSET generic_dwarf2_emit_offset
c5c0a210 246
6174d9c8
RH
247/* Create an offset to .dwarf2_*. */
248
249static void
a2e22468 250generic_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
6174d9c8 251{
91d6fa6a 252 expressionS exp;
6174d9c8 253
031e3350 254 memset (&exp, 0, sizeof exp);
91d6fa6a
NC
255 exp.X_op = O_symbol;
256 exp.X_add_symbol = symbol;
257 exp.X_add_number = 0;
258 emit_expr (&exp, size);
6174d9c8 259}
c5c0a210 260#endif
6174d9c8 261
e410add4 262/* Find or create (if CREATE_P) an entry for SEG+SUBSEG in ALL_SEGS. */
220e750f
RH
263
264static struct line_subseg *
e410add4 265get_line_subseg (segT seg, subsegT subseg, bfd_boolean create_p)
220e750f 266{
5f3fd8b4 267 struct line_seg *s = seg_info (seg)->dwarf2_line_seg;
91d6fa6a 268 struct line_subseg **pss, *lss;
fac0d250 269
1e9cc1c2
NC
270 if (s == NULL)
271 {
e410add4
RS
272 if (!create_p)
273 return NULL;
274
325801bd 275 s = XNEW (struct line_seg);
1e9cc1c2
NC
276 s->next = NULL;
277 s->seg = seg;
278 s->head = NULL;
279 *last_seg_ptr = s;
280 last_seg_ptr = &s->next;
5f3fd8b4 281 seg_info (seg)->dwarf2_line_seg = s;
1e9cc1c2
NC
282 }
283 gas_assert (seg == s->seg);
220e750f 284
91d6fa6a 285 for (pss = &s->head; (lss = *pss) != NULL ; pss = &lss->next)
fac0d250 286 {
91d6fa6a 287 if (lss->subseg == subseg)
ee515fb7 288 goto found_subseg;
91d6fa6a 289 if (lss->subseg > subseg)
220e750f 290 break;
fac0d250 291 }
220e750f 292
325801bd 293 lss = XNEW (struct line_subseg);
91d6fa6a
NC
294 lss->next = *pss;
295 lss->subseg = subseg;
296 lss->head = NULL;
297 lss->ptail = &lss->head;
e410add4 298 lss->pmove_tail = &lss->head;
91d6fa6a 299 *pss = lss;
220e750f
RH
300
301 found_subseg:
91d6fa6a 302 return lss;
fac0d250
RH
303}
304
ba8826a8
AO
305/* (Un)reverse the line_entry list starting from H. */
306
307static struct line_entry *
308reverse_line_entry_list (struct line_entry *h)
309{
310 struct line_entry *p = NULL, *e, *n;
311
312 for (e = h; e; e = n)
313 {
314 n = e->next;
315 e->next = p;
316 p = e;
317 }
318 return p;
319}
320
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. */
325
326static void
327set_or_check_view (struct line_entry *e, struct line_entry *p,
328 struct line_entry *h)
329{
330 expressionS viewx;
331
332 memset (&viewx, 0, sizeof (viewx));
333 viewx.X_unsigned = 1;
334
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))
339 {
340 viewx.X_op = O_constant;
341 viewx.X_add_number = 0;
342 viewx.X_add_symbol = NULL;
343 viewx.X_op_symbol = NULL;
344 }
345 else
346 {
347 viewx.X_op = O_gt;
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;
354 else
355 {
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;
360 }
361 }
362
363 if (S_IS_DEFINED (e->loc.view) && symbol_constant_p (e->loc.view))
364 {
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
368 far. */
369 if (viewx.X_op == O_constant)
370 {
371 if (!value->X_add_number != !viewx.X_add_number)
372 as_bad (_("view number mismatch"));
373 }
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)
378 {
379 symbolS *deferred = make_expr_symbol (&viewx);
380 if (view_assert_failed)
381 {
382 expressionS chk;
031e3350 383
ba8826a8
AO
384 memset (&chk, 0, sizeof (chk));
385 chk.X_unsigned = 1;
386 chk.X_op = O_add;
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);
391 }
392 view_assert_failed = deferred;
393 }
394 }
395
396 if (viewx.X_op != O_constant || viewx.X_add_number)
397 {
398 expressionS incv;
399
400 if (!p->loc.view)
401 {
402 p->loc.view = symbol_temp_make ();
403 gas_assert (!S_IS_DEFINED (p->loc.view));
404 }
405
406 memset (&incv, 0, sizeof (incv));
407 incv.X_unsigned = 1;
408 incv.X_op = O_symbol;
409 incv.X_add_symbol = p->loc.view;
410 incv.X_add_number = 1;
411
412 if (viewx.X_op == O_constant)
413 {
414 gas_assert (viewx.X_add_number == 1);
415 viewx = incv;
416 }
417 else
418 {
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;
423 }
424 }
425
426 if (!S_IS_DEFINED (e->loc.view))
427 {
428 symbol_set_value_expression (e->loc.view, &viewx);
38cf168b 429 S_SET_SEGMENT (e->loc.view, expr_section);
ba8826a8
AO
430 symbol_set_frag (e->loc.view, &zero_address_frag);
431 }
432
433 /* Define and attempt to simplify any earlier views needed to
434 compute E's. */
435 if (h && p && p->loc.view && !S_IS_DEFINED (p->loc.view))
436 {
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);
441
442 gas_assert (r == p);
443 /* Set or check views until we find a defined or absent view. */
444 do
445 set_or_check_view (r, r->next, NULL);
446 while (r->next && r->next->loc.view && !S_IS_DEFINED (r->next->loc.view)
447 && (r = r->next));
448
449 /* Unreverse the list, so that we can go forward again. */
450 h2 = reverse_line_entry_list (p);
451 gas_assert (h2 == h);
452
453 /* Starting from the last view we just defined, attempt to
454 simplify the view expressions, until we do so to P. */
455 do
456 {
457 gas_assert (S_IS_DEFINED (r->loc.view));
458 resolve_expression (symbol_get_value_expression (r->loc.view));
459 }
460 while (r != p && (r = r->next));
461
462 /* Now that we've defined and computed all earlier views that might
463 be needed to compute E's, attempt to simplify it. */
464 resolve_expression (symbol_get_value_expression (e->loc.view));
465 }
466}
467
6a50d470 468/* Record an entry for LOC occurring at LABEL. */
07a53e5c
RH
469
470static void
6a50d470 471dwarf2_gen_line_info_1 (symbolS *label, struct dwarf2_line_info *loc)
07a53e5c 472{
6a50d470 473 struct line_subseg *lss;
07a53e5c
RH
474 struct line_entry *e;
475
325801bd 476 e = XNEW (struct line_entry);
07a53e5c 477 e->next = NULL;
6a50d470 478 e->label = label;
07a53e5c
RH
479 e->loc = *loc;
480
e410add4 481 lss = get_line_subseg (now_seg, now_subseg, TRUE);
ba8826a8
AO
482
483 if (loc->view)
484 set_or_check_view (e,
485 !lss->head ? NULL : (struct line_entry *)lss->ptail,
486 lss->head);
487
6a50d470
RS
488 *lss->ptail = e;
489 lss->ptail = &e->next;
07a53e5c
RH
490}
491
436d9e46 492/* Record an entry for LOC occurring at OFS within the current fragment. */
353e2c69 493
220e750f 494void
a2e22468 495dwarf2_gen_line_info (addressT ofs, struct dwarf2_line_info *loc)
fac0d250 496{
1ea5c325
MS
497 static unsigned int line = -1;
498 static unsigned int filenum = -1;
220e750f 499
6a50d470
RS
500 symbolS *sym;
501
220e750f
RH
502 /* Early out for as-yet incomplete location information. */
503 if (loc->filenum == 0 || loc->line == 0)
504 return;
505
ffa554ed
GK
506 /* Don't emit sequences of line symbols for the same line when the
507 symbols apply to assembler code. It is necessary to emit
508 duplicate line symbols when a compiler asks for them, because GDB
509 uses them to determine the end of the prologue. */
d1a6c242 510 if (debug_type == DEBUG_DWARF2
ffa554ed 511 && line == loc->line && filenum == loc->filenum)
1ea5c325
MS
512 return;
513
514 line = loc->line;
515 filenum = loc->filenum;
516
453dc3f0
NC
517 if (linkrelax)
518 {
519 char name[120];
520
521 /* Use a non-fake name for the line number location,
522 so that it can be referred to by relocations. */
523 sprintf (name, ".Loc.%u.%u", line, filenum);
6a50d470 524 sym = symbol_new (name, now_seg, ofs, frag_now);
453dc3f0
NC
525 }
526 else
6a50d470
RS
527 sym = symbol_temp_new (now_seg, ofs, frag_now);
528 dwarf2_gen_line_info_1 (sym, loc);
220e750f 529}
fac0d250 530
ecea7679
RH
531/* Returns the current source information. If .file directives have
532 been encountered, the info for the corresponding source file is
533 returned. Otherwise, the info for the assembly source file is
534 returned. */
535
220e750f 536void
a2e22468 537dwarf2_where (struct dwarf2_line_info *line)
220e750f
RH
538{
539 if (debug_type == DEBUG_DWARF2)
fac0d250 540 {
ba8826a8
AO
541 const char *filename;
542
543 memset (line, 0, sizeof (*line));
544 filename = as_where (&line->line);
a7ed1ca2 545 line->filenum = get_filenum (filename, 0);
220e750f 546 line->column = 0;
bd0eb99b 547 line->flags = DWARF2_FLAG_IS_STMT;
ecea7679 548 line->isa = current.isa;
92846e72 549 line->discriminator = current.discriminator;
ba8826a8 550 line->view = NULL;
fac0d250 551 }
220e750f
RH
552 else
553 *line = current;
fac0d250
RH
554}
555
7fd3924a 556/* A hook to allow the target backend to inform the line number state
ecea7679
RH
557 machine of isa changes when assembler debug info is enabled. */
558
559void
560dwarf2_set_isa (unsigned int isa)
561{
562 current.isa = isa;
563}
564
220e750f
RH
565/* Called for each machine instruction, or relatively atomic group of
566 machine instructions (ie built-in macro). The instruction or group
567 is SIZE bytes in length. If dwarf2 line number generation is called
568 for, emit a line statement appropriately. */
353e2c69 569
220e750f 570void
a2e22468 571dwarf2_emit_insn (int size)
fac0d250 572{
220e750f 573 struct dwarf2_line_info loc;
fac0d250 574
ba8826a8
AO
575 if (debug_type != DEBUG_DWARF2
576 ? !dwarf2_loc_directive_seen
577 : !seen_at_least_1_file ())
220e750f 578 return;
7fd3924a
AM
579
580 dwarf2_where (&loc);
b6675117 581
220e750f 582 dwarf2_gen_line_info (frag_now_fix () - size, &loc);
661ba50f
BW
583 dwarf2_consume_line_info ();
584}
585
e410add4
RS
586/* Move all previously-emitted line entries for the current position by
587 DELTA bytes. This function cannot be used to move the same entries
588 twice. */
589
590void
591dwarf2_move_insn (int delta)
592{
593 struct line_subseg *lss;
594 struct line_entry *e;
595 valueT now;
596
597 if (delta == 0)
598 return;
599
600 lss = get_line_subseg (now_seg, now_subseg, FALSE);
601 if (!lss)
602 return;
603
604 now = frag_now_fix ();
605 while ((e = *lss->pmove_tail))
606 {
607 if (S_GET_VALUE (e->label) == now)
608 S_SET_VALUE (e->label, now + delta);
609 lss->pmove_tail = &e->next;
610 }
611}
612
661ba50f
BW
613/* Called after the current line information has been either used with
614 dwarf2_gen_line_info or saved with a machine instruction for later use.
615 This resets the state of the line number information to reflect that
616 it has been used. */
617
618void
619dwarf2_consume_line_info (void)
620{
621 /* Unless we generate DWARF2 debugging information for each
622 assembler line, we only emit one line symbol for one LOC. */
7fd3924a 623 dwarf2_loc_directive_seen = FALSE;
bd0eb99b
RH
624
625 current.flags &= ~(DWARF2_FLAG_BASIC_BLOCK
626 | DWARF2_FLAG_PROLOGUE_END
627 | DWARF2_FLAG_EPILOGUE_BEGIN);
92846e72 628 current.discriminator = 0;
3a00b02d 629 current.view = NULL;
220e750f 630}
fac0d250 631
07a53e5c
RH
632/* Called for each (preferably code) label. If dwarf2_loc_mark_labels
633 is enabled, emit a basic block marker. */
634
635void
636dwarf2_emit_label (symbolS *label)
637{
638 struct dwarf2_line_info loc;
639
640 if (!dwarf2_loc_mark_labels)
641 return;
642 if (S_GET_SEGMENT (label) != now_seg)
643 return;
644 if (!(bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE))
645 return;
7fd3924a
AM
646 if (files_in_use == 0 && debug_type != DEBUG_DWARF2)
647 return;
648
649 dwarf2_where (&loc);
07a53e5c
RH
650
651 loc.flags |= DWARF2_FLAG_BASIC_BLOCK;
652
6a50d470 653 dwarf2_gen_line_info_1 (label, &loc);
7fd3924a 654 dwarf2_consume_line_info ();
07a53e5c
RH
655}
656
a7ed1ca2
NC
657/* Get a .debug_line file number for FILENAME. If NUM is nonzero,
658 allocate it on that file table slot, otherwise return the first
659 empty one. */
220e750f
RH
660
661static unsigned int
a2e22468 662get_filenum (const char *filename, unsigned int num)
220e750f 663{
a7ed1ca2
NC
664 static unsigned int last_used, last_used_dir_len;
665 const char *file;
666 size_t dir_len;
667 unsigned int i, dir;
220e750f 668
a7ed1ca2
NC
669 if (num == 0 && last_used)
670 {
671 if (! files[last_used].dir
8b6efd89 672 && filename_cmp (filename, files[last_used].filename) == 0)
a7ed1ca2
NC
673 return last_used;
674 if (files[last_used].dir
8b6efd89
KT
675 && filename_ncmp (filename, dirs[files[last_used].dir],
676 last_used_dir_len) == 0
a7ed1ca2 677 && IS_DIR_SEPARATOR (filename [last_used_dir_len])
8b6efd89
KT
678 && filename_cmp (filename + last_used_dir_len + 1,
679 files[last_used].filename) == 0)
a7ed1ca2
NC
680 return last_used;
681 }
220e750f 682
a7ed1ca2
NC
683 file = lbasename (filename);
684 /* Don't make empty string from / or A: from A:/ . */
685#ifdef HAVE_DOS_BASED_FILE_SYSTEM
686 if (file <= filename + 3)
687 file = filename;
688#else
689 if (file == filename + 1)
690 file = filename;
691#endif
692 dir_len = file - filename;
693
694 dir = 0;
695 if (dir_len)
696 {
01e1a5bc 697#ifndef DWARF2_DIR_SHOULD_END_WITH_SEPARATOR
a7ed1ca2 698 --dir_len;
01e1a5bc 699#endif
a7ed1ca2 700 for (dir = 1; dir < dirs_in_use; ++dir)
8b6efd89 701 if (filename_ncmp (filename, dirs[dir], dir_len) == 0
a7ed1ca2
NC
702 && dirs[dir][dir_len] == '\0')
703 break;
704
705 if (dir >= dirs_in_use)
706 {
707 if (dir >= dirs_allocated)
708 {
709 dirs_allocated = dir + 32;
325801bd 710 dirs = XRESIZEVEC (char *, dirs, dirs_allocated);
a7ed1ca2
NC
711 }
712
29a2809e 713 dirs[dir] = xmemdup0 (filename, dir_len);
a7ed1ca2
NC
714 dirs_in_use = dir + 1;
715 }
716 }
717
718 if (num == 0)
719 {
720 for (i = 1; i < files_in_use; ++i)
721 if (files[i].dir == dir
88b4ca40 722 && files[i].filename
8b6efd89 723 && filename_cmp (file, files[i].filename) == 0)
a7ed1ca2
NC
724 {
725 last_used = i;
726 last_used_dir_len = dir_len;
727 return i;
728 }
729 }
730 else
731 i = num;
220e750f
RH
732
733 if (i >= files_allocated)
fac0d250 734 {
249e3833
RH
735 unsigned int old = files_allocated;
736
220e750f 737 files_allocated = i + 32;
325801bd 738 files = XRESIZEVEC (struct file_entry, files, files_allocated);
249e3833
RH
739
740 memset (files + old, 0, (i + 32 - old) * sizeof (struct file_entry));
fac0d250
RH
741 }
742
a7ed1ca2
NC
743 files[i].filename = num ? file : xstrdup (file);
744 files[i].dir = dir;
10cd14b4
AM
745 if (files_in_use < i + 1)
746 files_in_use = i + 1;
220e750f 747 last_used = i;
a7ed1ca2 748 last_used_dir_len = dir_len;
220e750f
RH
749
750 return i;
751}
fac0d250 752
ecb4347a
DJ
753/* Handle two forms of .file directive:
754 - Pass .file "source.c" to s_app_file
755 - Handle .file 1 "source.c" by adding an entry to the DWARF-2 file table
220e750f 756
68d20676 757 If an entry is added to the file table, return a pointer to the filename. */
ecb4347a
DJ
758
759char *
68d20676 760dwarf2_directive_filename (void)
220e750f
RH
761{
762 offsetT num;
e46d99eb 763 char *filename;
220e750f
RH
764 int filename_len;
765
766 /* Continue to accept a bare string and pass it off. */
767 SKIP_WHITESPACE ();
768 if (*input_line_pointer == '"')
fac0d250 769 {
220e750f 770 s_app_file (0);
ecb4347a 771 return NULL;
fac0d250
RH
772 }
773
220e750f
RH
774 num = get_absolute_expression ();
775 filename = demand_copy_C_string (&filename_len);
bd0eb99b
RH
776 if (filename == NULL)
777 return NULL;
220e750f
RH
778 demand_empty_rest_of_line ();
779
249e3833 780 if (num < 1)
fac0d250 781 {
0e389e77 782 as_bad (_("file number less than one"));
ecb4347a 783 return NULL;
fac0d250
RH
784 }
785
7cadeb2c
AM
786 /* A .file directive implies compiler generated debug information is
787 being supplied. Turn off gas generated debug info. */
788 debug_type = DEBUG_NONE;
789
0e1a166b 790 if (num < (int) files_in_use && files[num].filename != 0)
220e750f 791 {
0e389e77 792 as_bad (_("file number %ld already allocated"), (long) num);
ecb4347a 793 return NULL;
249e3833 794 }
220e750f 795
a7ed1ca2 796 get_filenum (filename, num);
ecb4347a
DJ
797
798 return filename;
fac0d250
RH
799}
800
68d20676
NC
801/* Calls dwarf2_directive_filename, but discards its result.
802 Used in pseudo-op tables where the function result is ignored. */
803
804void
805dwarf2_directive_file (int dummy ATTRIBUTE_UNUSED)
806{
807 (void) dwarf2_directive_filename ();
808}
809
220e750f 810void
a2e22468 811dwarf2_directive_loc (int dummy ATTRIBUTE_UNUSED)
220e750f 812{
ecea7679
RH
813 offsetT filenum, line;
814
851feff8
DJ
815 /* If we see two .loc directives in a row, force the first one to be
816 output now. */
7cadeb2c 817 if (dwarf2_loc_directive_seen)
6a50d470 818 dwarf2_emit_insn (0);
851feff8 819
ecea7679
RH
820 filenum = get_absolute_expression ();
821 SKIP_WHITESPACE ();
822 line = get_absolute_expression ();
823
824 if (filenum < 1)
825 {
826 as_bad (_("file number less than one"));
827 return;
828 }
829 if (filenum >= (int) files_in_use || files[filenum].filename == 0)
830 {
831 as_bad (_("unassigned file number %ld"), (long) filenum);
832 return;
833 }
834
835 current.filenum = filenum;
836 current.line = line;
92846e72 837 current.discriminator = 0;
ecea7679
RH
838
839#ifndef NO_LISTING
840 if (listing)
841 {
842 if (files[filenum].dir)
843 {
844 size_t dir_len = strlen (dirs[files[filenum].dir]);
845 size_t file_len = strlen (files[filenum].filename);
add39d23 846 char *cp = XNEWVEC (char, dir_len + 1 + file_len + 1);
ecea7679
RH
847
848 memcpy (cp, dirs[files[filenum].dir], dir_len);
56487c55 849 INSERT_DIR_SEPARATOR (cp, dir_len);
ecea7679
RH
850 memcpy (cp + dir_len + 1, files[filenum].filename, file_len);
851 cp[dir_len + file_len + 1] = '\0';
852 listing_source_file (cp);
e1fa0163 853 free (cp);
ecea7679
RH
854 }
855 else
856 listing_source_file (files[filenum].filename);
857 listing_source_line (line);
858 }
859#endif
860
220e750f 861 SKIP_WHITESPACE ();
ecea7679
RH
862 if (ISDIGIT (*input_line_pointer))
863 {
864 current.column = get_absolute_expression ();
865 SKIP_WHITESPACE ();
866 }
867
868 while (ISALPHA (*input_line_pointer))
220e750f 869 {
bd0eb99b
RH
870 char *p, c;
871 offsetT value;
872
d02603dc 873 c = get_symbol_name (& p);
bd0eb99b
RH
874
875 if (strcmp (p, "basic_block") == 0)
876 {
877 current.flags |= DWARF2_FLAG_BASIC_BLOCK;
878 *input_line_pointer = c;
879 }
880 else if (strcmp (p, "prologue_end") == 0)
881 {
882 current.flags |= DWARF2_FLAG_PROLOGUE_END;
883 *input_line_pointer = c;
884 }
885 else if (strcmp (p, "epilogue_begin") == 0)
886 {
887 current.flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
888 *input_line_pointer = c;
889 }
890 else if (strcmp (p, "is_stmt") == 0)
891 {
d02603dc 892 (void) restore_line_pointer (c);
bd0eb99b
RH
893 value = get_absolute_expression ();
894 if (value == 0)
895 current.flags &= ~DWARF2_FLAG_IS_STMT;
896 else if (value == 1)
897 current.flags |= DWARF2_FLAG_IS_STMT;
898 else
ecea7679
RH
899 {
900 as_bad (_("is_stmt value not 0 or 1"));
901 return;
902 }
bd0eb99b
RH
903 }
904 else if (strcmp (p, "isa") == 0)
905 {
d02603dc 906 (void) restore_line_pointer (c);
bd0eb99b 907 value = get_absolute_expression ();
ecea7679 908 if (value >= 0)
bd0eb99b 909 current.isa = value;
ecea7679
RH
910 else
911 {
912 as_bad (_("isa number less than zero"));
913 return;
914 }
bd0eb99b 915 }
92846e72
CC
916 else if (strcmp (p, "discriminator") == 0)
917 {
d02603dc 918 (void) restore_line_pointer (c);
92846e72
CC
919 value = get_absolute_expression ();
920 if (value >= 0)
921 current.discriminator = value;
922 else
923 {
924 as_bad (_("discriminator less than zero"));
925 return;
926 }
927 }
ba8826a8
AO
928 else if (strcmp (p, "view") == 0)
929 {
930 symbolS *sym;
931
932 (void) restore_line_pointer (c);
933 SKIP_WHITESPACE ();
934
935 if (ISDIGIT (*input_line_pointer)
936 || *input_line_pointer == '-')
937 {
938 bfd_boolean force_reset = *input_line_pointer == '-';
939
940 value = get_absolute_expression ();
941 if (value != 0)
942 {
943 as_bad (_("numeric view can only be asserted to zero"));
944 return;
945 }
946 if (force_reset && force_reset_view)
947 sym = force_reset_view;
948 else
949 {
950 sym = symbol_temp_new (absolute_section, value,
951 &zero_address_frag);
952 if (force_reset)
953 force_reset_view = sym;
954 }
955 }
956 else
957 {
958 char *name = read_symbol_name ();
959
960 if (!name)
961 return;
962 sym = symbol_find_or_make (name);
38cf168b 963 if (S_IS_DEFINED (sym) || symbol_equated_p (sym))
ba8826a8 964 {
38cf168b 965 if (S_IS_VOLATILE (sym))
ba8826a8 966 sym = symbol_clone (sym, 1);
38cf168b
AM
967 else if (!S_CAN_BE_REDEFINED (sym))
968 {
969 as_bad (_("symbol `%s' is already defined"), name);
970 return;
971 }
ba8826a8 972 }
38cf168b
AM
973 S_SET_SEGMENT (sym, undefined_section);
974 S_SET_VALUE (sym, 0);
975 symbol_set_frag (sym, &zero_address_frag);
ba8826a8
AO
976 }
977 current.view = sym;
978 }
bd0eb99b
RH
979 else
980 {
ecea7679 981 as_bad (_("unknown .loc sub-directive `%s'"), p);
d02603dc 982 (void) restore_line_pointer (c);
bd0eb99b
RH
983 return;
984 }
985
d02603dc 986 SKIP_WHITESPACE_AFTER_NAME ();
bd0eb99b
RH
987 }
988
989 demand_empty_rest_of_line ();
1eee4adc 990 dwarf2_loc_directive_seen = TRUE;
7cadeb2c 991 debug_type = DEBUG_NONE;
ba8826a8
AO
992
993 /* If we were given a view id, emit the row right away. */
994 if (current.view)
995 dwarf2_emit_insn (0);
220e750f 996}
07a53e5c
RH
997
998void
999dwarf2_directive_loc_mark_labels (int dummy ATTRIBUTE_UNUSED)
1000{
1001 offsetT value = get_absolute_expression ();
1002
1003 if (value != 0 && value != 1)
1004 {
1005 as_bad (_("expected 0 or 1"));
1006 ignore_rest_of_line ();
1007 }
1008 else
1009 {
1010 dwarf2_loc_mark_labels = value != 0;
1011 demand_empty_rest_of_line ();
1012 }
1013}
220e750f
RH
1014\f
1015static struct frag *
a2e22468 1016first_frag_for_seg (segT seg)
220e750f 1017{
c9049d30 1018 return seg_info (seg)->frchainP->frch_root;
220e750f
RH
1019}
1020
1021static struct frag *
a2e22468 1022last_frag_for_seg (segT seg)
220e750f 1023{
c9049d30 1024 frchainS *f = seg_info (seg)->frchainP;
220e750f 1025
c9049d30
AM
1026 while (f->frch_next != NULL)
1027 f = f->frch_next;
220e750f 1028
c9049d30 1029 return f->frch_last;
220e750f
RH
1030}
1031\f
1032/* Emit a single byte into the current segment. */
1033
1034static inline void
a2e22468 1035out_byte (int byte)
220e750f
RH
1036{
1037 FRAG_APPEND_1_CHAR (byte);
1038}
1039
1040/* Emit a statement program opcode into the current segment. */
1041
1042static inline void
a2e22468 1043out_opcode (int opc)
220e750f
RH
1044{
1045 out_byte (opc);
1046}
1047
1048/* Emit a two-byte word into the current segment. */
1049
1050static inline void
a2e22468 1051out_two (int data)
220e750f
RH
1052{
1053 md_number_to_chars (frag_more (2), data, 2);
1054}
1055
1056/* Emit a four byte word into the current segment. */
1057
1058static inline void
a2e22468 1059out_four (int data)
220e750f
RH
1060{
1061 md_number_to_chars (frag_more (4), data, 4);
1062}
1063
1064/* Emit an unsigned "little-endian base 128" number. */
1065
fac0d250 1066static void
a2e22468 1067out_uleb128 (addressT value)
220e750f
RH
1068{
1069 output_leb128 (frag_more (sizeof_leb128 (value, 0)), value, 0);
1070}
1071
92846e72
CC
1072/* Emit a signed "little-endian base 128" number. */
1073
1074static void
1075out_leb128 (addressT value)
1076{
1077 output_leb128 (frag_more (sizeof_leb128 (value, 1)), value, 1);
1078}
1079
220e750f
RH
1080/* Emit a tuple for .debug_abbrev. */
1081
1082static inline void
a2e22468 1083out_abbrev (int name, int form)
fac0d250 1084{
220e750f
RH
1085 out_uleb128 (name);
1086 out_uleb128 (form);
1087}
fac0d250 1088
220e750f 1089/* Get the size of a fragment. */
fac0d250 1090
220e750f 1091static offsetT
c9049d30 1092get_frag_fix (fragS *frag, segT seg)
220e750f
RH
1093{
1094 frchainS *fr;
1095
1096 if (frag->fr_next)
1097 return frag->fr_fix;
1098
1099 /* If a fragment is the last in the chain, special measures must be
1100 taken to find its size before relaxation, since it may be pending
1101 on some subsegment chain. */
c9049d30 1102 for (fr = seg_info (seg)->frchainP; fr; fr = fr->frch_next)
220e750f 1103 if (fr->frch_last == frag)
c5c0a210 1104 return (char *) obstack_next_free (&fr->frch_obstack) - frag->fr_literal;
220e750f
RH
1105
1106 abort ();
1107}
fac0d250 1108
220e750f 1109/* Set an absolute address (may result in a relocation entry). */
fac0d250 1110
220e750f 1111static void
07a53e5c 1112out_set_addr (symbolS *sym)
220e750f 1113{
91d6fa6a 1114 expressionS exp;
9e3af0e7 1115
031e3350 1116 memset (&exp, 0, sizeof exp);
fac0d250 1117 out_opcode (DW_LNS_extended_op);
220e750f 1118 out_uleb128 (sizeof_address + 1);
fac0d250
RH
1119
1120 out_opcode (DW_LNE_set_address);
91d6fa6a
NC
1121 exp.X_op = O_symbol;
1122 exp.X_add_symbol = sym;
1123 exp.X_add_number = 0;
1124 emit_expr (&exp, sizeof_address);
fac0d250
RH
1125}
1126
a2e22468 1127static void scale_addr_delta (addressT *);
c8970b4b 1128
a3b75434 1129static void
d7342424 1130scale_addr_delta (addressT *addr_delta)
a3b75434
DD
1131{
1132 static int printed_this = 0;
8fbf7334 1133 if (DWARF2_LINE_MIN_INSN_LENGTH > 1)
a3b75434 1134 {
8fbf7334
JL
1135 if (*addr_delta % DWARF2_LINE_MIN_INSN_LENGTH != 0 && !printed_this)
1136 {
1137 as_bad("unaligned opcodes detected in executable segment");
1138 printed_this = 1;
1139 }
1140 *addr_delta /= DWARF2_LINE_MIN_INSN_LENGTH;
a3b75434 1141 }
a3b75434 1142}
a3b75434 1143
220e750f
RH
1144/* Encode a pair of line and address skips as efficiently as possible.
1145 Note that the line skip is signed, whereas the address skip is unsigned.
353e2c69 1146
220e750f
RH
1147 The following two routines *must* be kept in sync. This is
1148 enforced by making emit_inc_line_addr abort if we do not emit
1149 exactly the expected number of bytes. */
1150
1151static int
a2e22468 1152size_inc_line_addr (int line_delta, addressT addr_delta)
fac0d250 1153{
220e750f
RH
1154 unsigned int tmp, opcode;
1155 int len = 0;
fac0d250 1156
220e750f 1157 /* Scale the address delta by the minimum instruction length. */
a3b75434 1158 scale_addr_delta (&addr_delta);
220e750f
RH
1159
1160 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence.
1161 We cannot use special opcodes here, since we want the end_sequence
1162 to emit the matrix entry. */
1163 if (line_delta == INT_MAX)
fac0d250 1164 {
220e750f
RH
1165 if (addr_delta == MAX_SPECIAL_ADDR_DELTA)
1166 len = 1;
fac0d250 1167 else
220e750f
RH
1168 len = 1 + sizeof_leb128 (addr_delta, 0);
1169 return len + 3;
fac0d250 1170 }
fac0d250 1171
220e750f
RH
1172 /* Bias the line delta by the base. */
1173 tmp = line_delta - DWARF2_LINE_BASE;
fac0d250 1174
220e750f
RH
1175 /* If the line increment is out of range of a special opcode, we
1176 must encode it with DW_LNS_advance_line. */
1177 if (tmp >= DWARF2_LINE_RANGE)
1178 {
1179 len = 1 + sizeof_leb128 (line_delta, 1);
1180 line_delta = 0;
1181 tmp = 0 - DWARF2_LINE_BASE;
1182 }
fac0d250 1183
220e750f
RH
1184 /* Bias the opcode by the special opcode base. */
1185 tmp += DWARF2_LINE_OPCODE_BASE;
353e2c69 1186
220e750f
RH
1187 /* Avoid overflow when addr_delta is large. */
1188 if (addr_delta < 256 + MAX_SPECIAL_ADDR_DELTA)
1189 {
1190 /* Try using a special opcode. */
1191 opcode = tmp + addr_delta * DWARF2_LINE_RANGE;
1192 if (opcode <= 255)
1193 return len + 1;
1194
1195 /* Try using DW_LNS_const_add_pc followed by special op. */
1196 opcode = tmp + (addr_delta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
1197 if (opcode <= 255)
1198 return len + 2;
1199 }
1200
1201 /* Otherwise use DW_LNS_advance_pc. */
1202 len += 1 + sizeof_leb128 (addr_delta, 0);
1203
1204 /* DW_LNS_copy or special opcode. */
1205 len += 1;
1206
1207 return len;
1208}
fac0d250 1209
220e750f 1210static void
a2e22468 1211emit_inc_line_addr (int line_delta, addressT addr_delta, char *p, int len)
220e750f
RH
1212{
1213 unsigned int tmp, opcode;
1214 int need_copy = 0;
1215 char *end = p + len;
fac0d250 1216
07a53e5c
RH
1217 /* Line number sequences cannot go backward in addresses. This means
1218 we've incorrectly ordered the statements in the sequence. */
9c2799c2 1219 gas_assert ((offsetT) addr_delta >= 0);
07a53e5c 1220
220e750f 1221 /* Scale the address delta by the minimum instruction length. */
a3b75434
DD
1222 scale_addr_delta (&addr_delta);
1223
220e750f
RH
1224 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence.
1225 We cannot use special opcodes here, since we want the end_sequence
1226 to emit the matrix entry. */
1227 if (line_delta == INT_MAX)
fac0d250 1228 {
220e750f
RH
1229 if (addr_delta == MAX_SPECIAL_ADDR_DELTA)
1230 *p++ = DW_LNS_const_add_pc;
1231 else
fac0d250 1232 {
220e750f
RH
1233 *p++ = DW_LNS_advance_pc;
1234 p += output_leb128 (p, addr_delta, 0);
fac0d250 1235 }
220e750f
RH
1236
1237 *p++ = DW_LNS_extended_op;
1238 *p++ = 1;
1239 *p++ = DW_LNE_end_sequence;
1240 goto done;
fac0d250
RH
1241 }
1242
220e750f
RH
1243 /* Bias the line delta by the base. */
1244 tmp = line_delta - DWARF2_LINE_BASE;
1245
1246 /* If the line increment is out of range of a special opcode, we
1247 must encode it with DW_LNS_advance_line. */
1248 if (tmp >= DWARF2_LINE_RANGE)
fac0d250 1249 {
220e750f
RH
1250 *p++ = DW_LNS_advance_line;
1251 p += output_leb128 (p, line_delta, 1);
fac0d250 1252
220e750f
RH
1253 line_delta = 0;
1254 tmp = 0 - DWARF2_LINE_BASE;
1255 need_copy = 1;
1256 }
fac0d250 1257
bd0eb99b
RH
1258 /* Prettier, I think, to use DW_LNS_copy instead of a "line +0, addr +0"
1259 special opcode. */
1260 if (line_delta == 0 && addr_delta == 0)
1261 {
1262 *p++ = DW_LNS_copy;
1263 goto done;
1264 }
1265
220e750f
RH
1266 /* Bias the opcode by the special opcode base. */
1267 tmp += DWARF2_LINE_OPCODE_BASE;
fac0d250 1268
220e750f
RH
1269 /* Avoid overflow when addr_delta is large. */
1270 if (addr_delta < 256 + MAX_SPECIAL_ADDR_DELTA)
fac0d250 1271 {
220e750f
RH
1272 /* Try using a special opcode. */
1273 opcode = tmp + addr_delta * DWARF2_LINE_RANGE;
1274 if (opcode <= 255)
1275 {
1276 *p++ = opcode;
1277 goto done;
1278 }
1279
1280 /* Try using DW_LNS_const_add_pc followed by special op. */
1281 opcode = tmp + (addr_delta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
1282 if (opcode <= 255)
fac0d250 1283 {
220e750f
RH
1284 *p++ = DW_LNS_const_add_pc;
1285 *p++ = opcode;
1286 goto done;
fac0d250
RH
1287 }
1288 }
220e750f
RH
1289
1290 /* Otherwise use DW_LNS_advance_pc. */
1291 *p++ = DW_LNS_advance_pc;
1292 p += output_leb128 (p, addr_delta, 0);
1293
1294 if (need_copy)
1295 *p++ = DW_LNS_copy;
fac0d250 1296 else
220e750f 1297 *p++ = tmp;
fac0d250 1298
220e750f 1299 done:
9c2799c2 1300 gas_assert (p == end);
220e750f 1301}
a8316fe2 1302
220e750f 1303/* Handy routine to combine calls to the above two routines. */
e1c05f12 1304
220e750f 1305static void
a2e22468 1306out_inc_line_addr (int line_delta, addressT addr_delta)
220e750f
RH
1307{
1308 int len = size_inc_line_addr (line_delta, addr_delta);
1309 emit_inc_line_addr (line_delta, addr_delta, frag_more (len), len);
1310}
9de8d8f1 1311
1737851b
BW
1312/* Write out an alternative form of line and address skips using
1313 DW_LNS_fixed_advance_pc opcodes. This uses more space than the default
7ddd14de
BW
1314 line and address information, but it is required if linker relaxation
1315 could change the code offsets. The following two routines *must* be
1316 kept in sync. */
453dc3f0 1317#define ADDR_DELTA_LIMIT 50000
1737851b 1318
7ddd14de
BW
1319static int
1320size_fixed_inc_line_addr (int line_delta, addressT addr_delta)
1737851b 1321{
7ddd14de 1322 int len = 0;
1737851b
BW
1323
1324 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence. */
7ddd14de
BW
1325 if (line_delta != INT_MAX)
1326 len = 1 + sizeof_leb128 (line_delta, 1);
1327
453dc3f0 1328 if (addr_delta > ADDR_DELTA_LIMIT)
7ddd14de
BW
1329 {
1330 /* DW_LNS_extended_op */
1331 len += 1 + sizeof_leb128 (sizeof_address + 1, 0);
1332 /* DW_LNE_set_address */
1333 len += 1 + sizeof_address;
1334 }
1335 else
1336 /* DW_LNS_fixed_advance_pc */
1337 len += 3;
1338
1737851b 1339 if (line_delta == INT_MAX)
7ddd14de
BW
1340 /* DW_LNS_extended_op + DW_LNE_end_sequence */
1341 len += 3;
1342 else
1343 /* DW_LNS_copy */
1344 len += 1;
1345
1346 return len;
1347}
1348
1349static void
1350emit_fixed_inc_line_addr (int line_delta, addressT addr_delta, fragS *frag,
1351 char *p, int len)
1352{
91d6fa6a 1353 expressionS *pexp;
7ddd14de
BW
1354 char *end = p + len;
1355
1356 /* Line number sequences cannot go backward in addresses. This means
1357 we've incorrectly ordered the statements in the sequence. */
9c2799c2 1358 gas_assert ((offsetT) addr_delta >= 0);
7ddd14de 1359
b40bf0a2
NC
1360 /* Verify that we have kept in sync with size_fixed_inc_line_addr. */
1361 gas_assert (len == size_fixed_inc_line_addr (line_delta, addr_delta));
1362
7ddd14de
BW
1363 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence. */
1364 if (line_delta != INT_MAX)
1365 {
1366 *p++ = DW_LNS_advance_line;
1367 p += output_leb128 (p, line_delta, 1);
1368 }
1369
91d6fa6a 1370 pexp = symbol_get_value_expression (frag->fr_symbol);
7ddd14de
BW
1371
1372 /* The DW_LNS_fixed_advance_pc opcode has a 2-byte operand so it can
1373 advance the address by at most 64K. Linker relaxation (without
1374 which this function would not be used) could change the operand by
1375 an unknown amount. If the address increment is getting close to
1376 the limit, just reset the address. */
453dc3f0 1377 if (addr_delta > ADDR_DELTA_LIMIT)
1737851b 1378 {
7ddd14de 1379 symbolS *to_sym;
91d6fa6a 1380 expressionS exp;
7ddd14de 1381
031e3350 1382 memset (&exp, 0, sizeof exp);
9f6db0d3 1383 gas_assert (pexp->X_op == O_subtract);
91d6fa6a 1384 to_sym = pexp->X_add_symbol;
7ddd14de
BW
1385
1386 *p++ = DW_LNS_extended_op;
1387 p += output_leb128 (p, sizeof_address + 1, 0);
1388 *p++ = DW_LNE_set_address;
91d6fa6a
NC
1389 exp.X_op = O_symbol;
1390 exp.X_add_symbol = to_sym;
1391 exp.X_add_number = 0;
62ebcb5c 1392 emit_expr_fix (&exp, sizeof_address, frag, p, TC_PARSE_CONS_RETURN_NONE);
7ddd14de
BW
1393 p += sizeof_address;
1394 }
1395 else
1396 {
1397 *p++ = DW_LNS_fixed_advance_pc;
62ebcb5c 1398 emit_expr_fix (pexp, 2, frag, p, TC_PARSE_CONS_RETURN_NONE);
7ddd14de 1399 p += 2;
1737851b
BW
1400 }
1401
7ddd14de
BW
1402 if (line_delta == INT_MAX)
1403 {
1404 *p++ = DW_LNS_extended_op;
1405 *p++ = 1;
1406 *p++ = DW_LNE_end_sequence;
1407 }
1408 else
1409 *p++ = DW_LNS_copy;
1737851b 1410
9c2799c2 1411 gas_assert (p == end);
1737851b
BW
1412}
1413
220e750f
RH
1414/* Generate a variant frag that we can use to relax address/line
1415 increments between fragments of the target segment. */
9e3af0e7 1416
220e750f 1417static void
07a53e5c 1418relax_inc_line_addr (int line_delta, symbolS *to_sym, symbolS *from_sym)
220e750f 1419{
91d6fa6a 1420 expressionS exp;
220e750f 1421 int max_chars;
6576f0b5 1422
031e3350 1423 memset (&exp, 0, sizeof exp);
91d6fa6a
NC
1424 exp.X_op = O_subtract;
1425 exp.X_add_symbol = to_sym;
1426 exp.X_op_symbol = from_sym;
1427 exp.X_add_number = 0;
fac0d250 1428
220e750f
RH
1429 /* The maximum size of the frag is the line delta with a maximum
1430 sized address delta. */
7ddd14de
BW
1431 if (DWARF2_USE_FIXED_ADVANCE_PC)
1432 max_chars = size_fixed_inc_line_addr (line_delta,
1433 -DWARF2_LINE_MIN_INSN_LENGTH);
1434 else
1435 max_chars = size_inc_line_addr (line_delta, -DWARF2_LINE_MIN_INSN_LENGTH);
fac0d250 1436
220e750f 1437 frag_var (rs_dwarf2dbg, max_chars, max_chars, 1,
91d6fa6a 1438 make_expr_symbol (&exp), line_delta, NULL);
220e750f 1439}
fac0d250 1440
220e750f
RH
1441/* The function estimates the size of a rs_dwarf2dbg variant frag
1442 based on the current values of the symbols. It is called before
1443 the relaxation loop. We set fr_subtype to the expected length. */
fac0d250 1444
220e750f 1445int
a2e22468 1446dwarf2dbg_estimate_size_before_relax (fragS *frag)
220e750f
RH
1447{
1448 offsetT addr_delta;
1449 int size;
fac0d250 1450
6386f3a7 1451 addr_delta = resolve_symbol_value (frag->fr_symbol);
7ddd14de
BW
1452 if (DWARF2_USE_FIXED_ADVANCE_PC)
1453 size = size_fixed_inc_line_addr (frag->fr_offset, addr_delta);
1454 else
1455 size = size_inc_line_addr (frag->fr_offset, addr_delta);
fac0d250 1456
220e750f 1457 frag->fr_subtype = size;
fac0d250 1458
220e750f
RH
1459 return size;
1460}
1461
1462/* This function relaxes a rs_dwarf2dbg variant frag based on the
1463 current values of the symbols. fr_subtype is the current length
1464 of the frag. This returns the change in frag length. */
1465
1466int
a2e22468 1467dwarf2dbg_relax_frag (fragS *frag)
220e750f
RH
1468{
1469 int old_size, new_size;
fac0d250 1470
220e750f
RH
1471 old_size = frag->fr_subtype;
1472 new_size = dwarf2dbg_estimate_size_before_relax (frag);
ee515fb7 1473
220e750f 1474 return new_size - old_size;
fac0d250
RH
1475}
1476
220e750f
RH
1477/* This function converts a rs_dwarf2dbg variant frag into a normal
1478 fill frag. This is called after all relaxation has been done.
1479 fr_subtype will be the desired length of the frag. */
1480
1481void
a2e22468 1482dwarf2dbg_convert_frag (fragS *frag)
fac0d250 1483{
220e750f
RH
1484 offsetT addr_diff;
1485
453dc3f0
NC
1486 if (DWARF2_USE_FIXED_ADVANCE_PC)
1487 {
2b0f3761 1488 /* If linker relaxation is enabled then the distance between the two
453dc3f0
NC
1489 symbols in the frag->fr_symbol expression might change. Hence we
1490 cannot rely upon the value computed by resolve_symbol_value.
1491 Instead we leave the expression unfinalized and allow
1492 emit_fixed_inc_line_addr to create a fixup (which later becomes a
1493 relocation) that will allow the linker to correctly compute the
1494 actual address difference. We have to use a fixed line advance for
1495 this as we cannot (easily) relocate leb128 encoded values. */
1496 int saved_finalize_syms = finalize_syms;
1497
1498 finalize_syms = 0;
1499 addr_diff = resolve_symbol_value (frag->fr_symbol);
1500 finalize_syms = saved_finalize_syms;
1501 }
1502 else
1503 addr_diff = resolve_symbol_value (frag->fr_symbol);
fac0d250 1504
220e750f
RH
1505 /* fr_var carries the max_chars that we created the fragment with.
1506 fr_subtype carries the current expected length. We must, of
1507 course, have allocated enough memory earlier. */
9c2799c2 1508 gas_assert (frag->fr_var >= (int) frag->fr_subtype);
fac0d250 1509
7ddd14de
BW
1510 if (DWARF2_USE_FIXED_ADVANCE_PC)
1511 emit_fixed_inc_line_addr (frag->fr_offset, addr_diff, frag,
1512 frag->fr_literal + frag->fr_fix,
1513 frag->fr_subtype);
1514 else
1515 emit_inc_line_addr (frag->fr_offset, addr_diff,
1516 frag->fr_literal + frag->fr_fix, frag->fr_subtype);
220e750f
RH
1517
1518 frag->fr_fix += frag->fr_subtype;
1519 frag->fr_type = rs_fill;
1520 frag->fr_var = 0;
1521 frag->fr_offset = 0;
1522}
1523
1524/* Generate .debug_line content for the chain of line number entries
1525 beginning at E, for segment SEG. */
1526
1527static void
a2e22468 1528process_entries (segT seg, struct line_entry *e)
220e750f
RH
1529{
1530 unsigned filenum = 1;
1531 unsigned line = 1;
1532 unsigned column = 0;
bd0eb99b
RH
1533 unsigned isa = 0;
1534 unsigned flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
07a53e5c
RH
1535 fragS *last_frag = NULL, *frag;
1536 addressT last_frag_ofs = 0, frag_ofs;
fead5cd9 1537 symbolS *last_lab = NULL, *lab;
220e750f
RH
1538 struct line_entry *next;
1539
b40bf0a2
NC
1540 if (flag_dwarf_sections)
1541 {
1542 char * name;
1543 const char * sec_name;
1544
2b0f3761 1545 /* Switch to the relevant sub-section before we start to emit
b40bf0a2
NC
1546 the line number table.
1547
1548 FIXME: These sub-sections do not have a normal Line Number
1549 Program Header, thus strictly speaking they are not valid
1550 DWARF sections. Unfortunately the DWARF standard assumes
1551 a one-to-one relationship between compilation units and
1552 line number tables. Thus we have to have a .debug_line
1553 section, as well as our sub-sections, and we have to ensure
1554 that all of the sub-sections are merged into a proper
1555 .debug_line section before a debugger sees them. */
3739860c 1556
b40bf0a2
NC
1557 sec_name = bfd_get_section_name (stdoutput, seg);
1558 if (strcmp (sec_name, ".text") != 0)
1559 {
29a2809e 1560 name = concat (".debug_line", sec_name, (char *) NULL);
b40bf0a2
NC
1561 subseg_set (subseg_get (name, FALSE), 0);
1562 }
1563 else
1564 /* Don't create a .debug_line.text section -
1565 that is redundant. Instead just switch back to the
1566 normal .debug_line section. */
1567 subseg_set (subseg_get (".debug_line", FALSE), 0);
1568 }
1569
fead5cd9 1570 do
fac0d250 1571 {
07a53e5c 1572 int line_delta;
220e750f
RH
1573
1574 if (filenum != e->loc.filenum)
fac0d250 1575 {
220e750f
RH
1576 filenum = e->loc.filenum;
1577 out_opcode (DW_LNS_set_file);
1578 out_uleb128 (filenum);
220e750f
RH
1579 }
1580
1581 if (column != e->loc.column)
1582 {
1583 column = e->loc.column;
1584 out_opcode (DW_LNS_set_column);
1585 out_uleb128 (column);
220e750f
RH
1586 }
1587
92846e72
CC
1588 if (e->loc.discriminator != 0)
1589 {
1590 out_opcode (DW_LNS_extended_op);
1591 out_leb128 (1 + sizeof_leb128 (e->loc.discriminator, 0));
1592 out_opcode (DW_LNE_set_discriminator);
1593 out_uleb128 (e->loc.discriminator);
1594 }
1595
bd0eb99b
RH
1596 if (isa != e->loc.isa)
1597 {
1598 isa = e->loc.isa;
1599 out_opcode (DW_LNS_set_isa);
1600 out_uleb128 (isa);
bd0eb99b
RH
1601 }
1602
1603 if ((e->loc.flags ^ flags) & DWARF2_FLAG_IS_STMT)
220e750f
RH
1604 {
1605 flags = e->loc.flags;
1606 out_opcode (DW_LNS_negate_stmt);
220e750f
RH
1607 }
1608
bd0eb99b 1609 if (e->loc.flags & DWARF2_FLAG_BASIC_BLOCK)
07a53e5c 1610 out_opcode (DW_LNS_set_basic_block);
220e750f 1611
bd0eb99b 1612 if (e->loc.flags & DWARF2_FLAG_PROLOGUE_END)
07a53e5c 1613 out_opcode (DW_LNS_set_prologue_end);
bd0eb99b
RH
1614
1615 if (e->loc.flags & DWARF2_FLAG_EPILOGUE_BEGIN)
07a53e5c 1616 out_opcode (DW_LNS_set_epilogue_begin);
bd0eb99b 1617
fb81275c
JM
1618 /* Don't try to optimize away redundant entries; gdb wants two
1619 entries for a function where the code starts on the same line as
1620 the {, and there's no way to identify that case here. Trust gcc
1621 to optimize appropriately. */
07a53e5c
RH
1622 line_delta = e->loc.line - line;
1623 lab = e->label;
1624 frag = symbol_get_frag (lab);
1625 frag_ofs = S_GET_VALUE (lab);
220e750f 1626
ba8826a8
AO
1627 if (last_frag == NULL
1628 || (e->loc.view == force_reset_view && force_reset_view
1629 /* If we're going to reset the view, but we know we're
1630 advancing the PC, we don't have to force with
1631 set_address. We know we do when we're at the same
1632 address of the same frag, and we know we might when
1633 we're in the beginning of a frag, and we were at the
1634 end of the previous frag. */
1635 && (frag == last_frag
1636 ? (last_frag_ofs == frag_ofs)
1637 : (frag_ofs == 0
1638 && ((offsetT)last_frag_ofs
1639 >= get_frag_fix (last_frag, seg))))))
220e750f 1640 {
07a53e5c
RH
1641 out_set_addr (lab);
1642 out_inc_line_addr (line_delta, 0);
220e750f 1643 }
7ddd14de 1644 else if (frag == last_frag && ! DWARF2_USE_FIXED_ADVANCE_PC)
07a53e5c
RH
1645 out_inc_line_addr (line_delta, frag_ofs - last_frag_ofs);
1646 else
1647 relax_inc_line_addr (line_delta, lab, last_lab);
1648
1649 line = e->loc.line;
1650 last_lab = lab;
1651 last_frag = frag;
1652 last_frag_ofs = frag_ofs;
220e750f
RH
1653
1654 next = e->next;
1655 free (e);
1656 e = next;
fac0d250 1657 }
fead5cd9 1658 while (e);
353e2c69 1659
220e750f 1660 /* Emit a DW_LNE_end_sequence for the end of the section. */
07a53e5c 1661 frag = last_frag_for_seg (seg);
c9049d30 1662 frag_ofs = get_frag_fix (frag, seg);
7ddd14de 1663 if (frag == last_frag && ! DWARF2_USE_FIXED_ADVANCE_PC)
07a53e5c 1664 out_inc_line_addr (INT_MAX, frag_ofs - last_frag_ofs);
220e750f 1665 else
07a53e5c
RH
1666 {
1667 lab = symbol_temp_new (seg, frag_ofs, frag);
1668 relax_inc_line_addr (INT_MAX, lab, last_lab);
1669 }
fac0d250
RH
1670}
1671
220e750f
RH
1672/* Emit the directory and file tables for .debug_line. */
1673
fac0d250 1674static void
a2e22468 1675out_file_list (void)
fac0d250
RH
1676{
1677 size_t size;
3d6b762c 1678 const char *dir;
fac0d250 1679 char *cp;
220e750f
RH
1680 unsigned int i;
1681
a7ed1ca2
NC
1682 /* Emit directory list. */
1683 for (i = 1; i < dirs_in_use; ++i)
1684 {
3d6b762c
JM
1685 dir = remap_debug_filename (dirs[i]);
1686 size = strlen (dir) + 1;
a7ed1ca2 1687 cp = frag_more (size);
3d6b762c 1688 memcpy (cp, dir, size);
a7ed1ca2
NC
1689 }
1690 /* Terminate it. */
220e750f 1691 out_byte ('\0');
fac0d250 1692
220e750f 1693 for (i = 1; i < files_in_use; ++i)
fac0d250 1694 {
01e1a5bc
NC
1695 const char *fullfilename;
1696
249e3833
RH
1697 if (files[i].filename == NULL)
1698 {
0e389e77 1699 as_bad (_("unassigned file number %ld"), (long) i);
88b4ca40
RH
1700 /* Prevent a crash later, particularly for file 1. */
1701 files[i].filename = "";
249e3833
RH
1702 continue;
1703 }
1704
01e1a5bc
NC
1705 fullfilename = DWARF2_FILE_NAME (files[i].filename,
1706 files[i].dir ? dirs [files [i].dir] : "");
1707 size = strlen (fullfilename) + 1;
fac0d250 1708 cp = frag_more (size);
01e1a5bc 1709 memcpy (cp, fullfilename, size);
fac0d250 1710
220e750f 1711 out_uleb128 (files[i].dir); /* directory number */
01e1a5bc
NC
1712 /* Output the last modification timestamp. */
1713 out_uleb128 (DWARF2_FILE_TIME_NAME (files[i].filename,
1714 files[i].dir ? dirs [files [i].dir] : ""));
1715 /* Output the filesize. */
1716 out_uleb128 (DWARF2_FILE_SIZE_NAME (files[i].filename,
1717 files[i].dir ? dirs [files [i].dir] : ""));
fac0d250 1718 }
353e2c69
KH
1719
1720 /* Terminate filename list. */
1721 out_byte (0);
fac0d250
RH
1722}
1723
413a266c
AM
1724/* Switch to SEC and output a header length field. Return the size of
1725 offsets used in SEC. The caller must set EXPR->X_add_symbol value
d025d5e5
MW
1726 to the end of the section. EXPR->X_add_number will be set to the
1727 negative size of the header. */
413a266c
AM
1728
1729static int
91d6fa6a 1730out_header (asection *sec, expressionS *exp)
413a266c
AM
1731{
1732 symbolS *start_sym;
1733 symbolS *end_sym;
1734
1735 subseg_set (sec, 0);
b57dc16f 1736
0f8f0c57
NC
1737 if (flag_dwarf_sections)
1738 {
1739 /* If we are going to put the start and end symbols in different
1740 sections, then we need real symbols, not just fake, local ones. */
1741 frag_now_fix ();
1742 start_sym = symbol_make (".Ldebug_line_start");
1743 end_sym = symbol_make (".Ldebug_line_end");
1744 symbol_set_value_now (start_sym);
1745 }
1746 else
0f8f0c57
NC
1747 {
1748 start_sym = symbol_temp_new_now ();
1749 end_sym = symbol_temp_make ();
1750 }
413a266c
AM
1751
1752 /* Total length of the information. */
91d6fa6a
NC
1753 exp->X_op = O_subtract;
1754 exp->X_add_symbol = end_sym;
1755 exp->X_op_symbol = start_sym;
413a266c
AM
1756
1757 switch (DWARF2_FORMAT (sec))
1758 {
1759 case dwarf2_format_32bit:
91d6fa6a
NC
1760 exp->X_add_number = -4;
1761 emit_expr (exp, 4);
413a266c
AM
1762 return 4;
1763
1764 case dwarf2_format_64bit:
91d6fa6a 1765 exp->X_add_number = -12;
413a266c 1766 out_four (-1);
91d6fa6a 1767 emit_expr (exp, 8);
413a266c
AM
1768 return 8;
1769
1770 case dwarf2_format_64bit_irix:
91d6fa6a
NC
1771 exp->X_add_number = -8;
1772 emit_expr (exp, 8);
413a266c
AM
1773 return 8;
1774 }
1775
1776 as_fatal (_("internal error: unknown dwarf2 format"));
1777 return 0;
1778}
1779
220e750f
RH
1780/* Emit the collected .debug_line data. */
1781
1782static void
a2e22468 1783out_debug_line (segT line_seg)
220e750f 1784{
91d6fa6a 1785 expressionS exp;
02fe846e 1786 symbolS *prologue_start, *prologue_end;
220e750f
RH
1787 symbolS *line_end;
1788 struct line_seg *s;
14e777e0 1789 int sizeof_offset;
220e750f 1790
031e3350 1791 memset (&exp, 0, sizeof exp);
91d6fa6a
NC
1792 sizeof_offset = out_header (line_seg, &exp);
1793 line_end = exp.X_add_symbol;
220e750f
RH
1794
1795 /* Version. */
88ebb0a1 1796 out_two (DWARF2_LINE_VERSION);
220e750f
RH
1797
1798 /* Length of the prologue following this length. */
02fe846e 1799 prologue_start = symbol_temp_make ();
413a266c 1800 prologue_end = symbol_temp_make ();
02fe846e 1801 exp.X_op = O_subtract;
91d6fa6a 1802 exp.X_add_symbol = prologue_end;
02fe846e
AM
1803 exp.X_op_symbol = prologue_start;
1804 exp.X_add_number = 0;
91d6fa6a 1805 emit_expr (&exp, sizeof_offset);
02fe846e 1806 symbol_set_value_now (prologue_start);
220e750f
RH
1807
1808 /* Parameters of the state machine. */
1809 out_byte (DWARF2_LINE_MIN_INSN_LENGTH);
1810 out_byte (DWARF2_LINE_DEFAULT_IS_STMT);
1811 out_byte (DWARF2_LINE_BASE);
1812 out_byte (DWARF2_LINE_RANGE);
1813 out_byte (DWARF2_LINE_OPCODE_BASE);
1814
1815 /* Standard opcode lengths. */
1816 out_byte (0); /* DW_LNS_copy */
1817 out_byte (1); /* DW_LNS_advance_pc */
1818 out_byte (1); /* DW_LNS_advance_line */
1819 out_byte (1); /* DW_LNS_set_file */
1820 out_byte (1); /* DW_LNS_set_column */
1821 out_byte (0); /* DW_LNS_negate_stmt */
1822 out_byte (0); /* DW_LNS_set_basic_block */
1823 out_byte (0); /* DW_LNS_const_add_pc */
1824 out_byte (1); /* DW_LNS_fixed_advance_pc */
bd0eb99b
RH
1825 out_byte (0); /* DW_LNS_set_prologue_end */
1826 out_byte (0); /* DW_LNS_set_epilogue_begin */
1827 out_byte (1); /* DW_LNS_set_isa */
220e750f
RH
1828
1829 out_file_list ();
1830
b7d6ed97 1831 symbol_set_value_now (prologue_end);
220e750f
RH
1832
1833 /* For each section, emit a statement program. */
ee515fb7 1834 for (s = all_segs; s; s = s->next)
9aec2026
NC
1835 if (SEG_NORMAL (s->seg))
1836 process_entries (s->seg, s->head->head);
1837 else
1838 as_warn ("dwarf line number information for %s ignored",
1839 segment_name (s->seg));
220e750f 1840
b40bf0a2
NC
1841 if (flag_dwarf_sections)
1842 /* We have to switch to the special .debug_line_end section
1843 before emitting the end-of-debug_line symbol. The linker
1844 script arranges for this section to be placed after all the
1845 (potentially garbage collected) .debug_line.<foo> sections.
1846 This section contains the line_end symbol which is used to
1847 compute the size of the linked .debug_line section, as seen
1848 in the DWARF Line Number header. */
1849 subseg_set (subseg_get (".debug_line_end", FALSE), 0);
1850
b7d6ed97 1851 symbol_set_value_now (line_end);
220e750f
RH
1852}
1853
802f5d9e
NC
1854static void
1855out_debug_ranges (segT ranges_seg)
1856{
1857 unsigned int addr_size = sizeof_address;
1858 struct line_seg *s;
91d6fa6a 1859 expressionS exp;
802f5d9e
NC
1860 unsigned int i;
1861
031e3350 1862 memset (&exp, 0, sizeof exp);
802f5d9e
NC
1863 subseg_set (ranges_seg, 0);
1864
1865 /* Base Address Entry. */
7fd3924a 1866 for (i = 0; i < addr_size; i++)
802f5d9e 1867 out_byte (0xff);
7fd3924a 1868 for (i = 0; i < addr_size; i++)
802f5d9e
NC
1869 out_byte (0);
1870
1871 /* Range List Entry. */
1872 for (s = all_segs; s; s = s->next)
1873 {
1874 fragS *frag;
1875 symbolS *beg, *end;
1876
1877 frag = first_frag_for_seg (s->seg);
1878 beg = symbol_temp_new (s->seg, 0, frag);
1879 s->text_start = beg;
1880
1881 frag = last_frag_for_seg (s->seg);
1882 end = symbol_temp_new (s->seg, get_frag_fix (frag, s->seg), frag);
1883 s->text_end = end;
1884
91d6fa6a
NC
1885 exp.X_op = O_symbol;
1886 exp.X_add_symbol = beg;
1887 exp.X_add_number = 0;
1888 emit_expr (&exp, addr_size);
802f5d9e 1889
91d6fa6a
NC
1890 exp.X_op = O_symbol;
1891 exp.X_add_symbol = end;
1892 exp.X_add_number = 0;
1893 emit_expr (&exp, addr_size);
802f5d9e
NC
1894 }
1895
1896 /* End of Range Entry. */
7fd3924a 1897 for (i = 0; i < addr_size; i++)
802f5d9e 1898 out_byte (0);
7fd3924a 1899 for (i = 0; i < addr_size; i++)
802f5d9e
NC
1900 out_byte (0);
1901}
1902
220e750f
RH
1903/* Emit data for .debug_aranges. */
1904
58b5739a 1905static void
a2e22468 1906out_debug_aranges (segT aranges_seg, segT info_seg)
fac0d250 1907{
220e750f 1908 unsigned int addr_size = sizeof_address;
d025d5e5 1909 offsetT size;
220e750f 1910 struct line_seg *s;
91d6fa6a 1911 expressionS exp;
413a266c 1912 symbolS *aranges_end;
220e750f 1913 char *p;
413a266c 1914 int sizeof_offset;
fac0d250 1915
031e3350 1916 memset (&exp, 0, sizeof exp);
91d6fa6a
NC
1917 sizeof_offset = out_header (aranges_seg, &exp);
1918 aranges_end = exp.X_add_symbol;
d025d5e5 1919 size = -exp.X_add_number;
fac0d250 1920
220e750f 1921 /* Version. */
88ebb0a1 1922 out_two (DWARF2_ARANGES_VERSION);
d025d5e5 1923 size += 2;
4dc7ead9 1924
220e750f 1925 /* Offset to .debug_info. */
413a266c 1926 TC_DWARF2_EMIT_OFFSET (section_symbol (info_seg), sizeof_offset);
d025d5e5 1927 size += sizeof_offset;
220e750f
RH
1928
1929 /* Size of an address (offset portion). */
1930 out_byte (addr_size);
d025d5e5 1931 size++;
220e750f
RH
1932
1933 /* Size of a segment descriptor. */
1934 out_byte (0);
d025d5e5 1935 size++;
220e750f
RH
1936
1937 /* Align the header. */
d025d5e5
MW
1938 while ((size++ % (2 * addr_size)) > 0)
1939 out_byte (0);
4dc7ead9 1940
ee515fb7 1941 for (s = all_segs; s; s = s->next)
220e750f
RH
1942 {
1943 fragS *frag;
1944 symbolS *beg, *end;
1945
1946 frag = first_frag_for_seg (s->seg);
b7d6ed97 1947 beg = symbol_temp_new (s->seg, 0, frag);
220e750f
RH
1948 s->text_start = beg;
1949
1950 frag = last_frag_for_seg (s->seg);
c9049d30 1951 end = symbol_temp_new (s->seg, get_frag_fix (frag, s->seg), frag);
220e750f
RH
1952 s->text_end = end;
1953
91d6fa6a
NC
1954 exp.X_op = O_symbol;
1955 exp.X_add_symbol = beg;
1956 exp.X_add_number = 0;
1957 emit_expr (&exp, addr_size);
220e750f 1958
91d6fa6a
NC
1959 exp.X_op = O_subtract;
1960 exp.X_add_symbol = end;
1961 exp.X_op_symbol = beg;
1962 exp.X_add_number = 0;
1963 emit_expr (&exp, addr_size);
220e750f 1964 }
4dc7ead9 1965
220e750f
RH
1966 p = frag_more (2 * addr_size);
1967 md_number_to_chars (p, 0, addr_size);
1968 md_number_to_chars (p + addr_size, 0, addr_size);
413a266c
AM
1969
1970 symbol_set_value_now (aranges_end);
4dc7ead9
RH
1971}
1972
220e750f
RH
1973/* Emit data for .debug_abbrev. Note that this must be kept in
1974 sync with out_debug_info below. */
fac0d250 1975
220e750f 1976static void
413a266c
AM
1977out_debug_abbrev (segT abbrev_seg,
1978 segT info_seg ATTRIBUTE_UNUSED,
1979 segT line_seg ATTRIBUTE_UNUSED)
220e750f
RH
1980{
1981 subseg_set (abbrev_seg, 0);
fac0d250 1982
220e750f
RH
1983 out_uleb128 (1);
1984 out_uleb128 (DW_TAG_compile_unit);
1985 out_byte (DW_CHILDREN_no);
413a266c
AM
1986 if (DWARF2_FORMAT (line_seg) == dwarf2_format_32bit)
1987 out_abbrev (DW_AT_stmt_list, DW_FORM_data4);
1988 else
1989 out_abbrev (DW_AT_stmt_list, DW_FORM_data8);
220e750f 1990 if (all_segs->next == NULL)
4dc7ead9 1991 {
220e750f 1992 out_abbrev (DW_AT_low_pc, DW_FORM_addr);
88ebb0a1
MW
1993 if (DWARF2_VERSION < 4)
1994 out_abbrev (DW_AT_high_pc, DW_FORM_addr);
1995 else
1996 out_abbrev (DW_AT_high_pc, (sizeof_address == 4
1997 ? DW_FORM_data4 : DW_FORM_data8));
220e750f 1998 }
802f5d9e
NC
1999 else
2000 {
413a266c 2001 if (DWARF2_FORMAT (info_seg) == dwarf2_format_32bit)
802f5d9e
NC
2002 out_abbrev (DW_AT_ranges, DW_FORM_data4);
2003 else
2004 out_abbrev (DW_AT_ranges, DW_FORM_data8);
2005 }
49fced12
MW
2006 out_abbrev (DW_AT_name, DW_FORM_strp);
2007 out_abbrev (DW_AT_comp_dir, DW_FORM_strp);
2008 out_abbrev (DW_AT_producer, DW_FORM_strp);
220e750f
RH
2009 out_abbrev (DW_AT_language, DW_FORM_data2);
2010 out_abbrev (0, 0);
a987bfc9
RH
2011
2012 /* Terminate the abbreviations for this compilation unit. */
2013 out_byte (0);
220e750f 2014}
4dc7ead9 2015
220e750f 2016/* Emit a description of this compilation unit for .debug_info. */
4dc7ead9 2017
220e750f 2018static void
49fced12
MW
2019out_debug_info (segT info_seg, segT abbrev_seg, segT line_seg, segT ranges_seg,
2020 symbolS *name_sym, symbolS *comp_dir_sym, symbolS *producer_sym)
220e750f 2021{
91d6fa6a 2022 expressionS exp;
220e750f 2023 symbolS *info_end;
14e777e0 2024 int sizeof_offset;
4dc7ead9 2025
031e3350 2026 memset (&exp, 0, sizeof exp);
91d6fa6a
NC
2027 sizeof_offset = out_header (info_seg, &exp);
2028 info_end = exp.X_add_symbol;
4dc7ead9 2029
220e750f 2030 /* DWARF version. */
fc0eebac 2031 out_two (DWARF2_VERSION);
4dc7ead9 2032
220e750f 2033 /* .debug_abbrev offset */
6174d9c8 2034 TC_DWARF2_EMIT_OFFSET (section_symbol (abbrev_seg), sizeof_offset);
4dc7ead9 2035
220e750f
RH
2036 /* Target address size. */
2037 out_byte (sizeof_address);
fac0d250 2038
220e750f
RH
2039 /* DW_TAG_compile_unit DIE abbrev */
2040 out_uleb128 (1);
fac0d250 2041
220e750f 2042 /* DW_AT_stmt_list */
413a266c
AM
2043 TC_DWARF2_EMIT_OFFSET (section_symbol (line_seg),
2044 (DWARF2_FORMAT (line_seg) == dwarf2_format_32bit
2045 ? 4 : 8));
fac0d250 2046
802f5d9e 2047 /* These two attributes are emitted if all of the code is contiguous. */
220e750f 2048 if (all_segs->next == NULL)
58b5739a 2049 {
220e750f 2050 /* DW_AT_low_pc */
91d6fa6a
NC
2051 exp.X_op = O_symbol;
2052 exp.X_add_symbol = all_segs->text_start;
2053 exp.X_add_number = 0;
2054 emit_expr (&exp, sizeof_address);
220e750f
RH
2055
2056 /* DW_AT_high_pc */
88ebb0a1
MW
2057 if (DWARF2_VERSION < 4)
2058 exp.X_op = O_symbol;
2059 else
2060 {
2061 exp.X_op = O_subtract;
2062 exp.X_op_symbol = all_segs->text_start;
2063 }
91d6fa6a
NC
2064 exp.X_add_symbol = all_segs->text_end;
2065 exp.X_add_number = 0;
2066 emit_expr (&exp, sizeof_address);
58b5739a 2067 }
802f5d9e
NC
2068 else
2069 {
eb1fe072
NC
2070 /* This attribute is emitted if the code is disjoint. */
2071 /* DW_AT_ranges. */
2072 TC_DWARF2_EMIT_OFFSET (section_symbol (ranges_seg), sizeof_offset);
802f5d9e 2073 }
58b5739a 2074
49fced12
MW
2075 /* DW_AT_name, DW_AT_comp_dir and DW_AT_producer. Symbols in .debug_str
2076 setup in out_debug_str below. */
2077 TC_DWARF2_EMIT_OFFSET (name_sym, sizeof_offset);
2078 TC_DWARF2_EMIT_OFFSET (comp_dir_sym, sizeof_offset);
2079 TC_DWARF2_EMIT_OFFSET (producer_sym, sizeof_offset);
2080
2081 /* DW_AT_language. Yes, this is probably not really MIPS, but the
2082 dwarf2 draft has no standard code for assembler. */
2083 out_two (DW_LANG_Mips_Assembler);
2084
2085 symbol_set_value_now (info_end);
2086}
2087
2088/* Emit the three debug strings needed in .debug_str and setup symbols
2089 to them for use in out_debug_info. */
2090static void
2091out_debug_str (segT str_seg, symbolS **name_sym, symbolS **comp_dir_sym,
2092 symbolS **producer_sym)
2093{
2094 char producer[128];
2095 const char *comp_dir;
2096 const char *dirname;
2097 char *p;
2098 int len;
2099
2100 subseg_set (str_seg, 0);
2101
48b91938
RH
2102 /* DW_AT_name. We don't have the actual file name that was present
2103 on the command line, so assume files[1] is the main input file.
2104 We're not supposed to get called unless at least one line number
2105 entry was emitted, so this should always be defined. */
49fced12 2106 *name_sym = symbol_temp_new_now ();
7fd3924a 2107 if (files_in_use == 0)
48b91938 2108 abort ();
a7ed1ca2
NC
2109 if (files[1].dir)
2110 {
3d6b762c
JM
2111 dirname = remap_debug_filename (dirs[files[1].dir]);
2112 len = strlen (dirname);
198f1251
TG
2113#ifdef TE_VMS
2114 /* Already has trailing slash. */
2115 p = frag_more (len);
2116 memcpy (p, dirname, len);
2117#else
a7ed1ca2 2118 p = frag_more (len + 1);
3d6b762c 2119 memcpy (p, dirname, len);
56487c55 2120 INSERT_DIR_SEPARATOR (p, len);
198f1251 2121#endif
a7ed1ca2 2122 }
48b91938
RH
2123 len = strlen (files[1].filename) + 1;
2124 p = frag_more (len);
2125 memcpy (p, files[1].filename, len);
2126
220e750f 2127 /* DW_AT_comp_dir */
49fced12 2128 *comp_dir_sym = symbol_temp_new_now ();
3d6b762c 2129 comp_dir = remap_debug_filename (getpwd ());
220e750f
RH
2130 len = strlen (comp_dir) + 1;
2131 p = frag_more (len);
2132 memcpy (p, comp_dir, len);
fac0d250 2133
220e750f 2134 /* DW_AT_producer */
49fced12 2135 *producer_sym = symbol_temp_new_now ();
220e750f
RH
2136 sprintf (producer, "GNU AS %s", VERSION);
2137 len = strlen (producer) + 1;
2138 p = frag_more (len);
2139 memcpy (p, producer, len);
fac0d250
RH
2140}
2141
1e9cc1c2
NC
2142void
2143dwarf2_init (void)
2144{
1e9cc1c2
NC
2145 last_seg_ptr = &all_segs;
2146}
2147
2148
c6cb92c5
NS
2149/* Finish the dwarf2 debug sections. We emit .debug.line if there
2150 were any .file/.loc directives, or --gdwarf2 was given, or if the
df1c40a7
L
2151 file has a non-empty .debug_info section and an empty .debug_line
2152 section. If we emit .debug_line, and the .debug_info section is
2153 empty, we also emit .debug_info, .debug_aranges and .debug_abbrev.
2154 ALL_SEGS will be non-null if there were any .file/.loc directives,
2155 or --gdwarf2 was given and there were any located instructions
2156 emitted. */
c6cb92c5 2157
fac0d250 2158void
a2e22468 2159dwarf2_finish (void)
fac0d250 2160{
220e750f
RH
2161 segT line_seg;
2162 struct line_seg *s;
c6cb92c5
NS
2163 segT info_seg;
2164 int emit_other_sections = 0;
df1c40a7 2165 int empty_debug_line = 0;
c6cb92c5
NS
2166
2167 info_seg = bfd_get_section_by_name (stdoutput, ".debug_info");
2168 emit_other_sections = info_seg == NULL || !seg_not_empty_p (info_seg);
fac0d250 2169
df1c40a7
L
2170 line_seg = bfd_get_section_by_name (stdoutput, ".debug_line");
2171 empty_debug_line = line_seg == NULL || !seg_not_empty_p (line_seg);
2172
2173 /* We can't construct a new debug_line section if we already have one.
2174 Give an error. */
2175 if (all_segs && !empty_debug_line)
2176 as_fatal ("duplicate .debug_line sections");
2177
2178 if ((!all_segs && emit_other_sections)
2179 || (!emit_other_sections && !empty_debug_line))
2180 /* If there is no line information and no non-empty .debug_info
2181 section, or if there is both a non-empty .debug_info and a non-empty
2182 .debug_line, then we do nothing. */
220e750f 2183 return;
fac0d250 2184
220e750f 2185 /* Calculate the size of an address for the target machine. */
9605f328 2186 sizeof_address = DWARF2_ADDR_SIZE (stdoutput);
fac0d250 2187
220e750f
RH
2188 /* Create and switch to the line number section. */
2189 line_seg = subseg_new (".debug_line", 0);
8a7140c3 2190 bfd_set_section_flags (stdoutput, line_seg, SEC_READONLY | SEC_DEBUGGING);
fac0d250 2191
220e750f 2192 /* For each subsection, chain the debug entries together. */
ee515fb7 2193 for (s = all_segs; s; s = s->next)
fac0d250 2194 {
91d6fa6a
NC
2195 struct line_subseg *lss = s->head;
2196 struct line_entry **ptail = lss->ptail;
220e750f 2197
91d6fa6a 2198 while ((lss = lss->next) != NULL)
220e750f 2199 {
91d6fa6a
NC
2200 *ptail = lss->head;
2201 ptail = lss->ptail;
220e750f 2202 }
fac0d250 2203 }
85a39694 2204
220e750f 2205 out_debug_line (line_seg);
85a39694 2206
c6cb92c5 2207 /* If this is assembler generated line info, and there is no
49fced12
MW
2208 debug_info already, we need .debug_info, .debug_abbrev and
2209 .debug_str sections as well. */
c6cb92c5 2210 if (emit_other_sections)
220e750f
RH
2211 {
2212 segT abbrev_seg;
220e750f 2213 segT aranges_seg;
802f5d9e 2214 segT ranges_seg;
49fced12
MW
2215 segT str_seg;
2216 symbolS *name_sym, *comp_dir_sym, *producer_sym;
4dc7ead9 2217
9c2799c2 2218 gas_assert (all_segs);
7fd3924a 2219
220e750f
RH
2220 info_seg = subseg_new (".debug_info", 0);
2221 abbrev_seg = subseg_new (".debug_abbrev", 0);
2222 aranges_seg = subseg_new (".debug_aranges", 0);
49fced12 2223 str_seg = subseg_new (".debug_str", 0);
ef99799a 2224
8a7140c3
NC
2225 bfd_set_section_flags (stdoutput, info_seg,
2226 SEC_READONLY | SEC_DEBUGGING);
2227 bfd_set_section_flags (stdoutput, abbrev_seg,
2228 SEC_READONLY | SEC_DEBUGGING);
2229 bfd_set_section_flags (stdoutput, aranges_seg,
2230 SEC_READONLY | SEC_DEBUGGING);
49fced12
MW
2231 bfd_set_section_flags (stdoutput, str_seg,
2232 (SEC_READONLY | SEC_DEBUGGING
2233 | SEC_MERGE | SEC_STRINGS));
2234 str_seg->entsize = 1;
ef99799a 2235
ee515fb7 2236 record_alignment (aranges_seg, ffs (2 * sizeof_address) - 1);
ef99799a 2237
802f5d9e
NC
2238 if (all_segs->next == NULL)
2239 ranges_seg = NULL;
2240 else
2241 {
2242 ranges_seg = subseg_new (".debug_ranges", 0);
7fd3924a 2243 bfd_set_section_flags (stdoutput, ranges_seg,
802f5d9e
NC
2244 SEC_READONLY | SEC_DEBUGGING);
2245 record_alignment (ranges_seg, ffs (2 * sizeof_address) - 1);
2246 out_debug_ranges (ranges_seg);
2247 }
2248
220e750f 2249 out_debug_aranges (aranges_seg, info_seg);
413a266c 2250 out_debug_abbrev (abbrev_seg, info_seg, line_seg);
49fced12
MW
2251 out_debug_str (str_seg, &name_sym, &comp_dir_sym, &producer_sym);
2252 out_debug_info (info_seg, abbrev_seg, line_seg, ranges_seg,
2253 name_sym, comp_dir_sym, producer_sym);
220e750f 2254 }
85a39694 2255}
ba8826a8
AO
2256
2257/* Perform any deferred checks pertaining to debug information. */
2258
2259void
2260dwarf2dbg_final_check (void)
2261{
2262 /* Perform reset-view checks. Don't evaluate view_assert_failed
2263 recursively: it could be very deep. It's a chain of adds, with
2264 each chain element pointing to the next in X_add_symbol, and
2265 holding the check value in X_op_symbol. */
2266 while (view_assert_failed)
2267 {
723dfee7 2268 expressionS *exp;
ba8826a8
AO
2269 symbolS *sym;
2270 offsetT failed;
2271
2272 gas_assert (!symbol_resolved_p (view_assert_failed));
2273
723dfee7 2274 exp = symbol_get_value_expression (view_assert_failed);
ba8826a8
AO
2275 sym = view_assert_failed;
2276
2277 /* If view_assert_failed looks like a compound check in the
2278 chain, break it up. */
723dfee7 2279 if (exp->X_op == O_add && exp->X_add_number == 0 && exp->X_unsigned)
ba8826a8 2280 {
723dfee7
HPN
2281 view_assert_failed = exp->X_add_symbol;
2282 sym = exp->X_op_symbol;
ba8826a8
AO
2283 }
2284 else
2285 view_assert_failed = NULL;
2286
2287 failed = resolve_symbol_value (sym);
2288 if (!symbol_resolved_p (sym) || failed)
2289 {
2290 as_bad (_("view number mismatch"));
2291 break;
2292 }
2293 }
2294}
This page took 1.490545 seconds and 4 git commands to generate.