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