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