mep: define gdbarch_pc_regnum instead of gdbarch_write_pc.
[deliverable/binutils-gdb.git] / gas / dwarf2dbg.c
CommitLineData
fac0d250 1/* dwarf2dbg.c - DWARF2 debug support
aa820537 2 Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
2da5c037 3 Free Software Foundation, Inc.
fac0d250
RH
4 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
5
6 This file is part of GAS, the GNU Assembler.
7
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
ec2655a6 10 the Free Software Foundation; either version 3, or (at your option)
fac0d250
RH
11 any later version.
12
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
21 02110-1301, USA. */
fac0d250 22
89b66cde 23/* Logical line numbers can be controlled by the compiler via the
bd0eb99b 24 following directives:
fac0d250
RH
25
26 .file FILENO "file.c"
ecea7679 27 .loc FILENO LINENO [COLUMN] [basic_block] [prologue_end] \
92846e72
CC
28 [epilogue_begin] [is_stmt VALUE] [isa VALUE] \
29 [discriminator VALUE]
bd0eb99b 30*/
fac0d250 31
fac0d250 32#include "as.h"
bd0eb99b 33#include "safe-ctype.h"
92eb7b32 34
42dbf88c
NC
35#ifdef HAVE_LIMITS_H
36#include <limits.h>
92625c16 37#else
6717891c
NC
38#ifdef HAVE_SYS_PARAM_H
39#include <sys/param.h>
40#endif
6256f9dd 41#ifndef INT_MAX
ee515fb7 42#define INT_MAX (int) (((unsigned) (-1)) >> 1)
42dbf88c 43#endif
b8f080d6 44#endif
42dbf88c 45
70658493 46#include "dwarf2dbg.h"
a7ed1ca2 47#include <filenames.h>
70658493 48
56487c55
NC
49#ifdef HAVE_DOS_BASED_FILE_SYSTEM
50/* We need to decide which character to use as a directory separator.
51 Just because HAVE_DOS_BASED_FILE_SYSTEM is defined, it does not
52 necessarily mean that the backslash character is the one to use.
53 Some environments, eg Cygwin, can support both naming conventions.
54 So we use the heuristic that we only need to use the backslash if
55 the path is an absolute path starting with a DOS style drive
56 selector. eg C: or D: */
57# define INSERT_DIR_SEPARATOR(string, offset) \
58 do \
59 { \
60 if (offset > 1 \
7fd3924a
AM
61 && string[0] != 0 \
62 && string[1] == ':') \
56487c55
NC
63 string [offset] = '\\'; \
64 else \
65 string [offset] = '/'; \
66 } \
67 while (0)
68#else
69# define INSERT_DIR_SEPARATOR(string, offset) string[offset] = '/'
70#endif
71
14e777e0 72#ifndef DWARF2_FORMAT
413a266c 73# define DWARF2_FORMAT(SEC) dwarf2_format_32bit
14e777e0
KB
74#endif
75
9605f328 76#ifndef DWARF2_ADDR_SIZE
e4475e39 77# define DWARF2_ADDR_SIZE(bfd) (bfd_arch_bits_per_address (bfd) / 8)
9605f328
AO
78#endif
79
01e1a5bc
NC
80#ifndef DWARF2_FILE_NAME
81#define DWARF2_FILE_NAME(FILENAME, DIRNAME) FILENAME
82#endif
83
84#ifndef DWARF2_FILE_TIME_NAME
85#define DWARF2_FILE_TIME_NAME(FILENAME,DIRNAME) 0
86#endif
87
88#ifndef DWARF2_FILE_SIZE_NAME
89#define DWARF2_FILE_SIZE_NAME(FILENAME,DIRNAME) 0
90#endif
91
fc0eebac
TG
92#ifndef DWARF2_VERSION
93#define DWARF2_VERSION 2
94#endif
95
88ebb0a1
MW
96/* The .debug_aranges version has been 2 in DWARF version 2, 3 and 4. */
97#ifndef DWARF2_ARANGES_VERSION
98#define DWARF2_ARANGES_VERSION 2
99#endif
100
101/* This implementation output version 2 .debug_line information. */
102#ifndef DWARF2_LINE_VERSION
103#define DWARF2_LINE_VERSION 2
104#endif
105
fac0d250
RH
106#include "subsegs.h"
107
fa8f86ff 108#include "dwarf2.h"
fac0d250 109
fac0d250
RH
110/* Since we can't generate the prolog until the body is complete, we
111 use three different subsegments for .debug_line: one holding the
112 prolog, one for the directory and filename info, and one for the
113 body ("statement program"). */
114#define DL_PROLOG 0
115#define DL_FILES 1
116#define DL_BODY 2
117
1737851b
BW
118/* If linker relaxation might change offsets in the code, the DWARF special
119 opcodes and variable-length operands cannot be used. If this macro is
120 nonzero, use the DW_LNS_fixed_advance_pc opcode instead. */
121#ifndef DWARF2_USE_FIXED_ADVANCE_PC
453dc3f0 122# define DWARF2_USE_FIXED_ADVANCE_PC linkrelax
1737851b
BW
123#endif
124
fac0d250
RH
125/* First special line opcde - leave room for the standard opcodes.
126 Note: If you want to change this, you'll have to update the
127 "standard_opcode_lengths" table that is emitted below in
bd0eb99b
RH
128 out_debug_line(). */
129#define DWARF2_LINE_OPCODE_BASE 13
fac0d250
RH
130
131#ifndef DWARF2_LINE_BASE
132 /* Minimum line offset in a special line info. opcode. This value
133 was chosen to give a reasonable range of values. */
134# define DWARF2_LINE_BASE -5
135#endif
136
137/* Range of line offsets in a special line info. opcode. */
138#ifndef DWARF2_LINE_RANGE
139# define DWARF2_LINE_RANGE 14
140#endif
141
142#ifndef DWARF2_LINE_MIN_INSN_LENGTH
143 /* Define the architecture-dependent minimum instruction length (in
144 bytes). This value should be rather too small than too big. */
4dc7ead9 145# define DWARF2_LINE_MIN_INSN_LENGTH 1
fac0d250
RH
146#endif
147
bd0eb99b 148/* Flag that indicates the initial value of the is_stmt_start flag. */
fac0d250
RH
149#define DWARF2_LINE_DEFAULT_IS_STMT 1
150
cb30237e 151/* Given a special op, return the line skip amount. */
fac0d250
RH
152#define SPECIAL_LINE(op) \
153 (((op) - DWARF2_LINE_OPCODE_BASE)%DWARF2_LINE_RANGE + DWARF2_LINE_BASE)
154
155/* Given a special op, return the address skip amount (in units of
156 DWARF2_LINE_MIN_INSN_LENGTH. */
157#define SPECIAL_ADDR(op) (((op) - DWARF2_LINE_OPCODE_BASE)/DWARF2_LINE_RANGE)
158
cb30237e 159/* The maximum address skip amount that can be encoded with a special op. */
fac0d250
RH
160#define MAX_SPECIAL_ADDR_DELTA SPECIAL_ADDR(255)
161
ee515fb7 162struct line_entry {
220e750f 163 struct line_entry *next;
07a53e5c 164 symbolS *label;
220e750f 165 struct dwarf2_line_info loc;
e6c774b4 166};
fac0d250 167
ee515fb7 168struct line_subseg {
220e750f
RH
169 struct line_subseg *next;
170 subsegT subseg;
171 struct line_entry *head;
172 struct line_entry **ptail;
173};
353e2c69 174
ee515fb7 175struct line_seg {
220e750f
RH
176 struct line_seg *next;
177 segT seg;
178 struct line_subseg *head;
179 symbolS *text_start;
180 symbolS *text_end;
181};
182
183/* Collects data for all line table entries during assembly. */
184static struct line_seg *all_segs;
1e9cc1c2
NC
185/* Hash used to quickly lookup a segment by name, avoiding the need to search
186 through the all_segs list. */
187static struct hash_control *all_segs_hash;
188static struct line_seg **last_seg_ptr;
220e750f 189
ee515fb7 190struct file_entry {
a7ed1ca2 191 const char *filename;
220e750f
RH
192 unsigned int dir;
193};
194
195/* Table of files used by .debug_line. */
196static struct file_entry *files;
197static unsigned int files_in_use;
198static unsigned int files_allocated;
199
a7ed1ca2
NC
200/* Table of directories used by .debug_line. */
201static char **dirs;
202static unsigned int dirs_in_use;
203static unsigned int dirs_allocated;
204
b34976b6 205/* TRUE when we've seen a .loc directive recently. Used to avoid
220e750f 206 doing work when there's nothing to do. */
1eee4adc 207bfd_boolean dwarf2_loc_directive_seen;
220e750f 208
07a53e5c
RH
209/* TRUE when we're supposed to set the basic block mark whenever a
210 label is seen. */
211bfd_boolean dwarf2_loc_mark_labels;
212
220e750f 213/* Current location as indicated by the most recent .loc directive. */
bd0eb99b
RH
214static struct dwarf2_line_info current = {
215 1, 1, 0, 0,
92846e72
CC
216 DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0,
217 0
bd0eb99b 218};
220e750f 219
5045d766
RS
220/* Lines that are at the same location as CURRENT, and which are waiting
221 for a label. */
222static struct line_entry *pending_lines, **pending_lines_tail = &pending_lines;
223
220e750f
RH
224/* The size of an address on the target. */
225static unsigned int sizeof_address;
226\f
a2e22468 227static unsigned int get_filenum (const char *, unsigned int);
413a266c 228
c5c0a210 229#ifndef TC_DWARF2_EMIT_OFFSET
802f5d9e 230#define TC_DWARF2_EMIT_OFFSET generic_dwarf2_emit_offset
c5c0a210 231
6174d9c8
RH
232/* Create an offset to .dwarf2_*. */
233
234static void
a2e22468 235generic_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
6174d9c8 236{
91d6fa6a 237 expressionS exp;
6174d9c8 238
91d6fa6a
NC
239 exp.X_op = O_symbol;
240 exp.X_add_symbol = symbol;
241 exp.X_add_number = 0;
242 emit_expr (&exp, size);
6174d9c8 243}
c5c0a210 244#endif
6174d9c8 245
220e750f
RH
246/* Find or create an entry for SEG+SUBSEG in ALL_SEGS. */
247
248static struct line_subseg *
a2e22468 249get_line_subseg (segT seg, subsegT subseg)
220e750f
RH
250{
251 static segT last_seg;
252 static subsegT last_subseg;
253 static struct line_subseg *last_line_subseg;
254
1e9cc1c2 255 struct line_seg *s;
91d6fa6a 256 struct line_subseg **pss, *lss;
fac0d250 257
220e750f
RH
258 if (seg == last_seg && subseg == last_subseg)
259 return last_line_subseg;
260
1e9cc1c2
NC
261 s = (struct line_seg *) hash_find (all_segs_hash, seg->name);
262 if (s == NULL)
263 {
264 s = (struct line_seg *) xmalloc (sizeof (*s));
265 s->next = NULL;
266 s->seg = seg;
267 s->head = NULL;
268 *last_seg_ptr = s;
269 last_seg_ptr = &s->next;
270 hash_insert (all_segs_hash, seg->name, s);
271 }
272 gas_assert (seg == s->seg);
220e750f 273
91d6fa6a 274 for (pss = &s->head; (lss = *pss) != NULL ; pss = &lss->next)
fac0d250 275 {
91d6fa6a 276 if (lss->subseg == subseg)
ee515fb7 277 goto found_subseg;
91d6fa6a 278 if (lss->subseg > subseg)
220e750f 279 break;
fac0d250 280 }
220e750f 281
91d6fa6a
NC
282 lss = (struct line_subseg *) xmalloc (sizeof (*lss));
283 lss->next = *pss;
284 lss->subseg = subseg;
285 lss->head = NULL;
286 lss->ptail = &lss->head;
287 *pss = lss;
220e750f
RH
288
289 found_subseg:
290 last_seg = seg;
291 last_subseg = subseg;
91d6fa6a 292 last_line_subseg = lss;
220e750f 293
91d6fa6a 294 return lss;
fac0d250
RH
295}
296
5045d766 297/* Push LOC onto the pending lines list. */
07a53e5c
RH
298
299static void
5045d766 300dwarf2_push_line (struct dwarf2_line_info *loc)
07a53e5c 301{
07a53e5c
RH
302 struct line_entry *e;
303
304 e = (struct line_entry *) xmalloc (sizeof (*e));
305 e->next = NULL;
5045d766 306 e->label = NULL;
07a53e5c
RH
307 e->loc = *loc;
308
5045d766
RS
309 *pending_lines_tail = e;
310 pending_lines_tail = &(*pending_lines_tail)->next;
311}
312
313/* Emit all pending line information. LABEL is the label with which the
314 lines should be associated, or null if they should be associated with
315 the current position. */
316
317static void
318dwarf2_flush_pending_lines (symbolS *label)
319{
320 if (pending_lines)
321 {
322 struct line_subseg *lss;
323 struct line_entry *e;
324
325 if (!label)
48b07401 326 label = symbol_temp_new_now ();
5045d766
RS
327
328 for (e = pending_lines; e; e = e->next)
329 e->label = label;
330
331 lss = get_line_subseg (now_seg, now_subseg);
332 *lss->ptail = pending_lines;
333 lss->ptail = pending_lines_tail;
334
335 pending_lines = NULL;
336 pending_lines_tail = &pending_lines;
337 }
07a53e5c
RH
338}
339
436d9e46 340/* Record an entry for LOC occurring at OFS within the current fragment. */
353e2c69 341
220e750f 342void
a2e22468 343dwarf2_gen_line_info (addressT ofs, struct dwarf2_line_info *loc)
fac0d250 344{
1ea5c325
MS
345 static unsigned int line = -1;
346 static unsigned int filenum = -1;
220e750f
RH
347
348 /* Early out for as-yet incomplete location information. */
349 if (loc->filenum == 0 || loc->line == 0)
350 return;
351
ffa554ed
GK
352 /* Don't emit sequences of line symbols for the same line when the
353 symbols apply to assembler code. It is necessary to emit
354 duplicate line symbols when a compiler asks for them, because GDB
355 uses them to determine the end of the prologue. */
d1a6c242 356 if (debug_type == DEBUG_DWARF2
ffa554ed 357 && line == loc->line && filenum == loc->filenum)
1ea5c325
MS
358 return;
359
360 line = loc->line;
361 filenum = loc->filenum;
362
5045d766 363 dwarf2_push_line (loc);
453dc3f0
NC
364 if (linkrelax)
365 {
366 char name[120];
367
368 /* Use a non-fake name for the line number location,
369 so that it can be referred to by relocations. */
370 sprintf (name, ".Loc.%u.%u", line, filenum);
371 dwarf2_flush_pending_lines (symbol_new (name, now_seg, ofs, frag_now));
372 }
373 else
374 dwarf2_flush_pending_lines (symbol_temp_new (now_seg, ofs, frag_now));
220e750f 375}
fac0d250 376
ecea7679
RH
377/* Returns the current source information. If .file directives have
378 been encountered, the info for the corresponding source file is
379 returned. Otherwise, the info for the assembly source file is
380 returned. */
381
220e750f 382void
a2e22468 383dwarf2_where (struct dwarf2_line_info *line)
220e750f
RH
384{
385 if (debug_type == DEBUG_DWARF2)
fac0d250 386 {
220e750f
RH
387 char *filename;
388 as_where (&filename, &line->line);
a7ed1ca2 389 line->filenum = get_filenum (filename, 0);
220e750f 390 line->column = 0;
bd0eb99b 391 line->flags = DWARF2_FLAG_IS_STMT;
ecea7679 392 line->isa = current.isa;
92846e72 393 line->discriminator = current.discriminator;
fac0d250 394 }
220e750f
RH
395 else
396 *line = current;
fac0d250
RH
397}
398
7fd3924a 399/* A hook to allow the target backend to inform the line number state
ecea7679
RH
400 machine of isa changes when assembler debug info is enabled. */
401
402void
403dwarf2_set_isa (unsigned int isa)
404{
405 current.isa = isa;
406}
407
220e750f
RH
408/* Called for each machine instruction, or relatively atomic group of
409 machine instructions (ie built-in macro). The instruction or group
410 is SIZE bytes in length. If dwarf2 line number generation is called
411 for, emit a line statement appropriately. */
353e2c69 412
220e750f 413void
a2e22468 414dwarf2_emit_insn (int size)
fac0d250 415{
220e750f 416 struct dwarf2_line_info loc;
fac0d250 417
7fd3924a 418 if (!dwarf2_loc_directive_seen && debug_type != DEBUG_DWARF2)
220e750f 419 return;
7fd3924a
AM
420
421 dwarf2_where (&loc);
b6675117 422
220e750f 423 dwarf2_gen_line_info (frag_now_fix () - size, &loc);
661ba50f
BW
424 dwarf2_consume_line_info ();
425}
426
427/* Called after the current line information has been either used with
428 dwarf2_gen_line_info or saved with a machine instruction for later use.
429 This resets the state of the line number information to reflect that
430 it has been used. */
431
432void
433dwarf2_consume_line_info (void)
434{
5045d766
RS
435 /* If the consumer has stashed the current location away for later use,
436 assume that any earlier location information should be associated
437 with ".". */
438 dwarf2_flush_pending_lines (NULL);
439
661ba50f
BW
440 /* Unless we generate DWARF2 debugging information for each
441 assembler line, we only emit one line symbol for one LOC. */
7fd3924a 442 dwarf2_loc_directive_seen = FALSE;
bd0eb99b
RH
443
444 current.flags &= ~(DWARF2_FLAG_BASIC_BLOCK
445 | DWARF2_FLAG_PROLOGUE_END
446 | DWARF2_FLAG_EPILOGUE_BEGIN);
92846e72 447 current.discriminator = 0;
220e750f 448}
fac0d250 449
07a53e5c
RH
450/* Called for each (preferably code) label. If dwarf2_loc_mark_labels
451 is enabled, emit a basic block marker. */
452
453void
454dwarf2_emit_label (symbolS *label)
455{
456 struct dwarf2_line_info loc;
457
458 if (!dwarf2_loc_mark_labels)
459 return;
460 if (S_GET_SEGMENT (label) != now_seg)
461 return;
462 if (!(bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE))
463 return;
7fd3924a
AM
464 if (files_in_use == 0 && debug_type != DEBUG_DWARF2)
465 return;
466
467 dwarf2_where (&loc);
07a53e5c
RH
468
469 loc.flags |= DWARF2_FLAG_BASIC_BLOCK;
470
5045d766
RS
471 dwarf2_push_line (&loc);
472 dwarf2_flush_pending_lines (label);
7fd3924a 473 dwarf2_consume_line_info ();
07a53e5c
RH
474}
475
a7ed1ca2
NC
476/* Get a .debug_line file number for FILENAME. If NUM is nonzero,
477 allocate it on that file table slot, otherwise return the first
478 empty one. */
220e750f
RH
479
480static unsigned int
a2e22468 481get_filenum (const char *filename, unsigned int num)
220e750f 482{
a7ed1ca2
NC
483 static unsigned int last_used, last_used_dir_len;
484 const char *file;
485 size_t dir_len;
486 unsigned int i, dir;
220e750f 487
a7ed1ca2
NC
488 if (num == 0 && last_used)
489 {
490 if (! files[last_used].dir
8b6efd89 491 && filename_cmp (filename, files[last_used].filename) == 0)
a7ed1ca2
NC
492 return last_used;
493 if (files[last_used].dir
8b6efd89
KT
494 && filename_ncmp (filename, dirs[files[last_used].dir],
495 last_used_dir_len) == 0
a7ed1ca2 496 && IS_DIR_SEPARATOR (filename [last_used_dir_len])
8b6efd89
KT
497 && filename_cmp (filename + last_used_dir_len + 1,
498 files[last_used].filename) == 0)
a7ed1ca2
NC
499 return last_used;
500 }
220e750f 501
a7ed1ca2
NC
502 file = lbasename (filename);
503 /* Don't make empty string from / or A: from A:/ . */
504#ifdef HAVE_DOS_BASED_FILE_SYSTEM
505 if (file <= filename + 3)
506 file = filename;
507#else
508 if (file == filename + 1)
509 file = filename;
510#endif
511 dir_len = file - filename;
512
513 dir = 0;
514 if (dir_len)
515 {
01e1a5bc 516#ifndef DWARF2_DIR_SHOULD_END_WITH_SEPARATOR
a7ed1ca2 517 --dir_len;
01e1a5bc 518#endif
a7ed1ca2 519 for (dir = 1; dir < dirs_in_use; ++dir)
8b6efd89 520 if (filename_ncmp (filename, dirs[dir], dir_len) == 0
a7ed1ca2
NC
521 && dirs[dir][dir_len] == '\0')
522 break;
523
524 if (dir >= dirs_in_use)
525 {
526 if (dir >= dirs_allocated)
527 {
528 dirs_allocated = dir + 32;
529 dirs = (char **)
530 xrealloc (dirs, (dir + 32) * sizeof (const char *));
531 }
532
1e9cc1c2 533 dirs[dir] = (char *) xmalloc (dir_len + 1);
a7ed1ca2
NC
534 memcpy (dirs[dir], filename, dir_len);
535 dirs[dir][dir_len] = '\0';
536 dirs_in_use = dir + 1;
537 }
538 }
539
540 if (num == 0)
541 {
542 for (i = 1; i < files_in_use; ++i)
543 if (files[i].dir == dir
88b4ca40 544 && files[i].filename
8b6efd89 545 && filename_cmp (file, files[i].filename) == 0)
a7ed1ca2
NC
546 {
547 last_used = i;
548 last_used_dir_len = dir_len;
549 return i;
550 }
551 }
552 else
553 i = num;
220e750f
RH
554
555 if (i >= files_allocated)
fac0d250 556 {
249e3833
RH
557 unsigned int old = files_allocated;
558
220e750f
RH
559 files_allocated = i + 32;
560 files = (struct file_entry *)
ee515fb7 561 xrealloc (files, (i + 32) * sizeof (struct file_entry));
249e3833
RH
562
563 memset (files + old, 0, (i + 32 - old) * sizeof (struct file_entry));
fac0d250
RH
564 }
565
a7ed1ca2
NC
566 files[i].filename = num ? file : xstrdup (file);
567 files[i].dir = dir;
10cd14b4
AM
568 if (files_in_use < i + 1)
569 files_in_use = i + 1;
220e750f 570 last_used = i;
a7ed1ca2 571 last_used_dir_len = dir_len;
220e750f
RH
572
573 return i;
574}
fac0d250 575
ecb4347a
DJ
576/* Handle two forms of .file directive:
577 - Pass .file "source.c" to s_app_file
578 - Handle .file 1 "source.c" by adding an entry to the DWARF-2 file table
220e750f 579
ecb4347a
DJ
580 If an entry is added to the file table, return a pointer to the filename. */
581
582char *
a2e22468 583dwarf2_directive_file (int dummy ATTRIBUTE_UNUSED)
220e750f
RH
584{
585 offsetT num;
e46d99eb 586 char *filename;
220e750f
RH
587 int filename_len;
588
589 /* Continue to accept a bare string and pass it off. */
590 SKIP_WHITESPACE ();
591 if (*input_line_pointer == '"')
fac0d250 592 {
220e750f 593 s_app_file (0);
ecb4347a 594 return NULL;
fac0d250
RH
595 }
596
220e750f
RH
597 num = get_absolute_expression ();
598 filename = demand_copy_C_string (&filename_len);
bd0eb99b
RH
599 if (filename == NULL)
600 return NULL;
220e750f
RH
601 demand_empty_rest_of_line ();
602
249e3833 603 if (num < 1)
fac0d250 604 {
0e389e77 605 as_bad (_("file number less than one"));
ecb4347a 606 return NULL;
fac0d250
RH
607 }
608
7cadeb2c
AM
609 /* A .file directive implies compiler generated debug information is
610 being supplied. Turn off gas generated debug info. */
611 debug_type = DEBUG_NONE;
612
0e1a166b 613 if (num < (int) files_in_use && files[num].filename != 0)
220e750f 614 {
0e389e77 615 as_bad (_("file number %ld already allocated"), (long) num);
ecb4347a 616 return NULL;
249e3833 617 }
220e750f 618
a7ed1ca2 619 get_filenum (filename, num);
ecb4347a
DJ
620
621 return filename;
fac0d250
RH
622}
623
220e750f 624void
a2e22468 625dwarf2_directive_loc (int dummy ATTRIBUTE_UNUSED)
220e750f 626{
ecea7679
RH
627 offsetT filenum, line;
628
851feff8
DJ
629 /* If we see two .loc directives in a row, force the first one to be
630 output now. */
7cadeb2c 631 if (dwarf2_loc_directive_seen)
5045d766 632 dwarf2_push_line (&current);
851feff8 633
ecea7679
RH
634 filenum = get_absolute_expression ();
635 SKIP_WHITESPACE ();
636 line = get_absolute_expression ();
637
638 if (filenum < 1)
639 {
640 as_bad (_("file number less than one"));
641 return;
642 }
643 if (filenum >= (int) files_in_use || files[filenum].filename == 0)
644 {
645 as_bad (_("unassigned file number %ld"), (long) filenum);
646 return;
647 }
648
649 current.filenum = filenum;
650 current.line = line;
92846e72 651 current.discriminator = 0;
ecea7679
RH
652
653#ifndef NO_LISTING
654 if (listing)
655 {
656 if (files[filenum].dir)
657 {
658 size_t dir_len = strlen (dirs[files[filenum].dir]);
659 size_t file_len = strlen (files[filenum].filename);
660 char *cp = (char *) alloca (dir_len + 1 + file_len + 1);
661
662 memcpy (cp, dirs[files[filenum].dir], dir_len);
56487c55 663 INSERT_DIR_SEPARATOR (cp, dir_len);
ecea7679
RH
664 memcpy (cp + dir_len + 1, files[filenum].filename, file_len);
665 cp[dir_len + file_len + 1] = '\0';
666 listing_source_file (cp);
667 }
668 else
669 listing_source_file (files[filenum].filename);
670 listing_source_line (line);
671 }
672#endif
673
220e750f 674 SKIP_WHITESPACE ();
ecea7679
RH
675 if (ISDIGIT (*input_line_pointer))
676 {
677 current.column = get_absolute_expression ();
678 SKIP_WHITESPACE ();
679 }
680
681 while (ISALPHA (*input_line_pointer))
220e750f 682 {
bd0eb99b
RH
683 char *p, c;
684 offsetT value;
685
686 p = input_line_pointer;
687 c = get_symbol_end ();
688
689 if (strcmp (p, "basic_block") == 0)
690 {
691 current.flags |= DWARF2_FLAG_BASIC_BLOCK;
692 *input_line_pointer = c;
693 }
694 else if (strcmp (p, "prologue_end") == 0)
695 {
696 current.flags |= DWARF2_FLAG_PROLOGUE_END;
697 *input_line_pointer = c;
698 }
699 else if (strcmp (p, "epilogue_begin") == 0)
700 {
701 current.flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
702 *input_line_pointer = c;
703 }
704 else if (strcmp (p, "is_stmt") == 0)
705 {
706 *input_line_pointer = c;
707 value = get_absolute_expression ();
708 if (value == 0)
709 current.flags &= ~DWARF2_FLAG_IS_STMT;
710 else if (value == 1)
711 current.flags |= DWARF2_FLAG_IS_STMT;
712 else
ecea7679
RH
713 {
714 as_bad (_("is_stmt value not 0 or 1"));
715 return;
716 }
bd0eb99b
RH
717 }
718 else if (strcmp (p, "isa") == 0)
719 {
7fd3924a 720 *input_line_pointer = c;
bd0eb99b 721 value = get_absolute_expression ();
ecea7679 722 if (value >= 0)
bd0eb99b 723 current.isa = value;
ecea7679
RH
724 else
725 {
726 as_bad (_("isa number less than zero"));
727 return;
728 }
bd0eb99b 729 }
92846e72
CC
730 else if (strcmp (p, "discriminator") == 0)
731 {
732 *input_line_pointer = c;
733 value = get_absolute_expression ();
734 if (value >= 0)
735 current.discriminator = value;
736 else
737 {
738 as_bad (_("discriminator less than zero"));
739 return;
740 }
741 }
bd0eb99b
RH
742 else
743 {
ecea7679 744 as_bad (_("unknown .loc sub-directive `%s'"), p);
7fd3924a 745 *input_line_pointer = c;
bd0eb99b
RH
746 return;
747 }
748
ecea7679 749 SKIP_WHITESPACE ();
bd0eb99b
RH
750 }
751
752 demand_empty_rest_of_line ();
1eee4adc 753 dwarf2_loc_directive_seen = TRUE;
7cadeb2c 754 debug_type = DEBUG_NONE;
220e750f 755}
07a53e5c
RH
756
757void
758dwarf2_directive_loc_mark_labels (int dummy ATTRIBUTE_UNUSED)
759{
760 offsetT value = get_absolute_expression ();
761
762 if (value != 0 && value != 1)
763 {
764 as_bad (_("expected 0 or 1"));
765 ignore_rest_of_line ();
766 }
767 else
768 {
769 dwarf2_loc_mark_labels = value != 0;
770 demand_empty_rest_of_line ();
771 }
772}
220e750f
RH
773\f
774static struct frag *
a2e22468 775first_frag_for_seg (segT seg)
220e750f 776{
c9049d30 777 return seg_info (seg)->frchainP->frch_root;
220e750f
RH
778}
779
780static struct frag *
a2e22468 781last_frag_for_seg (segT seg)
220e750f 782{
c9049d30 783 frchainS *f = seg_info (seg)->frchainP;
220e750f 784
c9049d30
AM
785 while (f->frch_next != NULL)
786 f = f->frch_next;
220e750f 787
c9049d30 788 return f->frch_last;
220e750f
RH
789}
790\f
791/* Emit a single byte into the current segment. */
792
793static inline void
a2e22468 794out_byte (int byte)
220e750f
RH
795{
796 FRAG_APPEND_1_CHAR (byte);
797}
798
799/* Emit a statement program opcode into the current segment. */
800
801static inline void
a2e22468 802out_opcode (int opc)
220e750f
RH
803{
804 out_byte (opc);
805}
806
807/* Emit a two-byte word into the current segment. */
808
809static inline void
a2e22468 810out_two (int data)
220e750f
RH
811{
812 md_number_to_chars (frag_more (2), data, 2);
813}
814
815/* Emit a four byte word into the current segment. */
816
817static inline void
a2e22468 818out_four (int data)
220e750f
RH
819{
820 md_number_to_chars (frag_more (4), data, 4);
821}
822
823/* Emit an unsigned "little-endian base 128" number. */
824
fac0d250 825static void
a2e22468 826out_uleb128 (addressT value)
220e750f
RH
827{
828 output_leb128 (frag_more (sizeof_leb128 (value, 0)), value, 0);
829}
830
92846e72
CC
831/* Emit a signed "little-endian base 128" number. */
832
833static void
834out_leb128 (addressT value)
835{
836 output_leb128 (frag_more (sizeof_leb128 (value, 1)), value, 1);
837}
838
220e750f
RH
839/* Emit a tuple for .debug_abbrev. */
840
841static inline void
a2e22468 842out_abbrev (int name, int form)
fac0d250 843{
220e750f
RH
844 out_uleb128 (name);
845 out_uleb128 (form);
846}
fac0d250 847
220e750f 848/* Get the size of a fragment. */
fac0d250 849
220e750f 850static offsetT
c9049d30 851get_frag_fix (fragS *frag, segT seg)
220e750f
RH
852{
853 frchainS *fr;
854
855 if (frag->fr_next)
856 return frag->fr_fix;
857
858 /* If a fragment is the last in the chain, special measures must be
859 taken to find its size before relaxation, since it may be pending
860 on some subsegment chain. */
c9049d30 861 for (fr = seg_info (seg)->frchainP; fr; fr = fr->frch_next)
220e750f 862 if (fr->frch_last == frag)
c5c0a210 863 return (char *) obstack_next_free (&fr->frch_obstack) - frag->fr_literal;
220e750f
RH
864
865 abort ();
866}
fac0d250 867
220e750f 868/* Set an absolute address (may result in a relocation entry). */
fac0d250 869
220e750f 870static void
07a53e5c 871out_set_addr (symbolS *sym)
220e750f 872{
91d6fa6a 873 expressionS exp;
9e3af0e7 874
fac0d250 875 out_opcode (DW_LNS_extended_op);
220e750f 876 out_uleb128 (sizeof_address + 1);
fac0d250
RH
877
878 out_opcode (DW_LNE_set_address);
91d6fa6a
NC
879 exp.X_op = O_symbol;
880 exp.X_add_symbol = sym;
881 exp.X_add_number = 0;
882 emit_expr (&exp, sizeof_address);
fac0d250
RH
883}
884
a2e22468 885static void scale_addr_delta (addressT *);
c8970b4b 886
a3b75434 887static void
d7342424 888scale_addr_delta (addressT *addr_delta)
a3b75434
DD
889{
890 static int printed_this = 0;
8fbf7334 891 if (DWARF2_LINE_MIN_INSN_LENGTH > 1)
a3b75434 892 {
8fbf7334
JL
893 if (*addr_delta % DWARF2_LINE_MIN_INSN_LENGTH != 0 && !printed_this)
894 {
895 as_bad("unaligned opcodes detected in executable segment");
896 printed_this = 1;
897 }
898 *addr_delta /= DWARF2_LINE_MIN_INSN_LENGTH;
a3b75434 899 }
a3b75434 900}
a3b75434 901
220e750f
RH
902/* Encode a pair of line and address skips as efficiently as possible.
903 Note that the line skip is signed, whereas the address skip is unsigned.
353e2c69 904
220e750f
RH
905 The following two routines *must* be kept in sync. This is
906 enforced by making emit_inc_line_addr abort if we do not emit
907 exactly the expected number of bytes. */
908
909static int
a2e22468 910size_inc_line_addr (int line_delta, addressT addr_delta)
fac0d250 911{
220e750f
RH
912 unsigned int tmp, opcode;
913 int len = 0;
fac0d250 914
220e750f 915 /* Scale the address delta by the minimum instruction length. */
a3b75434 916 scale_addr_delta (&addr_delta);
220e750f
RH
917
918 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence.
919 We cannot use special opcodes here, since we want the end_sequence
920 to emit the matrix entry. */
921 if (line_delta == INT_MAX)
fac0d250 922 {
220e750f
RH
923 if (addr_delta == MAX_SPECIAL_ADDR_DELTA)
924 len = 1;
fac0d250 925 else
220e750f
RH
926 len = 1 + sizeof_leb128 (addr_delta, 0);
927 return len + 3;
fac0d250 928 }
fac0d250 929
220e750f
RH
930 /* Bias the line delta by the base. */
931 tmp = line_delta - DWARF2_LINE_BASE;
fac0d250 932
220e750f
RH
933 /* If the line increment is out of range of a special opcode, we
934 must encode it with DW_LNS_advance_line. */
935 if (tmp >= DWARF2_LINE_RANGE)
936 {
937 len = 1 + sizeof_leb128 (line_delta, 1);
938 line_delta = 0;
939 tmp = 0 - DWARF2_LINE_BASE;
940 }
fac0d250 941
220e750f
RH
942 /* Bias the opcode by the special opcode base. */
943 tmp += DWARF2_LINE_OPCODE_BASE;
353e2c69 944
220e750f
RH
945 /* Avoid overflow when addr_delta is large. */
946 if (addr_delta < 256 + MAX_SPECIAL_ADDR_DELTA)
947 {
948 /* Try using a special opcode. */
949 opcode = tmp + addr_delta * DWARF2_LINE_RANGE;
950 if (opcode <= 255)
951 return len + 1;
952
953 /* Try using DW_LNS_const_add_pc followed by special op. */
954 opcode = tmp + (addr_delta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
955 if (opcode <= 255)
956 return len + 2;
957 }
958
959 /* Otherwise use DW_LNS_advance_pc. */
960 len += 1 + sizeof_leb128 (addr_delta, 0);
961
962 /* DW_LNS_copy or special opcode. */
963 len += 1;
964
965 return len;
966}
fac0d250 967
220e750f 968static void
a2e22468 969emit_inc_line_addr (int line_delta, addressT addr_delta, char *p, int len)
220e750f
RH
970{
971 unsigned int tmp, opcode;
972 int need_copy = 0;
973 char *end = p + len;
fac0d250 974
07a53e5c
RH
975 /* Line number sequences cannot go backward in addresses. This means
976 we've incorrectly ordered the statements in the sequence. */
9c2799c2 977 gas_assert ((offsetT) addr_delta >= 0);
07a53e5c 978
220e750f 979 /* Scale the address delta by the minimum instruction length. */
a3b75434
DD
980 scale_addr_delta (&addr_delta);
981
220e750f
RH
982 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence.
983 We cannot use special opcodes here, since we want the end_sequence
984 to emit the matrix entry. */
985 if (line_delta == INT_MAX)
fac0d250 986 {
220e750f
RH
987 if (addr_delta == MAX_SPECIAL_ADDR_DELTA)
988 *p++ = DW_LNS_const_add_pc;
989 else
fac0d250 990 {
220e750f
RH
991 *p++ = DW_LNS_advance_pc;
992 p += output_leb128 (p, addr_delta, 0);
fac0d250 993 }
220e750f
RH
994
995 *p++ = DW_LNS_extended_op;
996 *p++ = 1;
997 *p++ = DW_LNE_end_sequence;
998 goto done;
fac0d250
RH
999 }
1000
220e750f
RH
1001 /* Bias the line delta by the base. */
1002 tmp = line_delta - DWARF2_LINE_BASE;
1003
1004 /* If the line increment is out of range of a special opcode, we
1005 must encode it with DW_LNS_advance_line. */
1006 if (tmp >= DWARF2_LINE_RANGE)
fac0d250 1007 {
220e750f
RH
1008 *p++ = DW_LNS_advance_line;
1009 p += output_leb128 (p, line_delta, 1);
fac0d250 1010
220e750f
RH
1011 line_delta = 0;
1012 tmp = 0 - DWARF2_LINE_BASE;
1013 need_copy = 1;
1014 }
fac0d250 1015
bd0eb99b
RH
1016 /* Prettier, I think, to use DW_LNS_copy instead of a "line +0, addr +0"
1017 special opcode. */
1018 if (line_delta == 0 && addr_delta == 0)
1019 {
1020 *p++ = DW_LNS_copy;
1021 goto done;
1022 }
1023
220e750f
RH
1024 /* Bias the opcode by the special opcode base. */
1025 tmp += DWARF2_LINE_OPCODE_BASE;
fac0d250 1026
220e750f
RH
1027 /* Avoid overflow when addr_delta is large. */
1028 if (addr_delta < 256 + MAX_SPECIAL_ADDR_DELTA)
fac0d250 1029 {
220e750f
RH
1030 /* Try using a special opcode. */
1031 opcode = tmp + addr_delta * DWARF2_LINE_RANGE;
1032 if (opcode <= 255)
1033 {
1034 *p++ = opcode;
1035 goto done;
1036 }
1037
1038 /* Try using DW_LNS_const_add_pc followed by special op. */
1039 opcode = tmp + (addr_delta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
1040 if (opcode <= 255)
fac0d250 1041 {
220e750f
RH
1042 *p++ = DW_LNS_const_add_pc;
1043 *p++ = opcode;
1044 goto done;
fac0d250
RH
1045 }
1046 }
220e750f
RH
1047
1048 /* Otherwise use DW_LNS_advance_pc. */
1049 *p++ = DW_LNS_advance_pc;
1050 p += output_leb128 (p, addr_delta, 0);
1051
1052 if (need_copy)
1053 *p++ = DW_LNS_copy;
fac0d250 1054 else
220e750f 1055 *p++ = tmp;
fac0d250 1056
220e750f 1057 done:
9c2799c2 1058 gas_assert (p == end);
220e750f 1059}
a8316fe2 1060
220e750f 1061/* Handy routine to combine calls to the above two routines. */
e1c05f12 1062
220e750f 1063static void
a2e22468 1064out_inc_line_addr (int line_delta, addressT addr_delta)
220e750f
RH
1065{
1066 int len = size_inc_line_addr (line_delta, addr_delta);
1067 emit_inc_line_addr (line_delta, addr_delta, frag_more (len), len);
1068}
9de8d8f1 1069
1737851b
BW
1070/* Write out an alternative form of line and address skips using
1071 DW_LNS_fixed_advance_pc opcodes. This uses more space than the default
7ddd14de
BW
1072 line and address information, but it is required if linker relaxation
1073 could change the code offsets. The following two routines *must* be
1074 kept in sync. */
453dc3f0 1075#define ADDR_DELTA_LIMIT 50000
1737851b 1076
7ddd14de
BW
1077static int
1078size_fixed_inc_line_addr (int line_delta, addressT addr_delta)
1737851b 1079{
7ddd14de 1080 int len = 0;
1737851b
BW
1081
1082 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence. */
7ddd14de
BW
1083 if (line_delta != INT_MAX)
1084 len = 1 + sizeof_leb128 (line_delta, 1);
1085
453dc3f0 1086 if (addr_delta > ADDR_DELTA_LIMIT)
7ddd14de
BW
1087 {
1088 /* DW_LNS_extended_op */
1089 len += 1 + sizeof_leb128 (sizeof_address + 1, 0);
1090 /* DW_LNE_set_address */
1091 len += 1 + sizeof_address;
1092 }
1093 else
1094 /* DW_LNS_fixed_advance_pc */
1095 len += 3;
1096
1737851b 1097 if (line_delta == INT_MAX)
7ddd14de
BW
1098 /* DW_LNS_extended_op + DW_LNE_end_sequence */
1099 len += 3;
1100 else
1101 /* DW_LNS_copy */
1102 len += 1;
1103
1104 return len;
1105}
1106
1107static void
1108emit_fixed_inc_line_addr (int line_delta, addressT addr_delta, fragS *frag,
1109 char *p, int len)
1110{
91d6fa6a 1111 expressionS *pexp;
7ddd14de
BW
1112 segT line_seg;
1113 char *end = p + len;
1114
1115 /* Line number sequences cannot go backward in addresses. This means
1116 we've incorrectly ordered the statements in the sequence. */
9c2799c2 1117 gas_assert ((offsetT) addr_delta >= 0);
7ddd14de
BW
1118
1119 /* INT_MAX is a signal that this is actually a DW_LNE_end_sequence. */
1120 if (line_delta != INT_MAX)
1121 {
1122 *p++ = DW_LNS_advance_line;
1123 p += output_leb128 (p, line_delta, 1);
1124 }
1125
91d6fa6a 1126 pexp = symbol_get_value_expression (frag->fr_symbol);
7ddd14de
BW
1127 line_seg = subseg_get (".debug_line", 0);
1128
1129 /* The DW_LNS_fixed_advance_pc opcode has a 2-byte operand so it can
1130 advance the address by at most 64K. Linker relaxation (without
1131 which this function would not be used) could change the operand by
1132 an unknown amount. If the address increment is getting close to
1133 the limit, just reset the address. */
453dc3f0 1134 if (addr_delta > ADDR_DELTA_LIMIT)
1737851b 1135 {
7ddd14de 1136 symbolS *to_sym;
91d6fa6a 1137 expressionS exp;
7ddd14de 1138
9f6db0d3 1139 gas_assert (pexp->X_op == O_subtract);
91d6fa6a 1140 to_sym = pexp->X_add_symbol;
7ddd14de
BW
1141
1142 *p++ = DW_LNS_extended_op;
1143 p += output_leb128 (p, sizeof_address + 1, 0);
1144 *p++ = DW_LNE_set_address;
91d6fa6a
NC
1145 exp.X_op = O_symbol;
1146 exp.X_add_symbol = to_sym;
1147 exp.X_add_number = 0;
7ddd14de 1148 subseg_change (line_seg, 0);
91d6fa6a 1149 emit_expr_fix (&exp, sizeof_address, frag, p);
7ddd14de
BW
1150 p += sizeof_address;
1151 }
1152 else
1153 {
1154 *p++ = DW_LNS_fixed_advance_pc;
1155 subseg_change (line_seg, 0);
91d6fa6a 1156 emit_expr_fix (pexp, 2, frag, p);
7ddd14de 1157 p += 2;
1737851b
BW
1158 }
1159
7ddd14de
BW
1160 if (line_delta == INT_MAX)
1161 {
1162 *p++ = DW_LNS_extended_op;
1163 *p++ = 1;
1164 *p++ = DW_LNE_end_sequence;
1165 }
1166 else
1167 *p++ = DW_LNS_copy;
1737851b 1168
9c2799c2 1169 gas_assert (p == end);
1737851b
BW
1170}
1171
220e750f
RH
1172/* Generate a variant frag that we can use to relax address/line
1173 increments between fragments of the target segment. */
9e3af0e7 1174
220e750f 1175static void
07a53e5c 1176relax_inc_line_addr (int line_delta, symbolS *to_sym, symbolS *from_sym)
220e750f 1177{
91d6fa6a 1178 expressionS exp;
220e750f 1179 int max_chars;
6576f0b5 1180
91d6fa6a
NC
1181 exp.X_op = O_subtract;
1182 exp.X_add_symbol = to_sym;
1183 exp.X_op_symbol = from_sym;
1184 exp.X_add_number = 0;
fac0d250 1185
220e750f
RH
1186 /* The maximum size of the frag is the line delta with a maximum
1187 sized address delta. */
7ddd14de
BW
1188 if (DWARF2_USE_FIXED_ADVANCE_PC)
1189 max_chars = size_fixed_inc_line_addr (line_delta,
1190 -DWARF2_LINE_MIN_INSN_LENGTH);
1191 else
1192 max_chars = size_inc_line_addr (line_delta, -DWARF2_LINE_MIN_INSN_LENGTH);
fac0d250 1193
220e750f 1194 frag_var (rs_dwarf2dbg, max_chars, max_chars, 1,
91d6fa6a 1195 make_expr_symbol (&exp), line_delta, NULL);
220e750f 1196}
fac0d250 1197
220e750f
RH
1198/* The function estimates the size of a rs_dwarf2dbg variant frag
1199 based on the current values of the symbols. It is called before
1200 the relaxation loop. We set fr_subtype to the expected length. */
fac0d250 1201
220e750f 1202int
a2e22468 1203dwarf2dbg_estimate_size_before_relax (fragS *frag)
220e750f
RH
1204{
1205 offsetT addr_delta;
1206 int size;
fac0d250 1207
6386f3a7 1208 addr_delta = resolve_symbol_value (frag->fr_symbol);
7ddd14de
BW
1209 if (DWARF2_USE_FIXED_ADVANCE_PC)
1210 size = size_fixed_inc_line_addr (frag->fr_offset, addr_delta);
1211 else
1212 size = size_inc_line_addr (frag->fr_offset, addr_delta);
fac0d250 1213
220e750f 1214 frag->fr_subtype = size;
fac0d250 1215
220e750f
RH
1216 return size;
1217}
1218
1219/* This function relaxes a rs_dwarf2dbg variant frag based on the
1220 current values of the symbols. fr_subtype is the current length
1221 of the frag. This returns the change in frag length. */
1222
1223int
a2e22468 1224dwarf2dbg_relax_frag (fragS *frag)
220e750f
RH
1225{
1226 int old_size, new_size;
fac0d250 1227
220e750f
RH
1228 old_size = frag->fr_subtype;
1229 new_size = dwarf2dbg_estimate_size_before_relax (frag);
ee515fb7 1230
220e750f 1231 return new_size - old_size;
fac0d250
RH
1232}
1233
220e750f
RH
1234/* This function converts a rs_dwarf2dbg variant frag into a normal
1235 fill frag. This is called after all relaxation has been done.
1236 fr_subtype will be the desired length of the frag. */
1237
1238void
a2e22468 1239dwarf2dbg_convert_frag (fragS *frag)
fac0d250 1240{
220e750f
RH
1241 offsetT addr_diff;
1242
453dc3f0
NC
1243 if (DWARF2_USE_FIXED_ADVANCE_PC)
1244 {
1245 /* If linker relaxation is enabled then the distance bewteen the two
1246 symbols in the frag->fr_symbol expression might change. Hence we
1247 cannot rely upon the value computed by resolve_symbol_value.
1248 Instead we leave the expression unfinalized and allow
1249 emit_fixed_inc_line_addr to create a fixup (which later becomes a
1250 relocation) that will allow the linker to correctly compute the
1251 actual address difference. We have to use a fixed line advance for
1252 this as we cannot (easily) relocate leb128 encoded values. */
1253 int saved_finalize_syms = finalize_syms;
1254
1255 finalize_syms = 0;
1256 addr_diff = resolve_symbol_value (frag->fr_symbol);
1257 finalize_syms = saved_finalize_syms;
1258 }
1259 else
1260 addr_diff = resolve_symbol_value (frag->fr_symbol);
fac0d250 1261
220e750f
RH
1262 /* fr_var carries the max_chars that we created the fragment with.
1263 fr_subtype carries the current expected length. We must, of
1264 course, have allocated enough memory earlier. */
9c2799c2 1265 gas_assert (frag->fr_var >= (int) frag->fr_subtype);
fac0d250 1266
7ddd14de
BW
1267 if (DWARF2_USE_FIXED_ADVANCE_PC)
1268 emit_fixed_inc_line_addr (frag->fr_offset, addr_diff, frag,
1269 frag->fr_literal + frag->fr_fix,
1270 frag->fr_subtype);
1271 else
1272 emit_inc_line_addr (frag->fr_offset, addr_diff,
1273 frag->fr_literal + frag->fr_fix, frag->fr_subtype);
220e750f
RH
1274
1275 frag->fr_fix += frag->fr_subtype;
1276 frag->fr_type = rs_fill;
1277 frag->fr_var = 0;
1278 frag->fr_offset = 0;
1279}
1280
1281/* Generate .debug_line content for the chain of line number entries
1282 beginning at E, for segment SEG. */
1283
1284static void
a2e22468 1285process_entries (segT seg, struct line_entry *e)
220e750f
RH
1286{
1287 unsigned filenum = 1;
1288 unsigned line = 1;
1289 unsigned column = 0;
bd0eb99b
RH
1290 unsigned isa = 0;
1291 unsigned flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
07a53e5c
RH
1292 fragS *last_frag = NULL, *frag;
1293 addressT last_frag_ofs = 0, frag_ofs;
fead5cd9 1294 symbolS *last_lab = NULL, *lab;
220e750f
RH
1295 struct line_entry *next;
1296
fead5cd9 1297 do
fac0d250 1298 {
07a53e5c 1299 int line_delta;
220e750f
RH
1300
1301 if (filenum != e->loc.filenum)
fac0d250 1302 {
220e750f
RH
1303 filenum = e->loc.filenum;
1304 out_opcode (DW_LNS_set_file);
1305 out_uleb128 (filenum);
220e750f
RH
1306 }
1307
1308 if (column != e->loc.column)
1309 {
1310 column = e->loc.column;
1311 out_opcode (DW_LNS_set_column);
1312 out_uleb128 (column);
220e750f
RH
1313 }
1314
92846e72
CC
1315 if (e->loc.discriminator != 0)
1316 {
1317 out_opcode (DW_LNS_extended_op);
1318 out_leb128 (1 + sizeof_leb128 (e->loc.discriminator, 0));
1319 out_opcode (DW_LNE_set_discriminator);
1320 out_uleb128 (e->loc.discriminator);
1321 }
1322
bd0eb99b
RH
1323 if (isa != e->loc.isa)
1324 {
1325 isa = e->loc.isa;
1326 out_opcode (DW_LNS_set_isa);
1327 out_uleb128 (isa);
bd0eb99b
RH
1328 }
1329
1330 if ((e->loc.flags ^ flags) & DWARF2_FLAG_IS_STMT)
220e750f
RH
1331 {
1332 flags = e->loc.flags;
1333 out_opcode (DW_LNS_negate_stmt);
220e750f
RH
1334 }
1335
bd0eb99b 1336 if (e->loc.flags & DWARF2_FLAG_BASIC_BLOCK)
07a53e5c 1337 out_opcode (DW_LNS_set_basic_block);
220e750f 1338
bd0eb99b 1339 if (e->loc.flags & DWARF2_FLAG_PROLOGUE_END)
07a53e5c 1340 out_opcode (DW_LNS_set_prologue_end);
bd0eb99b
RH
1341
1342 if (e->loc.flags & DWARF2_FLAG_EPILOGUE_BEGIN)
07a53e5c 1343 out_opcode (DW_LNS_set_epilogue_begin);
bd0eb99b 1344
fb81275c
JM
1345 /* Don't try to optimize away redundant entries; gdb wants two
1346 entries for a function where the code starts on the same line as
1347 the {, and there's no way to identify that case here. Trust gcc
1348 to optimize appropriately. */
07a53e5c
RH
1349 line_delta = e->loc.line - line;
1350 lab = e->label;
1351 frag = symbol_get_frag (lab);
1352 frag_ofs = S_GET_VALUE (lab);
220e750f 1353
07a53e5c 1354 if (last_frag == NULL)
220e750f 1355 {
07a53e5c
RH
1356 out_set_addr (lab);
1357 out_inc_line_addr (line_delta, 0);
220e750f 1358 }
7ddd14de 1359 else if (frag == last_frag && ! DWARF2_USE_FIXED_ADVANCE_PC)
07a53e5c
RH
1360 out_inc_line_addr (line_delta, frag_ofs - last_frag_ofs);
1361 else
1362 relax_inc_line_addr (line_delta, lab, last_lab);
1363
1364 line = e->loc.line;
1365 last_lab = lab;
1366 last_frag = frag;
1367 last_frag_ofs = frag_ofs;
220e750f
RH
1368
1369 next = e->next;
1370 free (e);
1371 e = next;
fac0d250 1372 }
fead5cd9 1373 while (e);
353e2c69 1374
220e750f 1375 /* Emit a DW_LNE_end_sequence for the end of the section. */
07a53e5c 1376 frag = last_frag_for_seg (seg);
c9049d30 1377 frag_ofs = get_frag_fix (frag, seg);
7ddd14de 1378 if (frag == last_frag && ! DWARF2_USE_FIXED_ADVANCE_PC)
07a53e5c 1379 out_inc_line_addr (INT_MAX, frag_ofs - last_frag_ofs);
220e750f 1380 else
07a53e5c
RH
1381 {
1382 lab = symbol_temp_new (seg, frag_ofs, frag);
1383 relax_inc_line_addr (INT_MAX, lab, last_lab);
1384 }
fac0d250
RH
1385}
1386
220e750f
RH
1387/* Emit the directory and file tables for .debug_line. */
1388
fac0d250 1389static void
a2e22468 1390out_file_list (void)
fac0d250
RH
1391{
1392 size_t size;
3d6b762c 1393 const char *dir;
fac0d250 1394 char *cp;
220e750f
RH
1395 unsigned int i;
1396
a7ed1ca2
NC
1397 /* Emit directory list. */
1398 for (i = 1; i < dirs_in_use; ++i)
1399 {
3d6b762c
JM
1400 dir = remap_debug_filename (dirs[i]);
1401 size = strlen (dir) + 1;
a7ed1ca2 1402 cp = frag_more (size);
3d6b762c 1403 memcpy (cp, dir, size);
a7ed1ca2
NC
1404 }
1405 /* Terminate it. */
220e750f 1406 out_byte ('\0');
fac0d250 1407
220e750f 1408 for (i = 1; i < files_in_use; ++i)
fac0d250 1409 {
01e1a5bc
NC
1410 const char *fullfilename;
1411
249e3833
RH
1412 if (files[i].filename == NULL)
1413 {
0e389e77 1414 as_bad (_("unassigned file number %ld"), (long) i);
88b4ca40
RH
1415 /* Prevent a crash later, particularly for file 1. */
1416 files[i].filename = "";
249e3833
RH
1417 continue;
1418 }
1419
01e1a5bc
NC
1420 fullfilename = DWARF2_FILE_NAME (files[i].filename,
1421 files[i].dir ? dirs [files [i].dir] : "");
1422 size = strlen (fullfilename) + 1;
fac0d250 1423 cp = frag_more (size);
01e1a5bc 1424 memcpy (cp, fullfilename, size);
fac0d250 1425
220e750f 1426 out_uleb128 (files[i].dir); /* directory number */
01e1a5bc
NC
1427 /* Output the last modification timestamp. */
1428 out_uleb128 (DWARF2_FILE_TIME_NAME (files[i].filename,
1429 files[i].dir ? dirs [files [i].dir] : ""));
1430 /* Output the filesize. */
1431 out_uleb128 (DWARF2_FILE_SIZE_NAME (files[i].filename,
1432 files[i].dir ? dirs [files [i].dir] : ""));
fac0d250 1433 }
353e2c69
KH
1434
1435 /* Terminate filename list. */
1436 out_byte (0);
fac0d250
RH
1437}
1438
413a266c
AM
1439/* Switch to SEC and output a header length field. Return the size of
1440 offsets used in SEC. The caller must set EXPR->X_add_symbol value
1441 to the end of the section. */
1442
1443static int
91d6fa6a 1444out_header (asection *sec, expressionS *exp)
413a266c
AM
1445{
1446 symbolS *start_sym;
1447 symbolS *end_sym;
1448
1449 subseg_set (sec, 0);
5bb3703f 1450 start_sym = symbol_temp_new_now ();
413a266c
AM
1451 end_sym = symbol_temp_make ();
1452
1453 /* Total length of the information. */
91d6fa6a
NC
1454 exp->X_op = O_subtract;
1455 exp->X_add_symbol = end_sym;
1456 exp->X_op_symbol = start_sym;
413a266c
AM
1457
1458 switch (DWARF2_FORMAT (sec))
1459 {
1460 case dwarf2_format_32bit:
91d6fa6a
NC
1461 exp->X_add_number = -4;
1462 emit_expr (exp, 4);
413a266c
AM
1463 return 4;
1464
1465 case dwarf2_format_64bit:
91d6fa6a 1466 exp->X_add_number = -12;
413a266c 1467 out_four (-1);
91d6fa6a 1468 emit_expr (exp, 8);
413a266c
AM
1469 return 8;
1470
1471 case dwarf2_format_64bit_irix:
91d6fa6a
NC
1472 exp->X_add_number = -8;
1473 emit_expr (exp, 8);
413a266c
AM
1474 return 8;
1475 }
1476
1477 as_fatal (_("internal error: unknown dwarf2 format"));
1478 return 0;
1479}
1480
220e750f
RH
1481/* Emit the collected .debug_line data. */
1482
1483static void
a2e22468 1484out_debug_line (segT line_seg)
220e750f 1485{
91d6fa6a 1486 expressionS exp;
220e750f
RH
1487 symbolS *prologue_end;
1488 symbolS *line_end;
1489 struct line_seg *s;
14e777e0 1490 int sizeof_offset;
220e750f 1491
91d6fa6a
NC
1492 sizeof_offset = out_header (line_seg, &exp);
1493 line_end = exp.X_add_symbol;
220e750f
RH
1494
1495 /* Version. */
88ebb0a1 1496 out_two (DWARF2_LINE_VERSION);
220e750f
RH
1497
1498 /* Length of the prologue following this length. */
413a266c 1499 prologue_end = symbol_temp_make ();
91d6fa6a
NC
1500 exp.X_add_symbol = prologue_end;
1501 exp.X_add_number = - (4 + 2 + 4);
1502 emit_expr (&exp, sizeof_offset);
220e750f
RH
1503
1504 /* Parameters of the state machine. */
1505 out_byte (DWARF2_LINE_MIN_INSN_LENGTH);
1506 out_byte (DWARF2_LINE_DEFAULT_IS_STMT);
1507 out_byte (DWARF2_LINE_BASE);
1508 out_byte (DWARF2_LINE_RANGE);
1509 out_byte (DWARF2_LINE_OPCODE_BASE);
1510
1511 /* Standard opcode lengths. */
1512 out_byte (0); /* DW_LNS_copy */
1513 out_byte (1); /* DW_LNS_advance_pc */
1514 out_byte (1); /* DW_LNS_advance_line */
1515 out_byte (1); /* DW_LNS_set_file */
1516 out_byte (1); /* DW_LNS_set_column */
1517 out_byte (0); /* DW_LNS_negate_stmt */
1518 out_byte (0); /* DW_LNS_set_basic_block */
1519 out_byte (0); /* DW_LNS_const_add_pc */
1520 out_byte (1); /* DW_LNS_fixed_advance_pc */
bd0eb99b
RH
1521 out_byte (0); /* DW_LNS_set_prologue_end */
1522 out_byte (0); /* DW_LNS_set_epilogue_begin */
1523 out_byte (1); /* DW_LNS_set_isa */
220e750f
RH
1524
1525 out_file_list ();
1526
b7d6ed97 1527 symbol_set_value_now (prologue_end);
220e750f
RH
1528
1529 /* For each section, emit a statement program. */
ee515fb7 1530 for (s = all_segs; s; s = s->next)
9aec2026
NC
1531 if (SEG_NORMAL (s->seg))
1532 process_entries (s->seg, s->head->head);
1533 else
1534 as_warn ("dwarf line number information for %s ignored",
1535 segment_name (s->seg));
220e750f 1536
b7d6ed97 1537 symbol_set_value_now (line_end);
220e750f
RH
1538}
1539
802f5d9e
NC
1540static void
1541out_debug_ranges (segT ranges_seg)
1542{
1543 unsigned int addr_size = sizeof_address;
1544 struct line_seg *s;
91d6fa6a 1545 expressionS exp;
802f5d9e
NC
1546 unsigned int i;
1547
1548 subseg_set (ranges_seg, 0);
1549
1550 /* Base Address Entry. */
7fd3924a 1551 for (i = 0; i < addr_size; i++)
802f5d9e 1552 out_byte (0xff);
7fd3924a 1553 for (i = 0; i < addr_size; i++)
802f5d9e
NC
1554 out_byte (0);
1555
1556 /* Range List Entry. */
1557 for (s = all_segs; s; s = s->next)
1558 {
1559 fragS *frag;
1560 symbolS *beg, *end;
1561
1562 frag = first_frag_for_seg (s->seg);
1563 beg = symbol_temp_new (s->seg, 0, frag);
1564 s->text_start = beg;
1565
1566 frag = last_frag_for_seg (s->seg);
1567 end = symbol_temp_new (s->seg, get_frag_fix (frag, s->seg), frag);
1568 s->text_end = end;
1569
91d6fa6a
NC
1570 exp.X_op = O_symbol;
1571 exp.X_add_symbol = beg;
1572 exp.X_add_number = 0;
1573 emit_expr (&exp, addr_size);
802f5d9e 1574
91d6fa6a
NC
1575 exp.X_op = O_symbol;
1576 exp.X_add_symbol = end;
1577 exp.X_add_number = 0;
1578 emit_expr (&exp, addr_size);
802f5d9e
NC
1579 }
1580
1581 /* End of Range Entry. */
7fd3924a 1582 for (i = 0; i < addr_size; i++)
802f5d9e 1583 out_byte (0);
7fd3924a 1584 for (i = 0; i < addr_size; i++)
802f5d9e
NC
1585 out_byte (0);
1586}
1587
220e750f
RH
1588/* Emit data for .debug_aranges. */
1589
58b5739a 1590static void
a2e22468 1591out_debug_aranges (segT aranges_seg, segT info_seg)
fac0d250 1592{
220e750f 1593 unsigned int addr_size = sizeof_address;
220e750f 1594 struct line_seg *s;
91d6fa6a 1595 expressionS exp;
413a266c 1596 symbolS *aranges_end;
220e750f 1597 char *p;
413a266c 1598 int sizeof_offset;
fac0d250 1599
91d6fa6a
NC
1600 sizeof_offset = out_header (aranges_seg, &exp);
1601 aranges_end = exp.X_add_symbol;
fac0d250 1602
220e750f 1603 /* Version. */
88ebb0a1 1604 out_two (DWARF2_ARANGES_VERSION);
4dc7ead9 1605
220e750f 1606 /* Offset to .debug_info. */
413a266c 1607 TC_DWARF2_EMIT_OFFSET (section_symbol (info_seg), sizeof_offset);
220e750f
RH
1608
1609 /* Size of an address (offset portion). */
1610 out_byte (addr_size);
1611
1612 /* Size of a segment descriptor. */
1613 out_byte (0);
1614
1615 /* Align the header. */
413a266c 1616 frag_align (ffs (2 * addr_size) - 1, 0, 0);
4dc7ead9 1617
ee515fb7 1618 for (s = all_segs; s; s = s->next)
220e750f
RH
1619 {
1620 fragS *frag;
1621 symbolS *beg, *end;
1622
1623 frag = first_frag_for_seg (s->seg);
b7d6ed97 1624 beg = symbol_temp_new (s->seg, 0, frag);
220e750f
RH
1625 s->text_start = beg;
1626
1627 frag = last_frag_for_seg (s->seg);
c9049d30 1628 end = symbol_temp_new (s->seg, get_frag_fix (frag, s->seg), frag);
220e750f
RH
1629 s->text_end = end;
1630
91d6fa6a
NC
1631 exp.X_op = O_symbol;
1632 exp.X_add_symbol = beg;
1633 exp.X_add_number = 0;
1634 emit_expr (&exp, addr_size);
220e750f 1635
91d6fa6a
NC
1636 exp.X_op = O_subtract;
1637 exp.X_add_symbol = end;
1638 exp.X_op_symbol = beg;
1639 exp.X_add_number = 0;
1640 emit_expr (&exp, addr_size);
220e750f 1641 }
4dc7ead9 1642
220e750f
RH
1643 p = frag_more (2 * addr_size);
1644 md_number_to_chars (p, 0, addr_size);
1645 md_number_to_chars (p + addr_size, 0, addr_size);
413a266c
AM
1646
1647 symbol_set_value_now (aranges_end);
4dc7ead9
RH
1648}
1649
220e750f
RH
1650/* Emit data for .debug_abbrev. Note that this must be kept in
1651 sync with out_debug_info below. */
fac0d250 1652
220e750f 1653static void
413a266c
AM
1654out_debug_abbrev (segT abbrev_seg,
1655 segT info_seg ATTRIBUTE_UNUSED,
1656 segT line_seg ATTRIBUTE_UNUSED)
220e750f
RH
1657{
1658 subseg_set (abbrev_seg, 0);
fac0d250 1659
220e750f
RH
1660 out_uleb128 (1);
1661 out_uleb128 (DW_TAG_compile_unit);
1662 out_byte (DW_CHILDREN_no);
413a266c
AM
1663 if (DWARF2_FORMAT (line_seg) == dwarf2_format_32bit)
1664 out_abbrev (DW_AT_stmt_list, DW_FORM_data4);
1665 else
1666 out_abbrev (DW_AT_stmt_list, DW_FORM_data8);
220e750f 1667 if (all_segs->next == NULL)
4dc7ead9 1668 {
220e750f 1669 out_abbrev (DW_AT_low_pc, DW_FORM_addr);
88ebb0a1
MW
1670 if (DWARF2_VERSION < 4)
1671 out_abbrev (DW_AT_high_pc, DW_FORM_addr);
1672 else
1673 out_abbrev (DW_AT_high_pc, (sizeof_address == 4
1674 ? DW_FORM_data4 : DW_FORM_data8));
220e750f 1675 }
802f5d9e
NC
1676 else
1677 {
413a266c 1678 if (DWARF2_FORMAT (info_seg) == dwarf2_format_32bit)
802f5d9e
NC
1679 out_abbrev (DW_AT_ranges, DW_FORM_data4);
1680 else
1681 out_abbrev (DW_AT_ranges, DW_FORM_data8);
1682 }
48b91938 1683 out_abbrev (DW_AT_name, DW_FORM_string);
220e750f
RH
1684 out_abbrev (DW_AT_comp_dir, DW_FORM_string);
1685 out_abbrev (DW_AT_producer, DW_FORM_string);
1686 out_abbrev (DW_AT_language, DW_FORM_data2);
1687 out_abbrev (0, 0);
a987bfc9
RH
1688
1689 /* Terminate the abbreviations for this compilation unit. */
1690 out_byte (0);
220e750f 1691}
4dc7ead9 1692
220e750f 1693/* Emit a description of this compilation unit for .debug_info. */
4dc7ead9 1694
220e750f 1695static void
802f5d9e 1696out_debug_info (segT info_seg, segT abbrev_seg, segT line_seg, segT ranges_seg)
220e750f
RH
1697{
1698 char producer[128];
3d6b762c
JM
1699 const char *comp_dir;
1700 const char *dirname;
91d6fa6a 1701 expressionS exp;
220e750f
RH
1702 symbolS *info_end;
1703 char *p;
1704 int len;
14e777e0 1705 int sizeof_offset;
4dc7ead9 1706
91d6fa6a
NC
1707 sizeof_offset = out_header (info_seg, &exp);
1708 info_end = exp.X_add_symbol;
4dc7ead9 1709
220e750f 1710 /* DWARF version. */
fc0eebac 1711 out_two (DWARF2_VERSION);
4dc7ead9 1712
220e750f 1713 /* .debug_abbrev offset */
6174d9c8 1714 TC_DWARF2_EMIT_OFFSET (section_symbol (abbrev_seg), sizeof_offset);
4dc7ead9 1715
220e750f
RH
1716 /* Target address size. */
1717 out_byte (sizeof_address);
fac0d250 1718
220e750f
RH
1719 /* DW_TAG_compile_unit DIE abbrev */
1720 out_uleb128 (1);
fac0d250 1721
220e750f 1722 /* DW_AT_stmt_list */
413a266c
AM
1723 TC_DWARF2_EMIT_OFFSET (section_symbol (line_seg),
1724 (DWARF2_FORMAT (line_seg) == dwarf2_format_32bit
1725 ? 4 : 8));
fac0d250 1726
802f5d9e 1727 /* These two attributes are emitted if all of the code is contiguous. */
220e750f 1728 if (all_segs->next == NULL)
58b5739a 1729 {
220e750f 1730 /* DW_AT_low_pc */
91d6fa6a
NC
1731 exp.X_op = O_symbol;
1732 exp.X_add_symbol = all_segs->text_start;
1733 exp.X_add_number = 0;
1734 emit_expr (&exp, sizeof_address);
220e750f
RH
1735
1736 /* DW_AT_high_pc */
88ebb0a1
MW
1737 if (DWARF2_VERSION < 4)
1738 exp.X_op = O_symbol;
1739 else
1740 {
1741 exp.X_op = O_subtract;
1742 exp.X_op_symbol = all_segs->text_start;
1743 }
91d6fa6a
NC
1744 exp.X_add_symbol = all_segs->text_end;
1745 exp.X_add_number = 0;
1746 emit_expr (&exp, sizeof_address);
58b5739a 1747 }
802f5d9e
NC
1748 else
1749 {
eb1fe072
NC
1750 /* This attribute is emitted if the code is disjoint. */
1751 /* DW_AT_ranges. */
1752 TC_DWARF2_EMIT_OFFSET (section_symbol (ranges_seg), sizeof_offset);
802f5d9e 1753 }
58b5739a 1754
48b91938
RH
1755 /* DW_AT_name. We don't have the actual file name that was present
1756 on the command line, so assume files[1] is the main input file.
1757 We're not supposed to get called unless at least one line number
1758 entry was emitted, so this should always be defined. */
7fd3924a 1759 if (files_in_use == 0)
48b91938 1760 abort ();
a7ed1ca2
NC
1761 if (files[1].dir)
1762 {
3d6b762c
JM
1763 dirname = remap_debug_filename (dirs[files[1].dir]);
1764 len = strlen (dirname);
198f1251
TG
1765#ifdef TE_VMS
1766 /* Already has trailing slash. */
1767 p = frag_more (len);
1768 memcpy (p, dirname, len);
1769#else
a7ed1ca2 1770 p = frag_more (len + 1);
3d6b762c 1771 memcpy (p, dirname, len);
56487c55 1772 INSERT_DIR_SEPARATOR (p, len);
198f1251 1773#endif
a7ed1ca2 1774 }
48b91938
RH
1775 len = strlen (files[1].filename) + 1;
1776 p = frag_more (len);
1777 memcpy (p, files[1].filename, len);
1778
220e750f 1779 /* DW_AT_comp_dir */
3d6b762c 1780 comp_dir = remap_debug_filename (getpwd ());
220e750f
RH
1781 len = strlen (comp_dir) + 1;
1782 p = frag_more (len);
1783 memcpy (p, comp_dir, len);
fac0d250 1784
220e750f
RH
1785 /* DW_AT_producer */
1786 sprintf (producer, "GNU AS %s", VERSION);
1787 len = strlen (producer) + 1;
1788 p = frag_more (len);
1789 memcpy (p, producer, len);
fac0d250 1790
220e750f
RH
1791 /* DW_AT_language. Yes, this is probably not really MIPS, but the
1792 dwarf2 draft has no standard code for assembler. */
1793 out_two (DW_LANG_Mips_Assembler);
1794
b7d6ed97 1795 symbol_set_value_now (info_end);
fac0d250
RH
1796}
1797
1e9cc1c2
NC
1798void
1799dwarf2_init (void)
1800{
1801 all_segs_hash = hash_new ();
1802 last_seg_ptr = &all_segs;
1803}
1804
1805
c6cb92c5
NS
1806/* Finish the dwarf2 debug sections. We emit .debug.line if there
1807 were any .file/.loc directives, or --gdwarf2 was given, or if the
df1c40a7
L
1808 file has a non-empty .debug_info section and an empty .debug_line
1809 section. If we emit .debug_line, and the .debug_info section is
1810 empty, we also emit .debug_info, .debug_aranges and .debug_abbrev.
1811 ALL_SEGS will be non-null if there were any .file/.loc directives,
1812 or --gdwarf2 was given and there were any located instructions
1813 emitted. */
c6cb92c5 1814
fac0d250 1815void
a2e22468 1816dwarf2_finish (void)
fac0d250 1817{
220e750f
RH
1818 segT line_seg;
1819 struct line_seg *s;
c6cb92c5
NS
1820 segT info_seg;
1821 int emit_other_sections = 0;
df1c40a7 1822 int empty_debug_line = 0;
c6cb92c5
NS
1823
1824 info_seg = bfd_get_section_by_name (stdoutput, ".debug_info");
1825 emit_other_sections = info_seg == NULL || !seg_not_empty_p (info_seg);
fac0d250 1826
df1c40a7
L
1827 line_seg = bfd_get_section_by_name (stdoutput, ".debug_line");
1828 empty_debug_line = line_seg == NULL || !seg_not_empty_p (line_seg);
1829
1830 /* We can't construct a new debug_line section if we already have one.
1831 Give an error. */
1832 if (all_segs && !empty_debug_line)
1833 as_fatal ("duplicate .debug_line sections");
1834
1835 if ((!all_segs && emit_other_sections)
1836 || (!emit_other_sections && !empty_debug_line))
1837 /* If there is no line information and no non-empty .debug_info
1838 section, or if there is both a non-empty .debug_info and a non-empty
1839 .debug_line, then we do nothing. */
220e750f 1840 return;
fac0d250 1841
220e750f 1842 /* Calculate the size of an address for the target machine. */
9605f328 1843 sizeof_address = DWARF2_ADDR_SIZE (stdoutput);
fac0d250 1844
220e750f
RH
1845 /* Create and switch to the line number section. */
1846 line_seg = subseg_new (".debug_line", 0);
8a7140c3 1847 bfd_set_section_flags (stdoutput, line_seg, SEC_READONLY | SEC_DEBUGGING);
fac0d250 1848
220e750f 1849 /* For each subsection, chain the debug entries together. */
ee515fb7 1850 for (s = all_segs; s; s = s->next)
fac0d250 1851 {
91d6fa6a
NC
1852 struct line_subseg *lss = s->head;
1853 struct line_entry **ptail = lss->ptail;
220e750f 1854
91d6fa6a 1855 while ((lss = lss->next) != NULL)
220e750f 1856 {
91d6fa6a
NC
1857 *ptail = lss->head;
1858 ptail = lss->ptail;
220e750f 1859 }
fac0d250 1860 }
85a39694 1861
220e750f 1862 out_debug_line (line_seg);
85a39694 1863
c6cb92c5
NS
1864 /* If this is assembler generated line info, and there is no
1865 debug_info already, we need .debug_info and .debug_abbrev
1866 sections as well. */
1867 if (emit_other_sections)
220e750f
RH
1868 {
1869 segT abbrev_seg;
220e750f 1870 segT aranges_seg;
802f5d9e 1871 segT ranges_seg;
4dc7ead9 1872
9c2799c2 1873 gas_assert (all_segs);
7fd3924a 1874
220e750f
RH
1875 info_seg = subseg_new (".debug_info", 0);
1876 abbrev_seg = subseg_new (".debug_abbrev", 0);
1877 aranges_seg = subseg_new (".debug_aranges", 0);
ef99799a 1878
8a7140c3
NC
1879 bfd_set_section_flags (stdoutput, info_seg,
1880 SEC_READONLY | SEC_DEBUGGING);
1881 bfd_set_section_flags (stdoutput, abbrev_seg,
1882 SEC_READONLY | SEC_DEBUGGING);
1883 bfd_set_section_flags (stdoutput, aranges_seg,
1884 SEC_READONLY | SEC_DEBUGGING);
ef99799a 1885
ee515fb7 1886 record_alignment (aranges_seg, ffs (2 * sizeof_address) - 1);
ef99799a 1887
802f5d9e
NC
1888 if (all_segs->next == NULL)
1889 ranges_seg = NULL;
1890 else
1891 {
1892 ranges_seg = subseg_new (".debug_ranges", 0);
7fd3924a 1893 bfd_set_section_flags (stdoutput, ranges_seg,
802f5d9e
NC
1894 SEC_READONLY | SEC_DEBUGGING);
1895 record_alignment (ranges_seg, ffs (2 * sizeof_address) - 1);
1896 out_debug_ranges (ranges_seg);
1897 }
1898
220e750f 1899 out_debug_aranges (aranges_seg, info_seg);
413a266c 1900 out_debug_abbrev (abbrev_seg, info_seg, line_seg);
802f5d9e 1901 out_debug_info (info_seg, abbrev_seg, line_seg, ranges_seg);
220e750f 1902 }
85a39694 1903}
This page took 0.744006 seconds and 4 git commands to generate.