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