gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gas / dwarf2dbg.c
CommitLineData
fac0d250 1/* dwarf2dbg.c - DWARF2 debug support
b3adc24a 2 Copyright (C) 1999-2020 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
5496f3c6 84#define DWARF2_FILE_TIME_NAME(FILENAME,DIRNAME) -1
01e1a5bc
NC
85#endif
86
87#ifndef DWARF2_FILE_SIZE_NAME
5496f3c6 88#define DWARF2_FILE_SIZE_NAME(FILENAME,DIRNAME) -1
01e1a5bc
NC
89#endif
90
fc0eebac 91#ifndef DWARF2_VERSION
31bf1864 92#define DWARF2_VERSION dwarf_level
fc0eebac
TG
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
8acbe8ff 100/* This implementation outputs version 3 .debug_line information. */
88ebb0a1 101#ifndef DWARF2_LINE_VERSION
5496f3c6 102#define DWARF2_LINE_VERSION (dwarf_level > 3 ? dwarf_level : 3)
88ebb0a1
MW
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
5496f3c6
NC
150#ifndef DWARF2_LINE_MAX_OPS_PER_INSN
151#define DWARF2_LINE_MAX_OPS_PER_INSN 1
152#endif
153
cb30237e 154/* Given a special op, return the line skip amount. */
fac0d250
RH
155#define SPECIAL_LINE(op) \
156 (((op) - DWARF2_LINE_OPCODE_BASE)%DWARF2_LINE_RANGE + DWARF2_LINE_BASE)
157
158/* Given a special op, return the address skip amount (in units of
159 DWARF2_LINE_MIN_INSN_LENGTH. */
160#define SPECIAL_ADDR(op) (((op) - DWARF2_LINE_OPCODE_BASE)/DWARF2_LINE_RANGE)
161
cb30237e 162/* The maximum address skip amount that can be encoded with a special op. */
fac0d250
RH
163#define MAX_SPECIAL_ADDR_DELTA SPECIAL_ADDR(255)
164
62ebcb5c
AM
165#ifndef TC_PARSE_CONS_RETURN_NONE
166#define TC_PARSE_CONS_RETURN_NONE BFD_RELOC_NONE
167#endif
168
ba8826a8
AO
169struct line_entry
170{
220e750f 171 struct line_entry *next;
07a53e5c 172 symbolS *label;
220e750f 173 struct dwarf2_line_info loc;
e6c774b4 174};
fac0d250 175
ba8826a8
AO
176/* Don't change the offset of next in line_entry. set_or_check_view
177 calls in dwarf2_gen_line_info_1 depend on it. */
178static char unused[offsetof(struct line_entry, next) ? -1 : 1]
179ATTRIBUTE_UNUSED;
180
181struct line_subseg
182{
220e750f
RH
183 struct line_subseg *next;
184 subsegT subseg;
185 struct line_entry *head;
186 struct line_entry **ptail;
e410add4 187 struct line_entry **pmove_tail;
220e750f 188};
353e2c69 189
ba8826a8
AO
190struct line_seg
191{
220e750f
RH
192 struct line_seg *next;
193 segT seg;
194 struct line_subseg *head;
195 symbolS *text_start;
196 symbolS *text_end;
197};
198
199/* Collects data for all line table entries during assembly. */
200static struct line_seg *all_segs;
1e9cc1c2 201static struct line_seg **last_seg_ptr;
220e750f 202
5496f3c6
NC
203#define NUM_MD5_BYTES 16
204
ba8826a8
AO
205struct file_entry
206{
5496f3c6
NC
207 const char * filename;
208 unsigned int dir;
714e6c96 209 bfd_boolean auto_assigned;
5496f3c6 210 unsigned char md5[NUM_MD5_BYTES];
220e750f
RH
211};
212
213/* Table of files used by .debug_line. */
214static struct file_entry *files;
215static unsigned int files_in_use;
216static unsigned int files_allocated;
217
a7ed1ca2 218/* Table of directories used by .debug_line. */
5496f3c6
NC
219static char ** dirs = NULL;
220static unsigned int dirs_in_use = 0;
221static unsigned int dirs_allocated = 0;
a7ed1ca2 222
b34976b6 223/* TRUE when we've seen a .loc directive recently. Used to avoid
220e750f 224 doing work when there's nothing to do. */
1eee4adc 225bfd_boolean dwarf2_loc_directive_seen;
220e750f 226
07a53e5c
RH
227/* TRUE when we're supposed to set the basic block mark whenever a
228 label is seen. */
229bfd_boolean dwarf2_loc_mark_labels;
230
220e750f 231/* Current location as indicated by the most recent .loc directive. */
ba8826a8
AO
232static struct dwarf2_line_info current =
233{
bd0eb99b 234 1, 1, 0, 0,
92846e72 235 DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0,
ba8826a8 236 0, NULL
bd0eb99b 237};
220e750f 238
ba8826a8
AO
239/* This symbol is used to recognize view number forced resets in loc
240 lists. */
241static symbolS *force_reset_view;
242
243/* This symbol evaluates to an expression that, if nonzero, indicates
244 some view assert check failed. */
245static symbolS *view_assert_failed;
246
220e750f
RH
247/* The size of an address on the target. */
248static unsigned int sizeof_address;
249\f
c5c0a210 250#ifndef TC_DWARF2_EMIT_OFFSET
802f5d9e 251#define TC_DWARF2_EMIT_OFFSET generic_dwarf2_emit_offset
c5c0a210 252
6174d9c8
RH
253/* Create an offset to .dwarf2_*. */
254
255static void
a2e22468 256generic_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
6174d9c8 257{
91d6fa6a 258 expressionS exp;
6174d9c8 259
031e3350 260 memset (&exp, 0, sizeof exp);
91d6fa6a
NC
261 exp.X_op = O_symbol;
262 exp.X_add_symbol = symbol;
263 exp.X_add_number = 0;
264 emit_expr (&exp, size);
6174d9c8 265}
c5c0a210 266#endif
6174d9c8 267
e410add4 268/* Find or create (if CREATE_P) an entry for SEG+SUBSEG in ALL_SEGS. */
220e750f
RH
269
270static struct line_subseg *
e410add4 271get_line_subseg (segT seg, subsegT subseg, bfd_boolean create_p)
220e750f 272{
5f3fd8b4 273 struct line_seg *s = seg_info (seg)->dwarf2_line_seg;
91d6fa6a 274 struct line_subseg **pss, *lss;
fac0d250 275
1e9cc1c2
NC
276 if (s == NULL)
277 {
e410add4
RS
278 if (!create_p)
279 return NULL;
280
325801bd 281 s = XNEW (struct line_seg);
1e9cc1c2
NC
282 s->next = NULL;
283 s->seg = seg;
284 s->head = NULL;
285 *last_seg_ptr = s;
286 last_seg_ptr = &s->next;
5f3fd8b4 287 seg_info (seg)->dwarf2_line_seg = s;
1e9cc1c2 288 }
5496f3c6 289
1e9cc1c2 290 gas_assert (seg == s->seg);
220e750f 291
91d6fa6a 292 for (pss = &s->head; (lss = *pss) != NULL ; pss = &lss->next)
fac0d250 293 {
91d6fa6a 294 if (lss->subseg == subseg)
ee515fb7 295 goto found_subseg;
91d6fa6a 296 if (lss->subseg > subseg)
220e750f 297 break;
fac0d250 298 }
220e750f 299
325801bd 300 lss = XNEW (struct line_subseg);
91d6fa6a
NC
301 lss->next = *pss;
302 lss->subseg = subseg;
303 lss->head = NULL;
304 lss->ptail = &lss->head;
e410add4 305 lss->pmove_tail = &lss->head;
91d6fa6a 306 *pss = lss;
220e750f
RH
307
308 found_subseg:
91d6fa6a 309 return lss;
fac0d250
RH
310}
311
ba8826a8
AO
312/* (Un)reverse the line_entry list starting from H. */
313
314static struct line_entry *
315reverse_line_entry_list (struct line_entry *h)
316{
317 struct line_entry *p = NULL, *e, *n;
318
319 for (e = h; e; e = n)
320 {
321 n = e->next;
322 e->next = p;
323 p = e;
324 }
325 return p;
326}
327
328/* Compute the view for E based on the previous entry P. If we
329 introduce an (undefined) view symbol for P, and H is given (P must
330 be the tail in this case), introduce view symbols for earlier list
331 entries as well, until one of them is constant. */
332
333static void
334set_or_check_view (struct line_entry *e, struct line_entry *p,
335 struct line_entry *h)
336{
337 expressionS viewx;
338
339 memset (&viewx, 0, sizeof (viewx));
340 viewx.X_unsigned = 1;
341
342 /* First, compute !(E->label > P->label), to tell whether or not
343 we're to reset the view number. If we can't resolve it to a
344 constant, keep it symbolic. */
345 if (!p || (e->loc.view == force_reset_view && force_reset_view))
346 {
347 viewx.X_op = O_constant;
348 viewx.X_add_number = 0;
349 viewx.X_add_symbol = NULL;
350 viewx.X_op_symbol = NULL;
351 }
352 else
353 {
354 viewx.X_op = O_gt;
355 viewx.X_add_number = 0;
356 viewx.X_add_symbol = e->label;
357 viewx.X_op_symbol = p->label;
358 resolve_expression (&viewx);
359 if (viewx.X_op == O_constant)
360 viewx.X_add_number = !viewx.X_add_number;
361 else
362 {
363 viewx.X_add_symbol = make_expr_symbol (&viewx);
364 viewx.X_add_number = 0;
365 viewx.X_op_symbol = NULL;
366 viewx.X_op = O_logical_not;
367 }
368 }
369
370 if (S_IS_DEFINED (e->loc.view) && symbol_constant_p (e->loc.view))
371 {
372 expressionS *value = symbol_get_value_expression (e->loc.view);
373 /* We can't compare the view numbers at this point, because in
374 VIEWX we've only determined whether we're to reset it so
375 far. */
376 if (viewx.X_op == O_constant)
377 {
378 if (!value->X_add_number != !viewx.X_add_number)
379 as_bad (_("view number mismatch"));
380 }
381 /* Record the expression to check it later. It is the result of
382 a logical not, thus 0 or 1. We just add up all such deferred
383 expressions, and resolve it at the end. */
384 else if (!value->X_add_number)
385 {
386 symbolS *deferred = make_expr_symbol (&viewx);
387 if (view_assert_failed)
388 {
389 expressionS chk;
031e3350 390
ba8826a8
AO
391 memset (&chk, 0, sizeof (chk));
392 chk.X_unsigned = 1;
393 chk.X_op = O_add;
394 chk.X_add_number = 0;
395 chk.X_add_symbol = view_assert_failed;
396 chk.X_op_symbol = deferred;
397 deferred = make_expr_symbol (&chk);
398 }
399 view_assert_failed = deferred;
400 }
401 }
402
403 if (viewx.X_op != O_constant || viewx.X_add_number)
404 {
405 expressionS incv;
406
407 if (!p->loc.view)
408 {
409 p->loc.view = symbol_temp_make ();
410 gas_assert (!S_IS_DEFINED (p->loc.view));
411 }
412
413 memset (&incv, 0, sizeof (incv));
414 incv.X_unsigned = 1;
415 incv.X_op = O_symbol;
416 incv.X_add_symbol = p->loc.view;
417 incv.X_add_number = 1;
418
419 if (viewx.X_op == O_constant)
420 {
421 gas_assert (viewx.X_add_number == 1);
422 viewx = incv;
423 }
424 else
425 {
426 viewx.X_add_symbol = make_expr_symbol (&viewx);
427 viewx.X_add_number = 0;
428 viewx.X_op_symbol = make_expr_symbol (&incv);
429 viewx.X_op = O_multiply;
430 }
431 }
432
433 if (!S_IS_DEFINED (e->loc.view))
434 {
435 symbol_set_value_expression (e->loc.view, &viewx);
38cf168b 436 S_SET_SEGMENT (e->loc.view, expr_section);
ba8826a8
AO
437 symbol_set_frag (e->loc.view, &zero_address_frag);
438 }
439
440 /* Define and attempt to simplify any earlier views needed to
441 compute E's. */
442 if (h && p && p->loc.view && !S_IS_DEFINED (p->loc.view))
443 {
444 struct line_entry *h2;
445 /* Reverse the list to avoid quadratic behavior going backwards
446 in a single-linked list. */
447 struct line_entry *r = reverse_line_entry_list (h);
448
449 gas_assert (r == p);
450 /* Set or check views until we find a defined or absent view. */
451 do
62e6b7b3
AO
452 {
453 /* Do not define the head of a (sub?)segment view while
454 handling others. It would be defined too early, without
455 regard to the last view of other subsegments.
456 set_or_check_view will be called for every head segment
457 that needs it. */
458 if (r == h)
459 break;
460 set_or_check_view (r, r->next, NULL);
461 }
ba8826a8
AO
462 while (r->next && r->next->loc.view && !S_IS_DEFINED (r->next->loc.view)
463 && (r = r->next));
464
465 /* Unreverse the list, so that we can go forward again. */
466 h2 = reverse_line_entry_list (p);
467 gas_assert (h2 == h);
468
469 /* Starting from the last view we just defined, attempt to
470 simplify the view expressions, until we do so to P. */
471 do
472 {
62e6b7b3
AO
473 /* The head view of a subsegment may remain undefined while
474 handling other elements, before it is linked to the last
475 view of the previous subsegment. */
476 if (r == h)
477 continue;
ba8826a8
AO
478 gas_assert (S_IS_DEFINED (r->loc.view));
479 resolve_expression (symbol_get_value_expression (r->loc.view));
480 }
481 while (r != p && (r = r->next));
482
483 /* Now that we've defined and computed all earlier views that might
484 be needed to compute E's, attempt to simplify it. */
485 resolve_expression (symbol_get_value_expression (e->loc.view));
486 }
487}
488
6a50d470 489/* Record an entry for LOC occurring at LABEL. */
07a53e5c
RH
490
491static void
6a50d470 492dwarf2_gen_line_info_1 (symbolS *label, struct dwarf2_line_info *loc)
07a53e5c 493{
6a50d470 494 struct line_subseg *lss;
07a53e5c
RH
495 struct line_entry *e;
496
325801bd 497 e = XNEW (struct line_entry);
07a53e5c 498 e->next = NULL;
6a50d470 499 e->label = label;
07a53e5c
RH
500 e->loc = *loc;
501
e410add4 502 lss = get_line_subseg (now_seg, now_subseg, TRUE);
ba8826a8 503
62e6b7b3
AO
504 /* Subseg heads are chained to previous subsegs in
505 dwarf2_finish. */
506 if (loc->view && lss->head)
ba8826a8 507 set_or_check_view (e,
62e6b7b3 508 (struct line_entry *)lss->ptail,
ba8826a8
AO
509 lss->head);
510
6a50d470
RS
511 *lss->ptail = e;
512 lss->ptail = &e->next;
07a53e5c
RH
513}
514
436d9e46 515/* Record an entry for LOC occurring at OFS within the current fragment. */
353e2c69 516
220e750f 517void
a2e22468 518dwarf2_gen_line_info (addressT ofs, struct dwarf2_line_info *loc)
fac0d250 519{
1ea5c325
MS
520 static unsigned int line = -1;
521 static unsigned int filenum = -1;
220e750f 522
6a50d470
RS
523 symbolS *sym;
524
220e750f 525 /* Early out for as-yet incomplete location information. */
5496f3c6
NC
526 if (loc->line == 0)
527 return;
528 if (loc->filenum == 0 && DWARF2_LINE_VERSION < 5)
220e750f
RH
529 return;
530
ffa554ed
GK
531 /* Don't emit sequences of line symbols for the same line when the
532 symbols apply to assembler code. It is necessary to emit
533 duplicate line symbols when a compiler asks for them, because GDB
534 uses them to determine the end of the prologue. */
d1a6c242 535 if (debug_type == DEBUG_DWARF2
ffa554ed 536 && line == loc->line && filenum == loc->filenum)
1ea5c325
MS
537 return;
538
539 line = loc->line;
540 filenum = loc->filenum;
541
453dc3f0
NC
542 if (linkrelax)
543 {
544 char name[120];
545
546 /* Use a non-fake name for the line number location,
547 so that it can be referred to by relocations. */
548 sprintf (name, ".Loc.%u.%u", line, filenum);
6a50d470 549 sym = symbol_new (name, now_seg, ofs, frag_now);
453dc3f0
NC
550 }
551 else
6a50d470
RS
552 sym = symbol_temp_new (now_seg, ofs, frag_now);
553 dwarf2_gen_line_info_1 (sym, loc);
220e750f 554}
fac0d250 555
5496f3c6
NC
556static const char *
557get_basename (const char * pathname)
558{
559 const char * file;
560
561 file = lbasename (pathname);
562 /* Don't make empty string from / or A: from A:/ . */
563#ifdef HAVE_DOS_BASED_FILE_SYSTEM
564 if (file <= pathname + 3)
565 file = pathname;
566#else
567 if (file == pathname + 1)
568 file = pathname;
569#endif
570 return file;
571}
572
573static unsigned int
574get_directory_table_entry (const char * dirname,
575 size_t dirlen,
576 bfd_boolean can_use_zero)
577{
578 unsigned int d;
579
580 if (dirlen == 0)
581 return 0;
582
583#ifndef DWARF2_DIR_SHOULD_END_WITH_SEPARATOR
584 if (IS_DIR_SEPARATOR (dirname[dirlen - 1]))
585 {
586 -- dirlen;
587 if (dirlen == 0)
588 return 0;
589 }
590#endif
591
592 for (d = 0; d < dirs_in_use; ++d)
593 {
594 if (dirs[d] != NULL
595 && filename_ncmp (dirname, dirs[d], dirlen) == 0
596 && dirs[d][dirlen] == '\0')
597 return d;
598 }
599
600 if (can_use_zero)
601 {
602 if (dirs == NULL || dirs[0] == NULL)
603 d = 0;
604 }
605 else if (d == 0)
606 d = 1;
607
608 if (d >= dirs_allocated)
609 {
610 unsigned int old = dirs_allocated;
611
612 dirs_allocated = d + 32;
613 dirs = XRESIZEVEC (char *, dirs, dirs_allocated);
614 memset (dirs + old, 0, (dirs_allocated - old) * sizeof (char *));
615 }
616
617 dirs[d] = xmemdup0 (dirname, dirlen);
618 if (dirs_in_use <= d)
619 dirs_in_use = d + 1;
620
621 return d;
622}
623
714e6c96
NC
624static bfd_boolean
625assign_file_to_slot (unsigned long i, const char *file, unsigned int dir, bfd_boolean auto_assign)
626{
627 if (i >= files_allocated)
628 {
629 unsigned int old = files_allocated;
630
631 files_allocated = i + 32;
632 /* Catch wraparound. */
633 if (files_allocated <= old)
634 {
635 as_bad (_("file number %lu is too big"), (unsigned long) i);
636 return FALSE;
637 }
638
639 files = XRESIZEVEC (struct file_entry, files, files_allocated);
640 memset (files + old, 0, (i + 32 - old) * sizeof (struct file_entry));
641 }
642
643 files[i].filename = file;
644 files[i].dir = dir;
645 files[i].auto_assigned = auto_assign;
646 memset (files[i].md5, 0, NUM_MD5_BYTES);
647
648 if (files_in_use < i + 1)
649 files_in_use = i + 1;
650
651 return TRUE;
652}
653
5496f3c6
NC
654/* Get a .debug_line file number for PATHNAME. If there is a
655 directory component to PATHNAME, then this will be stored
656 in the directory table, if it is not already present.
657 Returns the slot number allocated to that filename or -1
658 if there was a problem. */
659
660static signed int
661allocate_filenum (const char * pathname)
662{
663 static signed int last_used = -1, last_used_dir_len = 0;
664 const char *file;
665 size_t dir_len;
666 unsigned int i, dir;
667
668 /* Short circuit the common case of adding the same pathname
669 as last time. */
670 if (last_used != -1)
671 {
672 const char * dirname = NULL;
673
674 if (dirs != NULL)
675 dirname = dirs[files[last_used].dir];
676
677 if (dirname == NULL)
678 {
679 if (filename_cmp (pathname, files[last_used].filename) == 0)
680 return last_used;
681 }
682 else
683 {
684 if (filename_ncmp (pathname, dirname, last_used_dir_len) == 0
685 && IS_DIR_SEPARATOR (pathname [last_used_dir_len])
686 && filename_cmp (pathname + last_used_dir_len + 1,
687 files[last_used].filename) == 0)
688 return last_used;
689 }
690 }
691
692 file = get_basename (pathname);
693 dir_len = file - pathname;
694
695 dir = get_directory_table_entry (pathname, dir_len, FALSE);
696
714e6c96 697 /* Do not use slot-0. That is specifically reserved for use by
5496f3c6
NC
698 the '.file 0 "name"' directive. */
699 for (i = 1; i < files_in_use; ++i)
700 if (files[i].dir == dir
701 && files[i].filename
702 && filename_cmp (file, files[i].filename) == 0)
703 {
704 last_used = i;
705 last_used_dir_len = dir_len;
706 return i;
707 }
708
714e6c96
NC
709 if (!assign_file_to_slot (i, file, dir, TRUE))
710 return -1;
5496f3c6 711
5496f3c6
NC
712 last_used = i;
713 last_used_dir_len = dir_len;
714
715 return i;
716}
717
718/* Allocate slot NUM in the .debug_line file table to FILENAME.
719 If DIRNAME is not NULL or there is a directory component to FILENAME
720 then this will be stored in the directory table, if not already present.
721 if WITH_MD5 is TRUE then there is a md5 value in generic_bignum.
722 Returns TRUE if allocation succeeded, FALSE otherwise. */
723
724static bfd_boolean
725allocate_filename_to_slot (const char * dirname,
726 const char * filename,
727 unsigned int num,
728 bfd_boolean with_md5)
729{
730 const char *file;
731 size_t dirlen;
732 unsigned int i, d;
733
734 /* Short circuit the common case of adding the same pathname
735 as last time. */
736 if (num < files_allocated && files[num].filename != NULL)
737 {
738 const char * dir = NULL;
739
740 if (dirs)
741 dir = dirs[files[num].dir];
742
743 if (with_md5
744 && memcmp (generic_bignum, files[num].md5, NUM_MD5_BYTES) != 0)
745 goto fail;
746
747 if (dirname != NULL)
748 {
749 if (dir != NULL && filename_cmp (dir, dirname) != 0)
750 goto fail;
751
752 if (filename_cmp (filename, files[num].filename) != 0)
753 goto fail;
754
755 /* If the filenames match, but the directory table entry was
756 empty, then fill it with the provided directory name. */
757 if (dir == NULL)
758 dirs[files[num].dir] = xmemdup0 (dirname, strlen (dirname));
759
760 return TRUE;
761 }
762 else if (dir != NULL)
763 {
764 dirlen = strlen (dir);
765 if (filename_ncmp (filename, dir, dirlen) == 0
766 && IS_DIR_SEPARATOR (filename [dirlen])
767 && filename_cmp (filename + dirlen + 1, files[num].filename) == 0)
768 return TRUE;
769 }
770 else /* dir == NULL */
771 {
772 file = get_basename (filename);
773 if (filename_cmp (file, files[num].filename) == 0)
774 {
775 if (file > filename)
776 /* The filenames match, but the directory table entry is empty.
777 Fill it with the provided directory name. */
778 dirs[files[num].dir] = xmemdup0 (filename, file - filename);
779 return TRUE;
780 }
781 }
782
783 fail:
714e6c96
NC
784 /* If NUM was previously allocated automatically then
785 choose another slot for it, so that we can reuse NUM. */
786 if (files[num].auto_assigned)
787 {
788 /* Find an unused slot. */
789 for (i = 1; i < files_in_use; ++i)
790 if (files[i].filename == NULL)
791 break;
792 if (! assign_file_to_slot (i, files[num].filename, files[num].dir, TRUE))
793 return FALSE;
794 files[num].filename = NULL;
795 }
796 else
797 {
798 as_bad (_("file table slot %u is already occupied by a different file (%s%s%s vs %s%s%s)"),
799 num,
800 dir == NULL ? "" : dir,
801 dir == NULL ? "" : "/",
802 files[num].filename,
803 dirname == NULL ? "" : dirname,
804 dirname == NULL ? "" : "/",
805 filename);
806 return FALSE;
807 }
5496f3c6
NC
808 }
809
810 if (dirname == NULL)
811 {
812 dirname = filename;
813 file = get_basename (filename);
814 dirlen = file - filename;
815 }
816 else
817 {
818 dirlen = strlen (dirname);
819 file = filename;
820 }
821
822 d = get_directory_table_entry (dirname, dirlen, num == 0);
823 i = num;
824
714e6c96
NC
825 if (! assign_file_to_slot (i, file, d, FALSE))
826 return FALSE;
5496f3c6 827
5496f3c6
NC
828 if (with_md5)
829 {
830 if (target_big_endian)
831 {
832 /* md5's are stored in litte endian format. */
833 unsigned int bits_remaining = NUM_MD5_BYTES * BITS_PER_CHAR;
834 unsigned int byte = NUM_MD5_BYTES;
835 unsigned int bignum_index = 0;
836
837 while (bits_remaining)
838 {
839 unsigned int bignum_bits_remaining = LITTLENUM_NUMBER_OF_BITS;
840 valueT bignum_value = generic_bignum [bignum_index];
841 bignum_index ++;
842
843 while (bignum_bits_remaining)
844 {
845 files[i].md5[--byte] = bignum_value & 0xff;
846 bignum_value >>= 8;
847 bignum_bits_remaining -= 8;
848 bits_remaining -= 8;
849 }
850 }
851 }
852 else
853 {
854 unsigned int bits_remaining = NUM_MD5_BYTES * BITS_PER_CHAR;
855 unsigned int byte = 0;
856 unsigned int bignum_index = 0;
857
858 while (bits_remaining)
859 {
860 unsigned int bignum_bits_remaining = LITTLENUM_NUMBER_OF_BITS;
861 valueT bignum_value = generic_bignum [bignum_index];
862
863 bignum_index ++;
864
865 while (bignum_bits_remaining)
866 {
867 files[i].md5[byte++] = bignum_value & 0xff;
868 bignum_value >>= 8;
869 bignum_bits_remaining -= 8;
870 bits_remaining -= 8;
871 }
872 }
873 }
874 }
875 else
876 memset (files[i].md5, 0, NUM_MD5_BYTES);
877
5496f3c6
NC
878 return TRUE;
879}
880
ecea7679
RH
881/* Returns the current source information. If .file directives have
882 been encountered, the info for the corresponding source file is
883 returned. Otherwise, the info for the assembly source file is
884 returned. */
885
220e750f 886void
a2e22468 887dwarf2_where (struct dwarf2_line_info *line)
220e750f
RH
888{
889 if (debug_type == DEBUG_DWARF2)
fac0d250 890 {
ba8826a8
AO
891 const char *filename;
892
893 memset (line, 0, sizeof (*line));
894 filename = as_where (&line->line);
5496f3c6
NC
895 line->filenum = allocate_filenum (filename);
896 /* FIXME: We should check the return value from allocate_filenum. */
220e750f 897 line->column = 0;
bd0eb99b 898 line->flags = DWARF2_FLAG_IS_STMT;
ecea7679 899 line->isa = current.isa;
92846e72 900 line->discriminator = current.discriminator;
ba8826a8 901 line->view = NULL;
fac0d250 902 }
220e750f
RH
903 else
904 *line = current;
fac0d250
RH
905}
906
7fd3924a 907/* A hook to allow the target backend to inform the line number state
ecea7679
RH
908 machine of isa changes when assembler debug info is enabled. */
909
910void
911dwarf2_set_isa (unsigned int isa)
912{
913 current.isa = isa;
914}
915
220e750f
RH
916/* Called for each machine instruction, or relatively atomic group of
917 machine instructions (ie built-in macro). The instruction or group
918 is SIZE bytes in length. If dwarf2 line number generation is called
919 for, emit a line statement appropriately. */
353e2c69 920
220e750f 921void
a2e22468 922dwarf2_emit_insn (int size)
fac0d250 923{
220e750f 924 struct dwarf2_line_info loc;
fac0d250 925
ba8826a8
AO
926 if (debug_type != DEBUG_DWARF2
927 ? !dwarf2_loc_directive_seen
928 : !seen_at_least_1_file ())
220e750f 929 return;
7fd3924a
AM
930
931 dwarf2_where (&loc);
b6675117 932
71250b94 933 dwarf2_gen_line_info ((frag_now_fix_octets () - size) / OCTETS_PER_BYTE, &loc);
661ba50f
BW
934 dwarf2_consume_line_info ();
935}
936
e410add4
RS
937/* Move all previously-emitted line entries for the current position by
938 DELTA bytes. This function cannot be used to move the same entries
939 twice. */
940
941void
942dwarf2_move_insn (int delta)
943{
944 struct line_subseg *lss;
945 struct line_entry *e;
946 valueT now;
947
948 if (delta == 0)
949 return;
950
951 lss = get_line_subseg (now_seg, now_subseg, FALSE);
952 if (!lss)
953 return;
954
955 now = frag_now_fix ();
956 while ((e = *lss->pmove_tail))
957 {
958 if (S_GET_VALUE (e->label) == now)
959 S_SET_VALUE (e->label, now + delta);
960 lss->pmove_tail = &e->next;
961 }
962}
963
661ba50f
BW
964/* Called after the current line information has been either used with
965 dwarf2_gen_line_info or saved with a machine instruction for later use.
966 This resets the state of the line number information to reflect that
967 it has been used. */
968
969void
970dwarf2_consume_line_info (void)
971{
972 /* Unless we generate DWARF2 debugging information for each
973 assembler line, we only emit one line symbol for one LOC. */
7fd3924a 974 dwarf2_loc_directive_seen = FALSE;
bd0eb99b
RH
975
976 current.flags &= ~(DWARF2_FLAG_BASIC_BLOCK
977 | DWARF2_FLAG_PROLOGUE_END
978 | DWARF2_FLAG_EPILOGUE_BEGIN);
92846e72 979 current.discriminator = 0;
3a00b02d 980 current.view = NULL;
220e750f 981}
fac0d250 982
07a53e5c
RH
983/* Called for each (preferably code) label. If dwarf2_loc_mark_labels
984 is enabled, emit a basic block marker. */
985
986void
987dwarf2_emit_label (symbolS *label)
988{
989 struct dwarf2_line_info loc;
990
991 if (!dwarf2_loc_mark_labels)
992 return;
993 if (S_GET_SEGMENT (label) != now_seg)
994 return;
fd361982 995 if (!(bfd_section_flags (now_seg) & SEC_CODE))
07a53e5c 996 return;
7fd3924a
AM
997 if (files_in_use == 0 && debug_type != DEBUG_DWARF2)
998 return;
999
1000 dwarf2_where (&loc);
07a53e5c
RH
1001
1002 loc.flags |= DWARF2_FLAG_BASIC_BLOCK;
1003
6a50d470 1004 dwarf2_gen_line_info_1 (label, &loc);
7fd3924a 1005 dwarf2_consume_line_info ();
07a53e5c
RH
1006}
1007
ecb4347a
DJ
1008/* Handle two forms of .file directive:
1009 - Pass .file "source.c" to s_app_file
1010 - Handle .file 1 "source.c" by adding an entry to the DWARF-2 file table
220e750f 1011
68d20676 1012 If an entry is added to the file table, return a pointer to the filename. */
ecb4347a
DJ
1013
1014char *
68d20676 1015dwarf2_directive_filename (void)
220e750f 1016{
5496f3c6 1017 bfd_boolean with_md5 = TRUE;
8f02ae5b 1018 valueT num;
e46d99eb 1019 char *filename;
5496f3c6 1020 const char * dirname = NULL;
220e750f
RH
1021 int filename_len;
1022
1023 /* Continue to accept a bare string and pass it off. */
1024 SKIP_WHITESPACE ();
1025 if (*input_line_pointer == '"')
fac0d250 1026 {
220e750f 1027 s_app_file (0);
ecb4347a 1028 return NULL;
fac0d250
RH
1029 }
1030
220e750f 1031 num = get_absolute_expression ();
220e750f 1032
5496f3c6 1033 if ((offsetT) num < 1 && DWARF2_LINE_VERSION < 5)
fac0d250 1034 {
0e389e77 1035 as_bad (_("file number less than one"));
84d9ab33 1036 ignore_rest_of_line ();
ecb4347a 1037 return NULL;
fac0d250
RH
1038 }
1039
5496f3c6
NC
1040 /* FIXME: Should we allow ".file <N>\n" as an expression meaning
1041 "switch back to the already allocated file <N> as the current
1042 file" ? */
84d9ab33
NC
1043
1044 filename = demand_copy_C_string (&filename_len);
1045 if (filename == NULL)
1046 /* demand_copy_C_string will have already generated an error message. */
1047 return NULL;
1048
5496f3c6
NC
1049 /* For DWARF-5 support we also accept:
1050 .file <NUM> ["<dir>"] "<file>" [md5 <NUM>] */
1051 if (DWARF2_LINE_VERSION > 4)
1052 {
1053 SKIP_WHITESPACE ();
1054 if (*input_line_pointer == '"')
1055 {
1056 dirname = filename;
1057 filename = demand_copy_C_string (&filename_len);
1058 SKIP_WHITESPACE ();
1059 }
1060
1061 if (strncmp (input_line_pointer, "md5", 3) == 0)
1062 {
1063 input_line_pointer += 3;
1064 SKIP_WHITESPACE ();
1065
1066 expressionS exp;
1067 expression_and_evaluate (& exp);
1068 if (exp.X_op != O_big)
1069 as_bad (_("md5 value too small or not a constant"));
1070 else
1071 with_md5 = TRUE;
1072 }
1073 }
1074
84d9ab33
NC
1075 demand_empty_rest_of_line ();
1076
7cadeb2c
AM
1077 /* A .file directive implies compiler generated debug information is
1078 being supplied. Turn off gas generated debug info. */
1079 debug_type = DEBUG_NONE;
1080
8f02ae5b
AM
1081 if (num != (unsigned int) num
1082 || num >= (size_t) -1 / sizeof (struct file_entry) - 32)
220e750f 1083 {
8f02ae5b 1084 as_bad (_("file number %lu is too big"), (unsigned long) num);
ecb4347a 1085 return NULL;
249e3833 1086 }
220e750f 1087
5496f3c6
NC
1088 if (! allocate_filename_to_slot (dirname, filename, (unsigned int) num,
1089 with_md5))
1090 return NULL;
ecb4347a
DJ
1091
1092 return filename;
fac0d250
RH
1093}
1094
68d20676
NC
1095/* Calls dwarf2_directive_filename, but discards its result.
1096 Used in pseudo-op tables where the function result is ignored. */
1097
1098void
1099dwarf2_directive_file (int dummy ATTRIBUTE_UNUSED)
1100{
1101 (void) dwarf2_directive_filename ();
1102}
1103
220e750f 1104void
a2e22468 1105dwarf2_directive_loc (int dummy ATTRIBUTE_UNUSED)
220e750f 1106{
ecea7679
RH
1107 offsetT filenum, line;
1108
851feff8
DJ
1109 /* If we see two .loc directives in a row, force the first one to be
1110 output now. */
7cadeb2c 1111 if (dwarf2_loc_directive_seen)
6a50d470 1112 dwarf2_emit_insn (0);
851feff8 1113
ecea7679
RH
1114 filenum = get_absolute_expression ();
1115 SKIP_WHITESPACE ();
1116 line = get_absolute_expression ();
1117
1118 if (filenum < 1)
1119 {
5496f3c6
NC
1120 if (filenum != 0 || DWARF2_LINE_VERSION < 5)
1121 {
1122 as_bad (_("file number less than one"));
1123 return;
1124 }
ecea7679 1125 }
5496f3c6
NC
1126
1127 if (filenum >= (int) files_in_use || files[filenum].filename == NULL)
ecea7679
RH
1128 {
1129 as_bad (_("unassigned file number %ld"), (long) filenum);
1130 return;
1131 }
1132
1133 current.filenum = filenum;
1134 current.line = line;
92846e72 1135 current.discriminator = 0;
ecea7679
RH
1136
1137#ifndef NO_LISTING
1138 if (listing)
1139 {
1140 if (files[filenum].dir)
1141 {
1142 size_t dir_len = strlen (dirs[files[filenum].dir]);
1143 size_t file_len = strlen (files[filenum].filename);
add39d23 1144 char *cp = XNEWVEC (char, dir_len + 1 + file_len + 1);
ecea7679
RH
1145
1146 memcpy (cp, dirs[files[filenum].dir], dir_len);
56487c55 1147 INSERT_DIR_SEPARATOR (cp, dir_len);
ecea7679
RH
1148 memcpy (cp + dir_len + 1, files[filenum].filename, file_len);
1149 cp[dir_len + file_len + 1] = '\0';
1150 listing_source_file (cp);
e1fa0163 1151 free (cp);
ecea7679
RH
1152 }
1153 else
1154 listing_source_file (files[filenum].filename);
1155 listing_source_line (line);
1156 }
1157#endif
1158
220e750f 1159 SKIP_WHITESPACE ();
ecea7679
RH
1160 if (ISDIGIT (*input_line_pointer))
1161 {
1162 current.column = get_absolute_expression ();
1163 SKIP_WHITESPACE ();
1164 }
1165
1166 while (ISALPHA (*input_line_pointer))
220e750f 1167 {
bd0eb99b
RH
1168 char *p, c;
1169 offsetT value;
1170
d02603dc 1171 c = get_symbol_name (& p);
bd0eb99b
RH
1172
1173 if (strcmp (p, "basic_block") == 0)
1174 {
1175 current.flags |= DWARF2_FLAG_BASIC_BLOCK;
1176 *input_line_pointer = c;
1177 }
1178 else if (strcmp (p, "prologue_end") == 0)
1179 {
1180 current.flags |= DWARF2_FLAG_PROLOGUE_END;
1181 *input_line_pointer = c;
1182 }
1183 else if (strcmp (p, "epilogue_begin") == 0)
1184 {
1185 current.flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
1186 *input_line_pointer = c;
1187 }
1188 else if (strcmp (p, "is_stmt") == 0)
1189 {
d02603dc 1190 (void) restore_line_pointer (c);
bd0eb99b
RH
1191 value = get_absolute_expression ();
1192 if (value == 0)
1193 current.flags &= ~DWARF2_FLAG_IS_STMT;
1194 else if (value == 1)
1195 current.flags |= DWARF2_FLAG_IS_STMT;
1196 else
ecea7679
RH
1197 {
1198 as_bad (_("is_stmt value not 0 or 1"));
1199 return;
1200 }
bd0eb99b
RH
1201 }
1202 else if (strcmp (p, "isa") == 0)
1203 {
d02603dc 1204 (void) restore_line_pointer (c);
bd0eb99b 1205 value = get_absolute_expression ();
ecea7679 1206 if (value >= 0)
bd0eb99b 1207 current.isa = value;
ecea7679
RH
1208 else
1209 {
1210 as_bad (_("isa number less than zero"));
1211 return;
1212 }
bd0eb99b 1213 }
92846e72
CC
1214 else if (strcmp (p, "discriminator") == 0)
1215 {
d02603dc 1216 (void) restore_line_pointer (c);
92846e72
CC
1217 value = get_absolute_expression ();
1218 if (value >= 0)
1219 current.discriminator = value;
1220 else
1221 {
1222 as_bad (_("discriminator less than zero"));
1223 return;
1224 }
1225 }
ba8826a8
AO
1226 else if (strcmp (p, "view") == 0)
1227 {
1228 symbolS *sym;
1229
1230 (void) restore_line_pointer (c);
1231 SKIP_WHITESPACE ();
1232
1233 if (ISDIGIT (*input_line_pointer)
1234 || *input_line_pointer == '-')
1235 {
1236 bfd_boolean force_reset = *input_line_pointer == '-';
1237
1238 value = get_absolute_expression ();
1239 if (value != 0)
1240 {
1241 as_bad (_("numeric view can only be asserted to zero"));
1242 return;
1243 }
1244 if (force_reset && force_reset_view)
1245 sym = force_reset_view;
1246 else
1247 {
1248 sym = symbol_temp_new (absolute_section, value,
1249 &zero_address_frag);
1250 if (force_reset)
1251 force_reset_view = sym;
1252 }
1253 }
1254 else
1255 {
1256 char *name = read_symbol_name ();
1257
1258 if (!name)
1259 return;
1260 sym = symbol_find_or_make (name);
38cf168b 1261 if (S_IS_DEFINED (sym) || symbol_equated_p (sym))
ba8826a8 1262 {
38cf168b 1263 if (S_IS_VOLATILE (sym))
ba8826a8 1264 sym = symbol_clone (sym, 1);
38cf168b
AM
1265 else if (!S_CAN_BE_REDEFINED (sym))
1266 {
1267 as_bad (_("symbol `%s' is already defined"), name);
1268 return;
1269 }
ba8826a8 1270 }
38cf168b
AM
1271 S_SET_SEGMENT (sym, undefined_section);
1272 S_SET_VALUE (sym, 0);
1273 symbol_set_frag (sym, &zero_address_frag);
ba8826a8
AO
1274 }
1275 current.view = sym;
1276 }
bd0eb99b
RH
1277 else
1278 {
ecea7679 1279 as_bad (_("unknown .loc sub-directive `%s'"), p);
d02603dc 1280 (void) restore_line_pointer (c);
bd0eb99b
RH
1281 return;
1282 }
1283
d02603dc 1284 SKIP_WHITESPACE_AFTER_NAME ();
bd0eb99b
RH
1285 }
1286
1287 demand_empty_rest_of_line ();
1eee4adc 1288 dwarf2_loc_directive_seen = TRUE;
7cadeb2c 1289 debug_type = DEBUG_NONE;
ba8826a8
AO
1290
1291 /* If we were given a view id, emit the row right away. */
1292 if (current.view)
1293 dwarf2_emit_insn (0);
220e750f 1294}
07a53e5c
RH
1295
1296void
1297dwarf2_directive_loc_mark_labels (int dummy ATTRIBUTE_UNUSED)
1298{
1299 offsetT value = get_absolute_expression ();
1300
1301 if (value != 0 && value != 1)
1302 {
1303 as_bad (_("expected 0 or 1"));
1304 ignore_rest_of_line ();
1305 }
1306 else
1307 {
1308 dwarf2_loc_mark_labels = value != 0;
1309 demand_empty_rest_of_line ();
1310 }
1311}
220e750f
RH
1312\f
1313static struct frag *
a2e22468 1314first_frag_for_seg (segT seg)
220e750f 1315{
c9049d30 1316 return seg_info (seg)->frchainP->frch_root;
220e750f
RH
1317}
1318
1319static struct frag *
a2e22468 1320last_frag_for_seg (segT seg)
220e750f 1321{
c9049d30 1322 frchainS *f = seg_info (seg)->frchainP;
220e750f 1323
c9049d30
AM
1324 while (f->frch_next != NULL)
1325 f = f->frch_next;
220e750f 1326
c9049d30 1327 return f->frch_last;
220e750f
RH
1328}
1329\f
1330/* Emit a single byte into the current segment. */
1331
1332static inline void
a2e22468 1333out_byte (int byte)
220e750f
RH
1334{
1335 FRAG_APPEND_1_CHAR (byte);
1336}
1337
1338/* Emit a statement program opcode into the current segment. */
1339
1340static inline void
a2e22468 1341out_opcode (int opc)
220e750f
RH
1342{
1343 out_byte (opc);
1344}
1345
1346/* Emit a two-byte word into the current segment. */
1347
1348static inline void
a2e22468 1349out_two (int data)
220e750f
RH
1350{
1351 md_number_to_chars (frag_more (2), data, 2);
1352}
1353
1354/* Emit a four byte word into the current segment. */
1355
1356static inline void
a2e22468 1357out_four (int data)
220e750f
RH
1358{
1359 md_number_to_chars (frag_more (4), data, 4);
1360}
1361
1362/* Emit an unsigned "little-endian base 128" number. */
1363
fac0d250 1364static void
a2e22468 1365out_uleb128 (addressT value)
220e750f
RH
1366{
1367 output_leb128 (frag_more (sizeof_leb128 (value, 0)), value, 0);
1368}
1369
92846e72
CC
1370/* Emit a signed "little-endian base 128" number. */
1371
1372static void
1373out_leb128 (addressT value)
1374{
1375 output_leb128 (frag_more (sizeof_leb128 (value, 1)), value, 1);
1376}
1377
220e750f
RH
1378/* Emit a tuple for .debug_abbrev. */
1379
1380static inline void
a2e22468 1381out_abbrev (int name, int form)
fac0d250 1382{
220e750f
RH
1383 out_uleb128 (name);
1384 out_uleb128 (form);
1385}
fac0d250 1386
220e750f 1387/* Get the size of a fragment. */
fac0d250 1388
220e750f 1389static offsetT
c9049d30 1390get_frag_fix (fragS *frag, segT seg)
220e750f
RH
1391{
1392 frchainS *fr;
1393
1394 if (frag->fr_next)
1395 return frag->fr_fix;
1396
1397 /* If a fragment is the last in the chain, special measures must be
1398 taken to find its size before relaxation, since it may be pending
1399 on some subsegment chain. */
c9049d30 1400 for (fr = seg_info (seg)->frchainP; fr; fr = fr->frch_next)
220e750f 1401 if (fr->frch_last == frag)
c5c0a210 1402 return (char *) obstack_next_free (&fr->frch_obstack) - frag->fr_literal;
220e750f
RH
1403
1404 abort ();
1405}
fac0d250 1406
220e750f 1407/* Set an absolute address (may result in a relocation entry). */
fac0d250 1408
220e750f 1409static void
07a53e5c 1410out_set_addr (symbolS *sym)
220e750f 1411{
91d6fa6a 1412 expressionS exp;
9e3af0e7 1413
031e3350 1414 memset (&exp, 0, sizeof exp);
e2b9a97e
CE
1415 out_opcode (DW_LNS_extended_op);
1416 out_uleb128 (sizeof_address + 1);
fac0d250 1417
e2b9a97e 1418 out_opcode (DW_LNE_set_address);
91d6fa6a
NC
1419 exp.X_op = O_symbol;
1420 exp.X_add_symbol = sym;
1421 exp.X_add_number = 0;
1422 emit_expr (&exp, sizeof_address);
fac0d250
RH
1423}
1424
a2e22468 1425static void scale_addr_delta (addressT *);
c8970b4b 1426
a3b75434 1427static void
d7342424 1428scale_addr_delta (addressT *addr_delta)
a3b75434
DD
1429{
1430 static int printed_this = 0;
8fbf7334 1431 if (DWARF2_LINE_MIN_INSN_LENGTH > 1)
a3b75434 1432 {
8fbf7334 1433 if (*addr_delta % DWARF2_LINE_MIN_INSN_LENGTH != 0 && !printed_this)
8f02ae5b 1434 {
8fbf7334 1435 as_bad("unaligned opcodes detected in executable segment");
8f02ae5b
AM
1436 printed_this = 1;
1437 }
8fbf7334 1438 *addr_delta /= DWARF2_LINE_MIN_INSN_LENGTH;
a3b75434 1439 }
a3b75434 1440}
a3b75434 1441
220e750f
RH
1442/* Encode a pair of line and address skips as efficiently as possible.
1443 Note that the line skip is signed, whereas the address skip is unsigned.
353e2c69 1444
220e750f
RH
1445 The following two routines *must* be kept in sync. This is
1446 enforced by making emit_inc_line_addr abort if we do not emit
1447 exactly the expected number of bytes. */
1448
1449static int
a2e22468 1450size_inc_line_addr (int line_delta, addressT addr_delta)
fac0d250 1451{
220e750f
RH
1452 unsigned int tmp, opcode;
1453 int len = 0;
fac0d250 1454
220e750f 1455 /* Scale the address delta by the minimum instruction length. */
a3b75434 1456 scale_addr_delta (&addr_delta);
220e750f
RH
1457
1458 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence.
1459 We cannot use special opcodes here, since we want the end_sequence
1460 to emit the matrix entry. */
1461 if (line_delta == INT_MAX)
fac0d250 1462 {
220e750f
RH
1463 if (addr_delta == MAX_SPECIAL_ADDR_DELTA)
1464 len = 1;
62e6b7b3 1465 else if (addr_delta)
220e750f
RH
1466 len = 1 + sizeof_leb128 (addr_delta, 0);
1467 return len + 3;
fac0d250 1468 }
fac0d250 1469
220e750f
RH
1470 /* Bias the line delta by the base. */
1471 tmp = line_delta - DWARF2_LINE_BASE;
fac0d250 1472
220e750f
RH
1473 /* If the line increment is out of range of a special opcode, we
1474 must encode it with DW_LNS_advance_line. */
1475 if (tmp >= DWARF2_LINE_RANGE)
1476 {
1477 len = 1 + sizeof_leb128 (line_delta, 1);
1478 line_delta = 0;
1479 tmp = 0 - DWARF2_LINE_BASE;
1480 }
fac0d250 1481
220e750f
RH
1482 /* Bias the opcode by the special opcode base. */
1483 tmp += DWARF2_LINE_OPCODE_BASE;
353e2c69 1484
220e750f
RH
1485 /* Avoid overflow when addr_delta is large. */
1486 if (addr_delta < 256 + MAX_SPECIAL_ADDR_DELTA)
1487 {
1488 /* Try using a special opcode. */
1489 opcode = tmp + addr_delta * DWARF2_LINE_RANGE;
1490 if (opcode <= 255)
1491 return len + 1;
1492
1493 /* Try using DW_LNS_const_add_pc followed by special op. */
1494 opcode = tmp + (addr_delta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
1495 if (opcode <= 255)
1496 return len + 2;
1497 }
1498
1499 /* Otherwise use DW_LNS_advance_pc. */
1500 len += 1 + sizeof_leb128 (addr_delta, 0);
1501
1502 /* DW_LNS_copy or special opcode. */
1503 len += 1;
1504
1505 return len;
1506}
fac0d250 1507
220e750f 1508static void
a2e22468 1509emit_inc_line_addr (int line_delta, addressT addr_delta, char *p, int len)
220e750f
RH
1510{
1511 unsigned int tmp, opcode;
1512 int need_copy = 0;
1513 char *end = p + len;
fac0d250 1514
07a53e5c
RH
1515 /* Line number sequences cannot go backward in addresses. This means
1516 we've incorrectly ordered the statements in the sequence. */
9c2799c2 1517 gas_assert ((offsetT) addr_delta >= 0);
07a53e5c 1518
220e750f 1519 /* Scale the address delta by the minimum instruction length. */
a3b75434
DD
1520 scale_addr_delta (&addr_delta);
1521
220e750f
RH
1522 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence.
1523 We cannot use special opcodes here, since we want the end_sequence
1524 to emit the matrix entry. */
1525 if (line_delta == INT_MAX)
fac0d250 1526 {
220e750f
RH
1527 if (addr_delta == MAX_SPECIAL_ADDR_DELTA)
1528 *p++ = DW_LNS_const_add_pc;
62e6b7b3 1529 else if (addr_delta)
fac0d250 1530 {
220e750f
RH
1531 *p++ = DW_LNS_advance_pc;
1532 p += output_leb128 (p, addr_delta, 0);
fac0d250 1533 }
220e750f
RH
1534
1535 *p++ = DW_LNS_extended_op;
1536 *p++ = 1;
1537 *p++ = DW_LNE_end_sequence;
1538 goto done;
fac0d250
RH
1539 }
1540
220e750f
RH
1541 /* Bias the line delta by the base. */
1542 tmp = line_delta - DWARF2_LINE_BASE;
1543
1544 /* If the line increment is out of range of a special opcode, we
1545 must encode it with DW_LNS_advance_line. */
1546 if (tmp >= DWARF2_LINE_RANGE)
fac0d250 1547 {
220e750f
RH
1548 *p++ = DW_LNS_advance_line;
1549 p += output_leb128 (p, line_delta, 1);
fac0d250 1550
220e750f
RH
1551 line_delta = 0;
1552 tmp = 0 - DWARF2_LINE_BASE;
1553 need_copy = 1;
1554 }
fac0d250 1555
bd0eb99b
RH
1556 /* Prettier, I think, to use DW_LNS_copy instead of a "line +0, addr +0"
1557 special opcode. */
1558 if (line_delta == 0 && addr_delta == 0)
1559 {
1560 *p++ = DW_LNS_copy;
1561 goto done;
1562 }
1563
220e750f
RH
1564 /* Bias the opcode by the special opcode base. */
1565 tmp += DWARF2_LINE_OPCODE_BASE;
fac0d250 1566
220e750f
RH
1567 /* Avoid overflow when addr_delta is large. */
1568 if (addr_delta < 256 + MAX_SPECIAL_ADDR_DELTA)
fac0d250 1569 {
220e750f
RH
1570 /* Try using a special opcode. */
1571 opcode = tmp + addr_delta * DWARF2_LINE_RANGE;
1572 if (opcode <= 255)
1573 {
1574 *p++ = opcode;
1575 goto done;
1576 }
1577
1578 /* Try using DW_LNS_const_add_pc followed by special op. */
1579 opcode = tmp + (addr_delta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
1580 if (opcode <= 255)
fac0d250 1581 {
220e750f
RH
1582 *p++ = DW_LNS_const_add_pc;
1583 *p++ = opcode;
1584 goto done;
fac0d250
RH
1585 }
1586 }
220e750f
RH
1587
1588 /* Otherwise use DW_LNS_advance_pc. */
1589 *p++ = DW_LNS_advance_pc;
1590 p += output_leb128 (p, addr_delta, 0);
1591
1592 if (need_copy)
1593 *p++ = DW_LNS_copy;
fac0d250 1594 else
220e750f 1595 *p++ = tmp;
fac0d250 1596
220e750f 1597 done:
9c2799c2 1598 gas_assert (p == end);
220e750f 1599}
a8316fe2 1600
220e750f 1601/* Handy routine to combine calls to the above two routines. */
e1c05f12 1602
220e750f 1603static void
a2e22468 1604out_inc_line_addr (int line_delta, addressT addr_delta)
220e750f
RH
1605{
1606 int len = size_inc_line_addr (line_delta, addr_delta);
1607 emit_inc_line_addr (line_delta, addr_delta, frag_more (len), len);
1608}
9de8d8f1 1609
1737851b
BW
1610/* Write out an alternative form of line and address skips using
1611 DW_LNS_fixed_advance_pc opcodes. This uses more space than the default
7ddd14de
BW
1612 line and address information, but it is required if linker relaxation
1613 could change the code offsets. The following two routines *must* be
1614 kept in sync. */
453dc3f0 1615#define ADDR_DELTA_LIMIT 50000
1737851b 1616
7ddd14de
BW
1617static int
1618size_fixed_inc_line_addr (int line_delta, addressT addr_delta)
1737851b 1619{
7ddd14de 1620 int len = 0;
1737851b
BW
1621
1622 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence. */
7ddd14de
BW
1623 if (line_delta != INT_MAX)
1624 len = 1 + sizeof_leb128 (line_delta, 1);
1625
453dc3f0 1626 if (addr_delta > ADDR_DELTA_LIMIT)
7ddd14de
BW
1627 {
1628 /* DW_LNS_extended_op */
1629 len += 1 + sizeof_leb128 (sizeof_address + 1, 0);
1630 /* DW_LNE_set_address */
1631 len += 1 + sizeof_address;
1632 }
1633 else
1634 /* DW_LNS_fixed_advance_pc */
1635 len += 3;
1636
1737851b 1637 if (line_delta == INT_MAX)
7ddd14de
BW
1638 /* DW_LNS_extended_op + DW_LNE_end_sequence */
1639 len += 3;
1640 else
1641 /* DW_LNS_copy */
1642 len += 1;
1643
1644 return len;
1645}
1646
1647static void
1648emit_fixed_inc_line_addr (int line_delta, addressT addr_delta, fragS *frag,
1649 char *p, int len)
1650{
91d6fa6a 1651 expressionS *pexp;
7ddd14de
BW
1652 char *end = p + len;
1653
1654 /* Line number sequences cannot go backward in addresses. This means
1655 we've incorrectly ordered the statements in the sequence. */
9c2799c2 1656 gas_assert ((offsetT) addr_delta >= 0);
7ddd14de 1657
b40bf0a2
NC
1658 /* Verify that we have kept in sync with size_fixed_inc_line_addr. */
1659 gas_assert (len == size_fixed_inc_line_addr (line_delta, addr_delta));
1660
7ddd14de
BW
1661 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence. */
1662 if (line_delta != INT_MAX)
1663 {
1664 *p++ = DW_LNS_advance_line;
1665 p += output_leb128 (p, line_delta, 1);
1666 }
1667
91d6fa6a 1668 pexp = symbol_get_value_expression (frag->fr_symbol);
7ddd14de
BW
1669
1670 /* The DW_LNS_fixed_advance_pc opcode has a 2-byte operand so it can
1671 advance the address by at most 64K. Linker relaxation (without
1672 which this function would not be used) could change the operand by
1673 an unknown amount. If the address increment is getting close to
1674 the limit, just reset the address. */
453dc3f0 1675 if (addr_delta > ADDR_DELTA_LIMIT)
1737851b 1676 {
7ddd14de 1677 symbolS *to_sym;
91d6fa6a 1678 expressionS exp;
7ddd14de 1679
031e3350 1680 memset (&exp, 0, sizeof exp);
9f6db0d3 1681 gas_assert (pexp->X_op == O_subtract);
91d6fa6a 1682 to_sym = pexp->X_add_symbol;
7ddd14de
BW
1683
1684 *p++ = DW_LNS_extended_op;
1685 p += output_leb128 (p, sizeof_address + 1, 0);
1686 *p++ = DW_LNE_set_address;
91d6fa6a
NC
1687 exp.X_op = O_symbol;
1688 exp.X_add_symbol = to_sym;
1689 exp.X_add_number = 0;
62ebcb5c 1690 emit_expr_fix (&exp, sizeof_address, frag, p, TC_PARSE_CONS_RETURN_NONE);
7ddd14de
BW
1691 p += sizeof_address;
1692 }
1693 else
1694 {
1695 *p++ = DW_LNS_fixed_advance_pc;
62ebcb5c 1696 emit_expr_fix (pexp, 2, frag, p, TC_PARSE_CONS_RETURN_NONE);
7ddd14de 1697 p += 2;
1737851b
BW
1698 }
1699
7ddd14de
BW
1700 if (line_delta == INT_MAX)
1701 {
1702 *p++ = DW_LNS_extended_op;
1703 *p++ = 1;
1704 *p++ = DW_LNE_end_sequence;
1705 }
1706 else
1707 *p++ = DW_LNS_copy;
1737851b 1708
9c2799c2 1709 gas_assert (p == end);
1737851b
BW
1710}
1711
220e750f
RH
1712/* Generate a variant frag that we can use to relax address/line
1713 increments between fragments of the target segment. */
9e3af0e7 1714
220e750f 1715static void
07a53e5c 1716relax_inc_line_addr (int line_delta, symbolS *to_sym, symbolS *from_sym)
220e750f 1717{
91d6fa6a 1718 expressionS exp;
220e750f 1719 int max_chars;
6576f0b5 1720
031e3350 1721 memset (&exp, 0, sizeof exp);
91d6fa6a
NC
1722 exp.X_op = O_subtract;
1723 exp.X_add_symbol = to_sym;
1724 exp.X_op_symbol = from_sym;
1725 exp.X_add_number = 0;
fac0d250 1726
220e750f
RH
1727 /* The maximum size of the frag is the line delta with a maximum
1728 sized address delta. */
7ddd14de
BW
1729 if (DWARF2_USE_FIXED_ADVANCE_PC)
1730 max_chars = size_fixed_inc_line_addr (line_delta,
1731 -DWARF2_LINE_MIN_INSN_LENGTH);
1732 else
1733 max_chars = size_inc_line_addr (line_delta, -DWARF2_LINE_MIN_INSN_LENGTH);
fac0d250 1734
220e750f 1735 frag_var (rs_dwarf2dbg, max_chars, max_chars, 1,
91d6fa6a 1736 make_expr_symbol (&exp), line_delta, NULL);
220e750f 1737}
fac0d250 1738
220e750f
RH
1739/* The function estimates the size of a rs_dwarf2dbg variant frag
1740 based on the current values of the symbols. It is called before
1741 the relaxation loop. We set fr_subtype to the expected length. */
fac0d250 1742
220e750f 1743int
a2e22468 1744dwarf2dbg_estimate_size_before_relax (fragS *frag)
220e750f
RH
1745{
1746 offsetT addr_delta;
1747 int size;
fac0d250 1748
6386f3a7 1749 addr_delta = resolve_symbol_value (frag->fr_symbol);
7ddd14de
BW
1750 if (DWARF2_USE_FIXED_ADVANCE_PC)
1751 size = size_fixed_inc_line_addr (frag->fr_offset, addr_delta);
1752 else
1753 size = size_inc_line_addr (frag->fr_offset, addr_delta);
fac0d250 1754
220e750f 1755 frag->fr_subtype = size;
fac0d250 1756
220e750f
RH
1757 return size;
1758}
1759
1760/* This function relaxes a rs_dwarf2dbg variant frag based on the
1761 current values of the symbols. fr_subtype is the current length
1762 of the frag. This returns the change in frag length. */
1763
1764int
a2e22468 1765dwarf2dbg_relax_frag (fragS *frag)
220e750f
RH
1766{
1767 int old_size, new_size;
fac0d250 1768
220e750f
RH
1769 old_size = frag->fr_subtype;
1770 new_size = dwarf2dbg_estimate_size_before_relax (frag);
ee515fb7 1771
220e750f 1772 return new_size - old_size;
fac0d250
RH
1773}
1774
220e750f
RH
1775/* This function converts a rs_dwarf2dbg variant frag into a normal
1776 fill frag. This is called after all relaxation has been done.
1777 fr_subtype will be the desired length of the frag. */
1778
1779void
a2e22468 1780dwarf2dbg_convert_frag (fragS *frag)
fac0d250 1781{
220e750f
RH
1782 offsetT addr_diff;
1783
453dc3f0
NC
1784 if (DWARF2_USE_FIXED_ADVANCE_PC)
1785 {
2b0f3761 1786 /* If linker relaxation is enabled then the distance between the two
453dc3f0
NC
1787 symbols in the frag->fr_symbol expression might change. Hence we
1788 cannot rely upon the value computed by resolve_symbol_value.
1789 Instead we leave the expression unfinalized and allow
1790 emit_fixed_inc_line_addr to create a fixup (which later becomes a
1791 relocation) that will allow the linker to correctly compute the
1792 actual address difference. We have to use a fixed line advance for
1793 this as we cannot (easily) relocate leb128 encoded values. */
1794 int saved_finalize_syms = finalize_syms;
1795
1796 finalize_syms = 0;
1797 addr_diff = resolve_symbol_value (frag->fr_symbol);
1798 finalize_syms = saved_finalize_syms;
1799 }
1800 else
1801 addr_diff = resolve_symbol_value (frag->fr_symbol);
fac0d250 1802
220e750f
RH
1803 /* fr_var carries the max_chars that we created the fragment with.
1804 fr_subtype carries the current expected length. We must, of
1805 course, have allocated enough memory earlier. */
9c2799c2 1806 gas_assert (frag->fr_var >= (int) frag->fr_subtype);
fac0d250 1807
7ddd14de
BW
1808 if (DWARF2_USE_FIXED_ADVANCE_PC)
1809 emit_fixed_inc_line_addr (frag->fr_offset, addr_diff, frag,
1810 frag->fr_literal + frag->fr_fix,
1811 frag->fr_subtype);
1812 else
1813 emit_inc_line_addr (frag->fr_offset, addr_diff,
1814 frag->fr_literal + frag->fr_fix, frag->fr_subtype);
220e750f
RH
1815
1816 frag->fr_fix += frag->fr_subtype;
1817 frag->fr_type = rs_fill;
1818 frag->fr_var = 0;
1819 frag->fr_offset = 0;
1820}
1821
1822/* Generate .debug_line content for the chain of line number entries
1823 beginning at E, for segment SEG. */
1824
1825static void
a2e22468 1826process_entries (segT seg, struct line_entry *e)
220e750f
RH
1827{
1828 unsigned filenum = 1;
1829 unsigned line = 1;
1830 unsigned column = 0;
bd0eb99b
RH
1831 unsigned isa = 0;
1832 unsigned flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
07a53e5c
RH
1833 fragS *last_frag = NULL, *frag;
1834 addressT last_frag_ofs = 0, frag_ofs;
fead5cd9 1835 symbolS *last_lab = NULL, *lab;
220e750f
RH
1836 struct line_entry *next;
1837
b40bf0a2
NC
1838 if (flag_dwarf_sections)
1839 {
1840 char * name;
1841 const char * sec_name;
1842
2b0f3761 1843 /* Switch to the relevant sub-section before we start to emit
b40bf0a2
NC
1844 the line number table.
1845
1846 FIXME: These sub-sections do not have a normal Line Number
1847 Program Header, thus strictly speaking they are not valid
1848 DWARF sections. Unfortunately the DWARF standard assumes
1849 a one-to-one relationship between compilation units and
1850 line number tables. Thus we have to have a .debug_line
1851 section, as well as our sub-sections, and we have to ensure
1852 that all of the sub-sections are merged into a proper
1853 .debug_line section before a debugger sees them. */
3739860c 1854
fd361982 1855 sec_name = bfd_section_name (seg);
b40bf0a2
NC
1856 if (strcmp (sec_name, ".text") != 0)
1857 {
29a2809e 1858 name = concat (".debug_line", sec_name, (char *) NULL);
b40bf0a2
NC
1859 subseg_set (subseg_get (name, FALSE), 0);
1860 }
1861 else
1862 /* Don't create a .debug_line.text section -
1863 that is redundant. Instead just switch back to the
1864 normal .debug_line section. */
1865 subseg_set (subseg_get (".debug_line", FALSE), 0);
1866 }
1867
fead5cd9 1868 do
fac0d250 1869 {
07a53e5c 1870 int line_delta;
220e750f
RH
1871
1872 if (filenum != e->loc.filenum)
fac0d250 1873 {
220e750f
RH
1874 filenum = e->loc.filenum;
1875 out_opcode (DW_LNS_set_file);
1876 out_uleb128 (filenum);
220e750f
RH
1877 }
1878
1879 if (column != e->loc.column)
1880 {
1881 column = e->loc.column;
1882 out_opcode (DW_LNS_set_column);
1883 out_uleb128 (column);
220e750f
RH
1884 }
1885
92846e72
CC
1886 if (e->loc.discriminator != 0)
1887 {
1888 out_opcode (DW_LNS_extended_op);
1889 out_leb128 (1 + sizeof_leb128 (e->loc.discriminator, 0));
1890 out_opcode (DW_LNE_set_discriminator);
1891 out_uleb128 (e->loc.discriminator);
1892 }
1893
bd0eb99b
RH
1894 if (isa != e->loc.isa)
1895 {
1896 isa = e->loc.isa;
1897 out_opcode (DW_LNS_set_isa);
1898 out_uleb128 (isa);
bd0eb99b
RH
1899 }
1900
1901 if ((e->loc.flags ^ flags) & DWARF2_FLAG_IS_STMT)
220e750f
RH
1902 {
1903 flags = e->loc.flags;
1904 out_opcode (DW_LNS_negate_stmt);
220e750f
RH
1905 }
1906
bd0eb99b 1907 if (e->loc.flags & DWARF2_FLAG_BASIC_BLOCK)
07a53e5c 1908 out_opcode (DW_LNS_set_basic_block);
220e750f 1909
bd0eb99b 1910 if (e->loc.flags & DWARF2_FLAG_PROLOGUE_END)
07a53e5c 1911 out_opcode (DW_LNS_set_prologue_end);
bd0eb99b
RH
1912
1913 if (e->loc.flags & DWARF2_FLAG_EPILOGUE_BEGIN)
07a53e5c 1914 out_opcode (DW_LNS_set_epilogue_begin);
bd0eb99b 1915
fb81275c
JM
1916 /* Don't try to optimize away redundant entries; gdb wants two
1917 entries for a function where the code starts on the same line as
1918 the {, and there's no way to identify that case here. Trust gcc
1919 to optimize appropriately. */
07a53e5c
RH
1920 line_delta = e->loc.line - line;
1921 lab = e->label;
1922 frag = symbol_get_frag (lab);
1923 frag_ofs = S_GET_VALUE (lab);
220e750f 1924
ba8826a8
AO
1925 if (last_frag == NULL
1926 || (e->loc.view == force_reset_view && force_reset_view
1927 /* If we're going to reset the view, but we know we're
1928 advancing the PC, we don't have to force with
1929 set_address. We know we do when we're at the same
1930 address of the same frag, and we know we might when
1931 we're in the beginning of a frag, and we were at the
1932 end of the previous frag. */
1933 && (frag == last_frag
1934 ? (last_frag_ofs == frag_ofs)
1935 : (frag_ofs == 0
1936 && ((offsetT)last_frag_ofs
1937 >= get_frag_fix (last_frag, seg))))))
220e750f 1938 {
07a53e5c
RH
1939 out_set_addr (lab);
1940 out_inc_line_addr (line_delta, 0);
220e750f 1941 }
7ddd14de 1942 else if (frag == last_frag && ! DWARF2_USE_FIXED_ADVANCE_PC)
07a53e5c
RH
1943 out_inc_line_addr (line_delta, frag_ofs - last_frag_ofs);
1944 else
1945 relax_inc_line_addr (line_delta, lab, last_lab);
1946
1947 line = e->loc.line;
1948 last_lab = lab;
1949 last_frag = frag;
1950 last_frag_ofs = frag_ofs;
220e750f
RH
1951
1952 next = e->next;
1953 free (e);
1954 e = next;
fac0d250 1955 }
fead5cd9 1956 while (e);
353e2c69 1957
220e750f 1958 /* Emit a DW_LNE_end_sequence for the end of the section. */
07a53e5c 1959 frag = last_frag_for_seg (seg);
c9049d30 1960 frag_ofs = get_frag_fix (frag, seg);
7ddd14de 1961 if (frag == last_frag && ! DWARF2_USE_FIXED_ADVANCE_PC)
07a53e5c 1962 out_inc_line_addr (INT_MAX, frag_ofs - last_frag_ofs);
220e750f 1963 else
07a53e5c
RH
1964 {
1965 lab = symbol_temp_new (seg, frag_ofs, frag);
1966 relax_inc_line_addr (INT_MAX, lab, last_lab);
1967 }
fac0d250
RH
1968}
1969
220e750f
RH
1970/* Emit the directory and file tables for .debug_line. */
1971
fac0d250 1972static void
5496f3c6 1973out_dir_and_file_list (void)
fac0d250
RH
1974{
1975 size_t size;
3d6b762c 1976 const char *dir;
fac0d250 1977 char *cp;
220e750f 1978 unsigned int i;
5496f3c6
NC
1979 bfd_boolean emit_md5 = FALSE;
1980 bfd_boolean emit_timestamps = TRUE;
1981 bfd_boolean emit_filesize = TRUE;
220e750f 1982
5496f3c6 1983 /* Output the Directory Table. */
5496f3c6
NC
1984 if (DWARF2_LINE_VERSION >= 5)
1985 {
546cb2d8 1986 /* We only have one column in the directory table. */
5496f3c6 1987 out_byte (1);
546cb2d8
NC
1988
1989 /* Describe the purpose and format of the column. */
5496f3c6
NC
1990 out_uleb128 (DW_LNCT_path);
1991 /* FIXME: it would be better to store these strings in
1992 the .debug_line_str section and reference them here. */
1993 out_uleb128 (DW_FORM_string);
546cb2d8
NC
1994
1995 /* Now state how many rows there are in the table. */
5496f3c6
NC
1996 out_uleb128 (dirs_in_use);
1997 }
1998
a7ed1ca2 1999 /* Emit directory list. */
070b775f 2000 if (DWARF2_LINE_VERSION >= 5 && dirs_in_use > 0)
5496f3c6 2001 {
4706679d 2002 if (dirs == NULL || dirs[0] == NULL)
5496f3c6
NC
2003 dir = remap_debug_filename (".");
2004 else
2005 dir = remap_debug_filename (dirs[0]);
2006
2007 size = strlen (dir) + 1;
2008 cp = frag_more (size);
2009 memcpy (cp, dir, size);
2010 }
a7ed1ca2
NC
2011 for (i = 1; i < dirs_in_use; ++i)
2012 {
3d6b762c
JM
2013 dir = remap_debug_filename (dirs[i]);
2014 size = strlen (dir) + 1;
a7ed1ca2 2015 cp = frag_more (size);
3d6b762c 2016 memcpy (cp, dir, size);
a7ed1ca2 2017 }
fac0d250 2018
5496f3c6
NC
2019 if (DWARF2_LINE_VERSION < 5)
2020 /* Terminate it. */
2021 out_byte ('\0');
2022
2023 /* Output the File Name Table. */
5496f3c6
NC
2024 if (DWARF2_LINE_VERSION >= 5)
2025 {
2026 unsigned int columns = 4;
2027
2028 if (((unsigned long) DWARF2_FILE_TIME_NAME ("", "")) == -1UL)
2029 {
2030 emit_timestamps = FALSE;
2031 -- columns;
2032 }
2033
2034 if (DWARF2_FILE_SIZE_NAME ("", "") == -1)
2035 {
2036 emit_filesize = FALSE;
2037 -- columns;
2038 }
2039
2040 for (i = 0; i < files_in_use; ++i)
2041 if (files[i].md5[0] != 0)
2042 break;
2043 if (i < files_in_use)
2044 {
2045 emit_md5 = TRUE;
2046 ++ columns;
2047 }
2048
2049 /* The number of format entries to follow. */
2050 out_byte (columns);
5496f3c6
NC
2051 /* The format of the file name. */
2052 out_uleb128 (DW_LNCT_path);
2053 /* FIXME: it would be better to store these strings in
2054 the .debug_line_str section and reference them here. */
2055 out_uleb128 (DW_FORM_string);
2056
2057 /* The format of the directory index. */
2058 out_uleb128 (DW_LNCT_directory_index);
2059 out_uleb128 (DW_FORM_udata);
2060
2061 if (emit_timestamps)
2062 {
2063 /* The format of the timestamp. */
2064 out_uleb128 (DW_LNCT_timestamp);
2065 out_uleb128 (DW_FORM_udata);
2066 }
2067
2068 if (emit_filesize)
2069 {
2070 /* The format of the file size. */
2071 out_uleb128 (DW_LNCT_size);
2072 out_uleb128 (DW_FORM_udata);
2073 }
2074
2075 if (emit_md5)
2076 {
2077 /* The format of the MD5 sum. */
2078 out_uleb128 (DW_LNCT_MD5);
2079 out_uleb128 (DW_FORM_data16);
2080 }
2081
2082 /* The number of entries in the table. */
2083 out_uleb128 (files_in_use);
2084 }
2085
2086 for (i = DWARF2_LINE_VERSION > 4 ? 0 : 1; i < files_in_use; ++i)
fac0d250 2087 {
01e1a5bc
NC
2088 const char *fullfilename;
2089
249e3833
RH
2090 if (files[i].filename == NULL)
2091 {
88b4ca40
RH
2092 /* Prevent a crash later, particularly for file 1. */
2093 files[i].filename = "";
5496f3c6
NC
2094 if (DWARF2_LINE_VERSION < 5 || i != 0)
2095 {
2096 as_bad (_("unassigned file number %ld"), (long) i);
2097 continue;
2098 }
249e3833
RH
2099 }
2100
01e1a5bc
NC
2101 fullfilename = DWARF2_FILE_NAME (files[i].filename,
2102 files[i].dir ? dirs [files [i].dir] : "");
2103 size = strlen (fullfilename) + 1;
fac0d250 2104 cp = frag_more (size);
01e1a5bc 2105 memcpy (cp, fullfilename, size);
fac0d250 2106
5496f3c6
NC
2107 /* Directory number. */
2108 out_uleb128 (files[i].dir);
2109
01e1a5bc 2110 /* Output the last modification timestamp. */
5496f3c6
NC
2111 if (emit_timestamps)
2112 {
2113 offsetT timestamp;
2114
2115 timestamp = DWARF2_FILE_TIME_NAME (files[i].filename,
2116 files[i].dir ? dirs [files [i].dir] : "");
2117 if (timestamp == -1)
2118 timestamp = 0;
2119 out_uleb128 (timestamp);
2120 }
2121
01e1a5bc 2122 /* Output the filesize. */
5496f3c6
NC
2123 if (emit_filesize)
2124 {
2125 offsetT filesize;
2126 filesize = DWARF2_FILE_SIZE_NAME (files[i].filename,
2127 files[i].dir ? dirs [files [i].dir] : "");
2128 if (filesize == -1)
2129 filesize = 0;
2130 out_uleb128 (filesize);
2131 }
2132
2133 /* Output the md5 sum. */
2134 if (emit_md5)
2135 {
2136 int b;
2137
2138 for (b = 0; b < NUM_MD5_BYTES; b++)
2139 out_byte (files[i].md5[b]);
2140 }
fac0d250 2141 }
353e2c69 2142
5496f3c6
NC
2143 if (DWARF2_LINE_VERSION < 5)
2144 /* Terminate filename list. */
2145 out_byte (0);
fac0d250
RH
2146}
2147
413a266c
AM
2148/* Switch to SEC and output a header length field. Return the size of
2149 offsets used in SEC. The caller must set EXPR->X_add_symbol value
d025d5e5
MW
2150 to the end of the section. EXPR->X_add_number will be set to the
2151 negative size of the header. */
413a266c
AM
2152
2153static int
91d6fa6a 2154out_header (asection *sec, expressionS *exp)
413a266c
AM
2155{
2156 symbolS *start_sym;
2157 symbolS *end_sym;
2158
2159 subseg_set (sec, 0);
b57dc16f 2160
0f8f0c57
NC
2161 if (flag_dwarf_sections)
2162 {
2163 /* If we are going to put the start and end symbols in different
2164 sections, then we need real symbols, not just fake, local ones. */
2165 frag_now_fix ();
2166 start_sym = symbol_make (".Ldebug_line_start");
2167 end_sym = symbol_make (".Ldebug_line_end");
2168 symbol_set_value_now (start_sym);
2169 }
2170 else
0f8f0c57 2171 {
72354279 2172 start_sym = symbol_temp_new_now_octets ();
0f8f0c57
NC
2173 end_sym = symbol_temp_make ();
2174 }
413a266c
AM
2175
2176 /* Total length of the information. */
91d6fa6a
NC
2177 exp->X_op = O_subtract;
2178 exp->X_add_symbol = end_sym;
2179 exp->X_op_symbol = start_sym;
413a266c
AM
2180
2181 switch (DWARF2_FORMAT (sec))
2182 {
2183 case dwarf2_format_32bit:
91d6fa6a
NC
2184 exp->X_add_number = -4;
2185 emit_expr (exp, 4);
413a266c
AM
2186 return 4;
2187
2188 case dwarf2_format_64bit:
91d6fa6a 2189 exp->X_add_number = -12;
413a266c 2190 out_four (-1);
91d6fa6a 2191 emit_expr (exp, 8);
413a266c
AM
2192 return 8;
2193
2194 case dwarf2_format_64bit_irix:
91d6fa6a
NC
2195 exp->X_add_number = -8;
2196 emit_expr (exp, 8);
413a266c
AM
2197 return 8;
2198 }
2199
2200 as_fatal (_("internal error: unknown dwarf2 format"));
2201 return 0;
2202}
2203
220e750f
RH
2204/* Emit the collected .debug_line data. */
2205
2206static void
a2e22468 2207out_debug_line (segT line_seg)
220e750f 2208{
91d6fa6a 2209 expressionS exp;
02fe846e 2210 symbolS *prologue_start, *prologue_end;
220e750f
RH
2211 symbolS *line_end;
2212 struct line_seg *s;
14e777e0 2213 int sizeof_offset;
220e750f 2214
031e3350 2215 memset (&exp, 0, sizeof exp);
91d6fa6a
NC
2216 sizeof_offset = out_header (line_seg, &exp);
2217 line_end = exp.X_add_symbol;
220e750f
RH
2218
2219 /* Version. */
88ebb0a1 2220 out_two (DWARF2_LINE_VERSION);
220e750f 2221
5496f3c6
NC
2222 if (DWARF2_LINE_VERSION >= 5)
2223 {
2224 out_byte (sizeof_address);
2225 out_byte (0); /* Segment Selector size. */
2226 }
220e750f 2227 /* Length of the prologue following this length. */
02fe846e 2228 prologue_start = symbol_temp_make ();
413a266c 2229 prologue_end = symbol_temp_make ();
02fe846e 2230 exp.X_op = O_subtract;
91d6fa6a 2231 exp.X_add_symbol = prologue_end;
02fe846e
AM
2232 exp.X_op_symbol = prologue_start;
2233 exp.X_add_number = 0;
91d6fa6a 2234 emit_expr (&exp, sizeof_offset);
e2b9a97e 2235 symbol_set_value_now (prologue_start);
220e750f
RH
2236
2237 /* Parameters of the state machine. */
2238 out_byte (DWARF2_LINE_MIN_INSN_LENGTH);
5496f3c6
NC
2239 if (DWARF2_LINE_VERSION >= 4)
2240 out_byte (DWARF2_LINE_MAX_OPS_PER_INSN);
220e750f
RH
2241 out_byte (DWARF2_LINE_DEFAULT_IS_STMT);
2242 out_byte (DWARF2_LINE_BASE);
2243 out_byte (DWARF2_LINE_RANGE);
2244 out_byte (DWARF2_LINE_OPCODE_BASE);
2245
2246 /* Standard opcode lengths. */
2247 out_byte (0); /* DW_LNS_copy */
2248 out_byte (1); /* DW_LNS_advance_pc */
2249 out_byte (1); /* DW_LNS_advance_line */
2250 out_byte (1); /* DW_LNS_set_file */
2251 out_byte (1); /* DW_LNS_set_column */
2252 out_byte (0); /* DW_LNS_negate_stmt */
2253 out_byte (0); /* DW_LNS_set_basic_block */
2254 out_byte (0); /* DW_LNS_const_add_pc */
2255 out_byte (1); /* DW_LNS_fixed_advance_pc */
bd0eb99b
RH
2256 out_byte (0); /* DW_LNS_set_prologue_end */
2257 out_byte (0); /* DW_LNS_set_epilogue_begin */
2258 out_byte (1); /* DW_LNS_set_isa */
5496f3c6
NC
2259 /* We have emitted 12 opcode lengths, so make that this
2260 matches up to the opcode base value we have been using. */
2261 gas_assert (DWARF2_LINE_OPCODE_BASE == 13);
220e750f 2262
5496f3c6 2263 out_dir_and_file_list ();
220e750f 2264
e2b9a97e 2265 symbol_set_value_now (prologue_end);
220e750f
RH
2266
2267 /* For each section, emit a statement program. */
ee515fb7 2268 for (s = all_segs; s; s = s->next)
9aec2026
NC
2269 if (SEG_NORMAL (s->seg))
2270 process_entries (s->seg, s->head->head);
2271 else
2272 as_warn ("dwarf line number information for %s ignored",
2273 segment_name (s->seg));
220e750f 2274
b40bf0a2
NC
2275 if (flag_dwarf_sections)
2276 /* We have to switch to the special .debug_line_end section
2277 before emitting the end-of-debug_line symbol. The linker
2278 script arranges for this section to be placed after all the
2279 (potentially garbage collected) .debug_line.<foo> sections.
2280 This section contains the line_end symbol which is used to
2281 compute the size of the linked .debug_line section, as seen
2282 in the DWARF Line Number header. */
2283 subseg_set (subseg_get (".debug_line_end", FALSE), 0);
2284
e2b9a97e 2285 symbol_set_value_now (line_end);
220e750f
RH
2286}
2287
802f5d9e
NC
2288static void
2289out_debug_ranges (segT ranges_seg)
2290{
2291 unsigned int addr_size = sizeof_address;
2292 struct line_seg *s;
91d6fa6a 2293 expressionS exp;
802f5d9e
NC
2294 unsigned int i;
2295
031e3350 2296 memset (&exp, 0, sizeof exp);
802f5d9e
NC
2297 subseg_set (ranges_seg, 0);
2298
2299 /* Base Address Entry. */
7fd3924a 2300 for (i = 0; i < addr_size; i++)
802f5d9e 2301 out_byte (0xff);
7fd3924a 2302 for (i = 0; i < addr_size; i++)
802f5d9e
NC
2303 out_byte (0);
2304
2305 /* Range List Entry. */
2306 for (s = all_segs; s; s = s->next)
2307 {
2308 fragS *frag;
2309 symbolS *beg, *end;
2310
2311 frag = first_frag_for_seg (s->seg);
2312 beg = symbol_temp_new (s->seg, 0, frag);
2313 s->text_start = beg;
2314
2315 frag = last_frag_for_seg (s->seg);
2316 end = symbol_temp_new (s->seg, get_frag_fix (frag, s->seg), frag);
2317 s->text_end = end;
2318
91d6fa6a
NC
2319 exp.X_op = O_symbol;
2320 exp.X_add_symbol = beg;
2321 exp.X_add_number = 0;
2322 emit_expr (&exp, addr_size);
802f5d9e 2323
91d6fa6a
NC
2324 exp.X_op = O_symbol;
2325 exp.X_add_symbol = end;
2326 exp.X_add_number = 0;
2327 emit_expr (&exp, addr_size);
802f5d9e
NC
2328 }
2329
2330 /* End of Range Entry. */
7fd3924a 2331 for (i = 0; i < addr_size; i++)
802f5d9e 2332 out_byte (0);
7fd3924a 2333 for (i = 0; i < addr_size; i++)
802f5d9e
NC
2334 out_byte (0);
2335}
2336
220e750f
RH
2337/* Emit data for .debug_aranges. */
2338
58b5739a 2339static void
a2e22468 2340out_debug_aranges (segT aranges_seg, segT info_seg)
fac0d250 2341{
220e750f 2342 unsigned int addr_size = sizeof_address;
d025d5e5 2343 offsetT size;
220e750f 2344 struct line_seg *s;
91d6fa6a 2345 expressionS exp;
413a266c 2346 symbolS *aranges_end;
220e750f 2347 char *p;
413a266c 2348 int sizeof_offset;
fac0d250 2349
031e3350 2350 memset (&exp, 0, sizeof exp);
91d6fa6a
NC
2351 sizeof_offset = out_header (aranges_seg, &exp);
2352 aranges_end = exp.X_add_symbol;
d025d5e5 2353 size = -exp.X_add_number;
fac0d250 2354
220e750f 2355 /* Version. */
88ebb0a1 2356 out_two (DWARF2_ARANGES_VERSION);
d025d5e5 2357 size += 2;
4dc7ead9 2358
220e750f 2359 /* Offset to .debug_info. */
413a266c 2360 TC_DWARF2_EMIT_OFFSET (section_symbol (info_seg), sizeof_offset);
d025d5e5 2361 size += sizeof_offset;
220e750f
RH
2362
2363 /* Size of an address (offset portion). */
2364 out_byte (addr_size);
d025d5e5 2365 size++;
220e750f
RH
2366
2367 /* Size of a segment descriptor. */
2368 out_byte (0);
d025d5e5 2369 size++;
220e750f
RH
2370
2371 /* Align the header. */
d025d5e5
MW
2372 while ((size++ % (2 * addr_size)) > 0)
2373 out_byte (0);
4dc7ead9 2374
ee515fb7 2375 for (s = all_segs; s; s = s->next)
220e750f
RH
2376 {
2377 fragS *frag;
2378 symbolS *beg, *end;
2379
2380 frag = first_frag_for_seg (s->seg);
b7d6ed97 2381 beg = symbol_temp_new (s->seg, 0, frag);
220e750f
RH
2382 s->text_start = beg;
2383
2384 frag = last_frag_for_seg (s->seg);
c9049d30 2385 end = symbol_temp_new (s->seg, get_frag_fix (frag, s->seg), frag);
220e750f
RH
2386 s->text_end = end;
2387
91d6fa6a
NC
2388 exp.X_op = O_symbol;
2389 exp.X_add_symbol = beg;
2390 exp.X_add_number = 0;
2391 emit_expr (&exp, addr_size);
220e750f 2392
91d6fa6a
NC
2393 exp.X_op = O_subtract;
2394 exp.X_add_symbol = end;
2395 exp.X_op_symbol = beg;
2396 exp.X_add_number = 0;
2397 emit_expr (&exp, addr_size);
220e750f 2398 }
4dc7ead9 2399
220e750f
RH
2400 p = frag_more (2 * addr_size);
2401 md_number_to_chars (p, 0, addr_size);
2402 md_number_to_chars (p + addr_size, 0, addr_size);
413a266c 2403
e2b9a97e 2404 symbol_set_value_now (aranges_end);
4dc7ead9
RH
2405}
2406
220e750f
RH
2407/* Emit data for .debug_abbrev. Note that this must be kept in
2408 sync with out_debug_info below. */
fac0d250 2409
220e750f 2410static void
413a266c
AM
2411out_debug_abbrev (segT abbrev_seg,
2412 segT info_seg ATTRIBUTE_UNUSED,
2413 segT line_seg ATTRIBUTE_UNUSED)
220e750f
RH
2414{
2415 subseg_set (abbrev_seg, 0);
fac0d250 2416
220e750f
RH
2417 out_uleb128 (1);
2418 out_uleb128 (DW_TAG_compile_unit);
2419 out_byte (DW_CHILDREN_no);
413a266c
AM
2420 if (DWARF2_FORMAT (line_seg) == dwarf2_format_32bit)
2421 out_abbrev (DW_AT_stmt_list, DW_FORM_data4);
2422 else
2423 out_abbrev (DW_AT_stmt_list, DW_FORM_data8);
220e750f 2424 if (all_segs->next == NULL)
4dc7ead9 2425 {
220e750f 2426 out_abbrev (DW_AT_low_pc, DW_FORM_addr);
88ebb0a1
MW
2427 if (DWARF2_VERSION < 4)
2428 out_abbrev (DW_AT_high_pc, DW_FORM_addr);
2429 else
2430 out_abbrev (DW_AT_high_pc, (sizeof_address == 4
2431 ? DW_FORM_data4 : DW_FORM_data8));
220e750f 2432 }
802f5d9e
NC
2433 else
2434 {
413a266c 2435 if (DWARF2_FORMAT (info_seg) == dwarf2_format_32bit)
802f5d9e
NC
2436 out_abbrev (DW_AT_ranges, DW_FORM_data4);
2437 else
2438 out_abbrev (DW_AT_ranges, DW_FORM_data8);
2439 }
49fced12
MW
2440 out_abbrev (DW_AT_name, DW_FORM_strp);
2441 out_abbrev (DW_AT_comp_dir, DW_FORM_strp);
2442 out_abbrev (DW_AT_producer, DW_FORM_strp);
220e750f
RH
2443 out_abbrev (DW_AT_language, DW_FORM_data2);
2444 out_abbrev (0, 0);
a987bfc9
RH
2445
2446 /* Terminate the abbreviations for this compilation unit. */
2447 out_byte (0);
220e750f 2448}
4dc7ead9 2449
220e750f 2450/* Emit a description of this compilation unit for .debug_info. */
4dc7ead9 2451
220e750f 2452static void
49fced12
MW
2453out_debug_info (segT info_seg, segT abbrev_seg, segT line_seg, segT ranges_seg,
2454 symbolS *name_sym, symbolS *comp_dir_sym, symbolS *producer_sym)
220e750f 2455{
91d6fa6a 2456 expressionS exp;
220e750f 2457 symbolS *info_end;
14e777e0 2458 int sizeof_offset;
4dc7ead9 2459
031e3350 2460 memset (&exp, 0, sizeof exp);
91d6fa6a
NC
2461 sizeof_offset = out_header (info_seg, &exp);
2462 info_end = exp.X_add_symbol;
4dc7ead9 2463
220e750f 2464 /* DWARF version. */
fc0eebac 2465 out_two (DWARF2_VERSION);
4dc7ead9 2466
220e750f 2467 /* .debug_abbrev offset */
6174d9c8 2468 TC_DWARF2_EMIT_OFFSET (section_symbol (abbrev_seg), sizeof_offset);
4dc7ead9 2469
220e750f
RH
2470 /* Target address size. */
2471 out_byte (sizeof_address);
fac0d250 2472
220e750f
RH
2473 /* DW_TAG_compile_unit DIE abbrev */
2474 out_uleb128 (1);
fac0d250 2475
220e750f 2476 /* DW_AT_stmt_list */
413a266c
AM
2477 TC_DWARF2_EMIT_OFFSET (section_symbol (line_seg),
2478 (DWARF2_FORMAT (line_seg) == dwarf2_format_32bit
2479 ? 4 : 8));
fac0d250 2480
802f5d9e 2481 /* These two attributes are emitted if all of the code is contiguous. */
220e750f 2482 if (all_segs->next == NULL)
58b5739a 2483 {
220e750f 2484 /* DW_AT_low_pc */
91d6fa6a
NC
2485 exp.X_op = O_symbol;
2486 exp.X_add_symbol = all_segs->text_start;
2487 exp.X_add_number = 0;
2488 emit_expr (&exp, sizeof_address);
220e750f
RH
2489
2490 /* DW_AT_high_pc */
88ebb0a1
MW
2491 if (DWARF2_VERSION < 4)
2492 exp.X_op = O_symbol;
2493 else
2494 {
2495 exp.X_op = O_subtract;
2496 exp.X_op_symbol = all_segs->text_start;
2497 }
91d6fa6a
NC
2498 exp.X_add_symbol = all_segs->text_end;
2499 exp.X_add_number = 0;
2500 emit_expr (&exp, sizeof_address);
58b5739a 2501 }
802f5d9e
NC
2502 else
2503 {
eb1fe072
NC
2504 /* This attribute is emitted if the code is disjoint. */
2505 /* DW_AT_ranges. */
2506 TC_DWARF2_EMIT_OFFSET (section_symbol (ranges_seg), sizeof_offset);
802f5d9e 2507 }
58b5739a 2508
49fced12
MW
2509 /* DW_AT_name, DW_AT_comp_dir and DW_AT_producer. Symbols in .debug_str
2510 setup in out_debug_str below. */
2511 TC_DWARF2_EMIT_OFFSET (name_sym, sizeof_offset);
2512 TC_DWARF2_EMIT_OFFSET (comp_dir_sym, sizeof_offset);
2513 TC_DWARF2_EMIT_OFFSET (producer_sym, sizeof_offset);
2514
2515 /* DW_AT_language. Yes, this is probably not really MIPS, but the
2516 dwarf2 draft has no standard code for assembler. */
2517 out_two (DW_LANG_Mips_Assembler);
2518
e2b9a97e 2519 symbol_set_value_now (info_end);
49fced12
MW
2520}
2521
2522/* Emit the three debug strings needed in .debug_str and setup symbols
2523 to them for use in out_debug_info. */
2524static void
2525out_debug_str (segT str_seg, symbolS **name_sym, symbolS **comp_dir_sym,
2526 symbolS **producer_sym)
2527{
2528 char producer[128];
2529 const char *comp_dir;
2530 const char *dirname;
2531 char *p;
2532 int len;
5496f3c6 2533 int first_file = DWARF2_LINE_VERSION > 4 ? 0 : 1;
49fced12
MW
2534
2535 subseg_set (str_seg, 0);
2536
48b91938 2537 /* DW_AT_name. We don't have the actual file name that was present
5496f3c6 2538 on the command line, so assume files[first_file] is the main input file.
48b91938
RH
2539 We're not supposed to get called unless at least one line number
2540 entry was emitted, so this should always be defined. */
5c4e5fe6 2541 *name_sym = symbol_temp_new_now_octets ();
7fd3924a 2542 if (files_in_use == 0)
48b91938 2543 abort ();
5496f3c6 2544 if (files[first_file].dir)
a7ed1ca2 2545 {
5496f3c6 2546 dirname = remap_debug_filename (dirs[files[first_file].dir]);
3d6b762c 2547 len = strlen (dirname);
198f1251
TG
2548#ifdef TE_VMS
2549 /* Already has trailing slash. */
2550 p = frag_more (len);
2551 memcpy (p, dirname, len);
2552#else
a7ed1ca2 2553 p = frag_more (len + 1);
3d6b762c 2554 memcpy (p, dirname, len);
56487c55 2555 INSERT_DIR_SEPARATOR (p, len);
198f1251 2556#endif
a7ed1ca2 2557 }
5496f3c6 2558 len = strlen (files[first_file].filename) + 1;
48b91938 2559 p = frag_more (len);
5496f3c6 2560 memcpy (p, files[first_file].filename, len);
48b91938 2561
220e750f 2562 /* DW_AT_comp_dir */
5c4e5fe6 2563 *comp_dir_sym = symbol_temp_new_now_octets ();
3d6b762c 2564 comp_dir = remap_debug_filename (getpwd ());
220e750f
RH
2565 len = strlen (comp_dir) + 1;
2566 p = frag_more (len);
2567 memcpy (p, comp_dir, len);
fac0d250 2568
220e750f 2569 /* DW_AT_producer */
5c4e5fe6 2570 *producer_sym = symbol_temp_new_now_octets ();
220e750f
RH
2571 sprintf (producer, "GNU AS %s", VERSION);
2572 len = strlen (producer) + 1;
2573 p = frag_more (len);
2574 memcpy (p, producer, len);
fac0d250
RH
2575}
2576
1e9cc1c2
NC
2577void
2578dwarf2_init (void)
2579{
1e9cc1c2 2580 last_seg_ptr = &all_segs;
0ac2b354
AB
2581
2582 /* Select the default CIE version to produce here. The global
2583 starts with a value of -1 and will be modified to a valid value
2584 either by the user providing a command line option, or some
2585 targets will select their own default in md_after_parse_args. If
2586 we get here and the global still contains -1 then it is up to us
2587 to pick a sane default. The default we choose is 1, this is the
2588 CIE version gas has produced for a long time, and there seems no
2589 reason to change it yet. */
2590 if (flag_dwarf_cie_version == -1)
2591 flag_dwarf_cie_version = 1;
1e9cc1c2
NC
2592}
2593
2594
c6cb92c5
NS
2595/* Finish the dwarf2 debug sections. We emit .debug.line if there
2596 were any .file/.loc directives, or --gdwarf2 was given, or if the
df1c40a7
L
2597 file has a non-empty .debug_info section and an empty .debug_line
2598 section. If we emit .debug_line, and the .debug_info section is
2599 empty, we also emit .debug_info, .debug_aranges and .debug_abbrev.
2600 ALL_SEGS will be non-null if there were any .file/.loc directives,
2601 or --gdwarf2 was given and there were any located instructions
2602 emitted. */
c6cb92c5 2603
fac0d250 2604void
a2e22468 2605dwarf2_finish (void)
fac0d250 2606{
220e750f
RH
2607 segT line_seg;
2608 struct line_seg *s;
c6cb92c5
NS
2609 segT info_seg;
2610 int emit_other_sections = 0;
df1c40a7 2611 int empty_debug_line = 0;
c6cb92c5
NS
2612
2613 info_seg = bfd_get_section_by_name (stdoutput, ".debug_info");
2614 emit_other_sections = info_seg == NULL || !seg_not_empty_p (info_seg);
fac0d250 2615
df1c40a7
L
2616 line_seg = bfd_get_section_by_name (stdoutput, ".debug_line");
2617 empty_debug_line = line_seg == NULL || !seg_not_empty_p (line_seg);
2618
2619 /* We can't construct a new debug_line section if we already have one.
2620 Give an error. */
2621 if (all_segs && !empty_debug_line)
2622 as_fatal ("duplicate .debug_line sections");
2623
2624 if ((!all_segs && emit_other_sections)
2625 || (!emit_other_sections && !empty_debug_line))
2626 /* If there is no line information and no non-empty .debug_info
2627 section, or if there is both a non-empty .debug_info and a non-empty
2628 .debug_line, then we do nothing. */
220e750f 2629 return;
fac0d250 2630
220e750f 2631 /* Calculate the size of an address for the target machine. */
9605f328 2632 sizeof_address = DWARF2_ADDR_SIZE (stdoutput);
fac0d250 2633
220e750f
RH
2634 /* Create and switch to the line number section. */
2635 line_seg = subseg_new (".debug_line", 0);
61826503 2636 bfd_set_section_flags (line_seg, SEC_READONLY | SEC_DEBUGGING | SEC_OCTETS);
fac0d250 2637
220e750f 2638 /* For each subsection, chain the debug entries together. */
ee515fb7 2639 for (s = all_segs; s; s = s->next)
fac0d250 2640 {
91d6fa6a
NC
2641 struct line_subseg *lss = s->head;
2642 struct line_entry **ptail = lss->ptail;
220e750f 2643
62e6b7b3
AO
2644 /* Reset the initial view of the first subsection of the
2645 section. */
2646 if (lss->head && lss->head->loc.view)
2647 set_or_check_view (lss->head, NULL, NULL);
2648
91d6fa6a 2649 while ((lss = lss->next) != NULL)
220e750f 2650 {
62e6b7b3
AO
2651 /* Link the first view of subsequent subsections to the
2652 previous view. */
2653 if (lss->head && lss->head->loc.view)
2654 set_or_check_view (lss->head,
2655 !s->head ? NULL : (struct line_entry *)ptail,
2656 s->head ? s->head->head : NULL);
91d6fa6a
NC
2657 *ptail = lss->head;
2658 ptail = lss->ptail;
220e750f 2659 }
fac0d250 2660 }
85a39694 2661
220e750f 2662 out_debug_line (line_seg);
85a39694 2663
c6cb92c5 2664 /* If this is assembler generated line info, and there is no
49fced12
MW
2665 debug_info already, we need .debug_info, .debug_abbrev and
2666 .debug_str sections as well. */
c6cb92c5 2667 if (emit_other_sections)
220e750f
RH
2668 {
2669 segT abbrev_seg;
220e750f 2670 segT aranges_seg;
802f5d9e 2671 segT ranges_seg;
49fced12
MW
2672 segT str_seg;
2673 symbolS *name_sym, *comp_dir_sym, *producer_sym;
4dc7ead9 2674
9c2799c2 2675 gas_assert (all_segs);
7fd3924a 2676
220e750f
RH
2677 info_seg = subseg_new (".debug_info", 0);
2678 abbrev_seg = subseg_new (".debug_abbrev", 0);
2679 aranges_seg = subseg_new (".debug_aranges", 0);
49fced12 2680 str_seg = subseg_new (".debug_str", 0);
ef99799a 2681
61826503
CE
2682 bfd_set_section_flags (info_seg,
2683 SEC_READONLY | SEC_DEBUGGING | SEC_OCTETS);
2684 bfd_set_section_flags (abbrev_seg,
2685 SEC_READONLY | SEC_DEBUGGING | SEC_OCTETS);
2686 bfd_set_section_flags (aranges_seg,
2687 SEC_READONLY | SEC_DEBUGGING | SEC_OCTETS);
2688 bfd_set_section_flags (str_seg,
2689 SEC_READONLY | SEC_DEBUGGING | SEC_OCTETS
2690 | SEC_MERGE | SEC_STRINGS);
49fced12 2691 str_seg->entsize = 1;
ef99799a 2692
ee515fb7 2693 record_alignment (aranges_seg, ffs (2 * sizeof_address) - 1);
ef99799a 2694
802f5d9e
NC
2695 if (all_segs->next == NULL)
2696 ranges_seg = NULL;
2697 else
2698 {
2699 ranges_seg = subseg_new (".debug_ranges", 0);
61826503
CE
2700 bfd_set_section_flags (ranges_seg,
2701 SEC_READONLY | SEC_DEBUGGING | SEC_OCTETS);
802f5d9e
NC
2702 record_alignment (ranges_seg, ffs (2 * sizeof_address) - 1);
2703 out_debug_ranges (ranges_seg);
2704 }
2705
220e750f 2706 out_debug_aranges (aranges_seg, info_seg);
413a266c 2707 out_debug_abbrev (abbrev_seg, info_seg, line_seg);
49fced12
MW
2708 out_debug_str (str_seg, &name_sym, &comp_dir_sym, &producer_sym);
2709 out_debug_info (info_seg, abbrev_seg, line_seg, ranges_seg,
2710 name_sym, comp_dir_sym, producer_sym);
220e750f 2711 }
85a39694 2712}
ba8826a8
AO
2713
2714/* Perform any deferred checks pertaining to debug information. */
2715
2716void
2717dwarf2dbg_final_check (void)
2718{
2719 /* Perform reset-view checks. Don't evaluate view_assert_failed
2720 recursively: it could be very deep. It's a chain of adds, with
2721 each chain element pointing to the next in X_add_symbol, and
2722 holding the check value in X_op_symbol. */
2723 while (view_assert_failed)
2724 {
723dfee7 2725 expressionS *exp;
ba8826a8
AO
2726 symbolS *sym;
2727 offsetT failed;
2728
2729 gas_assert (!symbol_resolved_p (view_assert_failed));
2730
723dfee7 2731 exp = symbol_get_value_expression (view_assert_failed);
ba8826a8
AO
2732 sym = view_assert_failed;
2733
2734 /* If view_assert_failed looks like a compound check in the
2735 chain, break it up. */
723dfee7 2736 if (exp->X_op == O_add && exp->X_add_number == 0 && exp->X_unsigned)
ba8826a8 2737 {
723dfee7
HPN
2738 view_assert_failed = exp->X_add_symbol;
2739 sym = exp->X_op_symbol;
ba8826a8
AO
2740 }
2741 else
2742 view_assert_failed = NULL;
2743
2744 failed = resolve_symbol_value (sym);
2745 if (!symbol_resolved_p (sym) || failed)
2746 {
2747 as_bad (_("view number mismatch"));
2748 break;
2749 }
2750 }
2751}
This page took 1.053721 seconds and 4 git commands to generate.