Update the address and phone number of the FSF
[deliverable/binutils-gdb.git] / gas / stabs.c
CommitLineData
252b5132 1/* Generic stabs parsing for gas.
f7e42eb4 2 Copyright 1989, 1990, 1991, 1993, 1995, 1996, 1997, 1998, 2000, 2001
be95a9c1 3 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
252b5132
RH
4
5This file is part of GAS, the GNU Assembler.
6
7GAS is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as
9published by the Free Software Foundation; either version 2,
10or (at your option) any later version.
11
12GAS is distributed in the hope that it will be useful, but
13WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15the GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
19Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
2002110-1301, USA. */
252b5132
RH
21
22#include "as.h"
23#include "obstack.h"
24#include "subsegs.h"
25#include "ecoff.h"
26
27/* We need this, despite the apparent object format dependency, since
f0e652b4 28 it defines stab types, which all object formats can use now. */
252b5132
RH
29
30#include "aout/stab_gnu.h"
31
bccba5f0
NC
32/* Holds whether the assembler is generating stabs line debugging
33 information or not. Potentially used by md_cleanup function. */
34
92eb7b32 35int outputting_stabs_line_debug = 0;
bccba5f0 36
24361518
KH
37static void s_stab_generic (int, char *, char *);
38static void generate_asm_file (int, char *);
252b5132
RH
39
40/* Allow backends to override the names used for the stab sections. */
41#ifndef STAB_SECTION_NAME
42#define STAB_SECTION_NAME ".stab"
43#endif
44
45#ifndef STAB_STRING_SECTION_NAME
46#define STAB_STRING_SECTION_NAME ".stabstr"
47#endif
48
49/* Non-zero if we're in the middle of a .func function, in which case
50 stabs_generate_asm_lineno emits function relative line number stabs.
51 Otherwise it emits line number stabs with absolute addresses. Note that
52 both cases only apply to assembler code assembled with -gstabs. */
53static int in_dot_func_p;
54
55/* Label at start of current function if in_dot_func_p != 0. */
56static const char *current_function_label;
57
58/*
59 * Handle .stabX directives, which used to be open-coded.
60 * So much creeping featurism overloaded the semantics that we decided
61 * to put all .stabX thinking in one place. Here.
62 *
63 * We try to make any .stabX directive legal. Other people's AS will often
64 * do assembly-time consistency checks: eg assigning meaning to n_type bits
65 * and "protecting" you from setting them to certain values. (They also zero
66 * certain bits before emitting symbols. Tut tut.)
67 *
68 * If an expression is not absolute we either gripe or use the relocation
69 * information. Other people's assemblers silently forget information they
70 * don't need and invent information they need that you didn't supply.
71 */
72
73/*
74 * Build a string dictionary entry for a .stabX symbol.
75 * The symbol is added to the .<secname>str section.
76 */
77
78#ifndef SEPARATE_STAB_SECTIONS
79#define SEPARATE_STAB_SECTIONS 0
80#endif
81
82unsigned int
24361518 83get_stab_string_offset (const char *string, const char *stabstr_secname)
252b5132
RH
84{
85 unsigned int length;
86 unsigned int retval;
87 segT save_seg;
88 subsegT save_subseg;
89 segT seg;
90 char *p;
91
92 if (! SEPARATE_STAB_SECTIONS)
93 abort ();
94
95 length = strlen (string);
96
97 save_seg = now_seg;
98 save_subseg = now_subseg;
99
100 /* Create the stab string section. */
101 seg = subseg_new (stabstr_secname, 0);
102
103 retval = seg_info (seg)->stabu.stab_string_size;
104 if (retval <= 0)
105 {
106 /* Make sure the first string is empty. */
107 p = frag_more (1);
108 *p = 0;
109 retval = seg_info (seg)->stabu.stab_string_size = 1;
110#ifdef BFD_ASSEMBLER
111 bfd_set_section_flags (stdoutput, seg, SEC_READONLY | SEC_DEBUGGING);
112 if (seg->name == stabstr_secname)
113 seg->name = xstrdup (stabstr_secname);
114#endif
115 }
116
117 if (length > 0)
f0e652b4 118 { /* Ordinary case. */
252b5132
RH
119 p = frag_more (length + 1);
120 strcpy (p, string);
121
122 seg_info (seg)->stabu.stab_string_size += length + 1;
123 }
124 else
125 retval = 0;
126
127 subseg_set (save_seg, save_subseg);
128
129 return retval;
130}
131
132#ifdef AOUT_STABS
133#ifndef OBJ_PROCESS_STAB
134#define OBJ_PROCESS_STAB(SEG,W,S,T,O,D) aout_process_stab(W,S,T,O,D)
135#endif
136
0aa5d426
HPN
137/* Here instead of obj-aout.c because other formats use it too. */
138void
252b5132
RH
139aout_process_stab (what, string, type, other, desc)
140 int what;
141 const char *string;
142 int type, other, desc;
143{
144 /* Put the stab information in the symbol table. */
145 symbolS *symbol;
146
147 /* Create the symbol now, but only insert it into the symbol chain
148 after any symbols mentioned in the value expression get into the
149 symbol chain. This is to avoid "continuation symbols" (where one
150 ends in "\" and the debug info is continued in the next .stabs
151 directive) from being separated by other random symbols. */
152 symbol = symbol_create (string, undefined_section, 0,
be95a9c1 153 &zero_address_frag);
252b5132
RH
154 if (what == 's' || what == 'n')
155 {
156 /* Pick up the value from the input line. */
252b5132
RH
157 pseudo_set (symbol);
158 }
159 else
160 {
161 /* .stabd sets the name to NULL. Why? */
162 S_SET_NAME (symbol, NULL);
49309057 163 symbol_set_frag (symbol, frag_now);
252b5132
RH
164 S_SET_VALUE (symbol, (valueT) frag_now_fix ());
165 }
166
167 symbol_append (symbol, symbol_lastP, &symbol_rootP, &symbol_lastP);
168
169 S_SET_TYPE (symbol, type);
170 S_SET_OTHER (symbol, other);
171 S_SET_DESC (symbol, desc);
172}
173#endif
174
175/* This can handle different kinds of stabs (s,n,d) and different
f0e652b4 176 kinds of stab sections. */
252b5132 177
f0e652b4 178static void
24361518 179s_stab_generic (int what, char *stab_secname, char *stabstr_secname)
252b5132
RH
180{
181 long longint;
d68d4570 182 char *string, *saved_string_obstack_end;
252b5132
RH
183 int type;
184 int other;
185 int desc;
186
187 /* The general format is:
188 .stabs "STRING",TYPE,OTHER,DESC,VALUE
189 .stabn TYPE,OTHER,DESC,VALUE
190 .stabd TYPE,OTHER,DESC
191 At this point input_line_pointer points after the pseudo-op and
192 any trailing whitespace. The argument what is one of 's', 'n' or
193 'd' indicating which type of .stab this is. */
194
195 if (what != 's')
d68d4570
DD
196 {
197 string = "";
198 saved_string_obstack_end = 0;
199 }
252b5132
RH
200 else
201 {
202 int length;
203
204 string = demand_copy_C_string (&length);
d68d4570
DD
205 /* FIXME: We should probably find some other temporary storage
206 for string, rather than leaking memory if someone else
207 happens to use the notes obstack. */
208 saved_string_obstack_end = notes.next_free;
252b5132
RH
209 SKIP_WHITESPACE ();
210 if (*input_line_pointer == ',')
211 input_line_pointer++;
212 else
213 {
0e389e77 214 as_warn (_(".stab%c: missing comma"), what);
252b5132
RH
215 ignore_rest_of_line ();
216 return;
217 }
218 }
219
220 if (get_absolute_expression_and_terminator (&longint) != ',')
221 {
0e389e77 222 as_warn (_(".stab%c: missing comma"), what);
252b5132
RH
223 ignore_rest_of_line ();
224 return;
225 }
226 type = longint;
227
228 if (get_absolute_expression_and_terminator (&longint) != ',')
229 {
0e389e77 230 as_warn (_(".stab%c: missing comma"), what);
252b5132
RH
231 ignore_rest_of_line ();
232 return;
233 }
234 other = longint;
235
236 desc = get_absolute_expression ();
6360824b
NC
237
238 if ((desc > 0xffff) || (desc < -0x8000))
239 /* This could happen for example with a source file with a huge
240 number of lines. The only cure is to use a different debug
241 format, probably DWARF. */
7193a0e7 242 as_warn (_(".stab%c: description field '%x' too big, try a different debug format"),
6360824b 243 what, desc);
411863a4 244
252b5132
RH
245 if (what == 's' || what == 'n')
246 {
247 if (*input_line_pointer != ',')
248 {
0e389e77 249 as_warn (_(".stab%c: missing comma"), what);
252b5132
RH
250 ignore_rest_of_line ();
251 return;
252 }
253 input_line_pointer++;
254 SKIP_WHITESPACE ();
255 }
256
257#ifdef TC_PPC
258#ifdef OBJ_ELF
259 /* Solaris on PowerPC has decided that .stabd can take 4 arguments, so if we were
260 given 4 arguments, make it a .stabn */
261 else if (what == 'd')
262 {
263 char *save_location = input_line_pointer;
264
265 SKIP_WHITESPACE ();
266 if (*input_line_pointer == ',')
267 {
268 input_line_pointer++;
269 what = 'n';
270 }
271 else
272 input_line_pointer = save_location;
273 }
274#endif /* OBJ_ELF */
275#endif /* TC_PPC */
276
277#ifndef NO_LISTING
278 if (listing)
279 {
280 switch (type)
281 {
282 case N_SLINE:
283 listing_source_line ((unsigned int) desc);
284 break;
285 case N_SO:
286 case N_SOL:
287 listing_source_file (string);
288 break;
289 }
290 }
291#endif /* ! NO_LISTING */
292
293 /* We have now gathered the type, other, and desc information. For
294 .stabs or .stabn, input_line_pointer is now pointing at the
295 value. */
296
297 if (SEPARATE_STAB_SECTIONS)
298 /* Output the stab information in a separate section. This is used
299 at least for COFF and ELF. */
300 {
301 segT saved_seg = now_seg;
302 subsegT saved_subseg = now_subseg;
303 fragS *saved_frag = frag_now;
304 valueT dot;
305 segT seg;
306 unsigned int stroff;
307 char *p;
308
309 static segT cached_sec;
310 static char *cached_secname;
311
312 dot = frag_now_fix ();
313
314#ifdef md_flush_pending_output
315 md_flush_pending_output ();
316#endif
317
318 if (cached_secname && !strcmp (cached_secname, stab_secname))
319 {
320 seg = cached_sec;
321 subseg_set (seg, 0);
322 }
323 else
324 {
325 seg = subseg_new (stab_secname, 0);
326 if (cached_secname)
327 free (cached_secname);
328 cached_secname = xstrdup (stab_secname);
329 cached_sec = seg;
330 }
331
332 if (! seg_info (seg)->hadone)
333 {
334#ifdef BFD_ASSEMBLER
335 bfd_set_section_flags (stdoutput, seg,
336 SEC_READONLY | SEC_RELOC | SEC_DEBUGGING);
337#endif
338#ifdef INIT_STAB_SECTION
339 INIT_STAB_SECTION (seg);
340#endif
341 seg_info (seg)->hadone = 1;
342 }
343
344 stroff = get_stab_string_offset (string, stabstr_secname);
345 if (what == 's')
346 {
d68d4570 347 /* Release the string, if nobody else has used the obstack. */
d1a6c242 348 if (saved_string_obstack_end == notes.next_free)
d68d4570 349 obstack_free (&notes, string);
252b5132
RH
350 }
351
352 /* At least for now, stabs in a special stab section are always
353 output as 12 byte blocks of information. */
354 p = frag_more (8);
355 md_number_to_chars (p, (valueT) stroff, 4);
356 md_number_to_chars (p + 4, (valueT) type, 1);
357 md_number_to_chars (p + 5, (valueT) other, 1);
358 md_number_to_chars (p + 6, (valueT) desc, 2);
359
360 if (what == 's' || what == 'n')
361 {
362 /* Pick up the value from the input line. */
363 cons (4);
364 input_line_pointer--;
365 }
366 else
367 {
252b5132
RH
368 symbolS *symbol;
369 expressionS exp;
370
371 /* Arrange for a value representing the current location. */
756d1d01 372 symbol = symbol_temp_new (saved_seg, dot, saved_frag);
252b5132
RH
373
374 exp.X_op = O_symbol;
375 exp.X_add_symbol = symbol;
376 exp.X_add_number = 0;
377
378 emit_expr (&exp, 4);
379 }
380
381#ifdef OBJ_PROCESS_STAB
382 OBJ_PROCESS_STAB (seg, what, string, type, other, desc);
383#endif
384
385 subseg_set (saved_seg, saved_subseg);
386 }
387 else
388 {
389#ifdef OBJ_PROCESS_STAB
390 OBJ_PROCESS_STAB (0, what, string, type, other, desc);
391#else
392 abort ();
393#endif
394 }
395
396 demand_empty_rest_of_line ();
397}
398
f0e652b4 399/* Regular stab directive. */
252b5132
RH
400
401void
24361518 402s_stab (int what)
252b5132
RH
403{
404 s_stab_generic (what, STAB_SECTION_NAME, STAB_STRING_SECTION_NAME);
405}
406
f0e652b4 407/* "Extended stabs", used in Solaris only now. */
252b5132
RH
408
409void
24361518 410s_xstab (int what)
252b5132
RH
411{
412 int length;
413 char *stab_secname, *stabstr_secname;
414 static char *saved_secname, *saved_strsecname;
415
416 /* @@ MEMORY LEAK: This allocates a copy of the string, but in most
417 cases it will be the same string, so we could release the storage
418 back to the obstack it came from. */
419 stab_secname = demand_copy_C_string (&length);
420 SKIP_WHITESPACE ();
421 if (*input_line_pointer == ',')
422 input_line_pointer++;
423 else
424 {
425 as_bad (_("comma missing in .xstabs"));
426 ignore_rest_of_line ();
427 return;
428 }
429
430 /* To get the name of the stab string section, simply add "str" to
431 the stab section name. */
432 if (saved_secname == 0 || strcmp (saved_secname, stab_secname))
433 {
434 stabstr_secname = (char *) xmalloc (strlen (stab_secname) + 4);
435 strcpy (stabstr_secname, stab_secname);
436 strcat (stabstr_secname, "str");
437 if (saved_secname)
438 {
439 free (saved_secname);
440 free (saved_strsecname);
441 }
442 saved_secname = stab_secname;
443 saved_strsecname = stabstr_secname;
444 }
445 s_stab_generic (what, saved_secname, saved_strsecname);
446}
447
448#ifdef S_SET_DESC
449
450/* Frob invented at RMS' request. Set the n_desc of a symbol. */
451
f0e652b4 452void
252b5132 453s_desc (ignore)
0aa5d426 454 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
455{
456 char *name;
457 char c;
458 char *p;
459 symbolS *symbolP;
460 int temp;
461
462 name = input_line_pointer;
463 c = get_symbol_end ();
464 p = input_line_pointer;
465 *p = c;
466 SKIP_WHITESPACE ();
467 if (*input_line_pointer != ',')
468 {
469 *p = 0;
0e389e77 470 as_bad (_("expected comma after \"%s\""), name);
252b5132
RH
471 *p = c;
472 ignore_rest_of_line ();
473 }
474 else
475 {
476 input_line_pointer++;
477 temp = get_absolute_expression ();
478 *p = 0;
479 symbolP = symbol_find_or_make (name);
480 *p = c;
481 S_SET_DESC (symbolP, temp);
482 }
483 demand_empty_rest_of_line ();
484} /* s_desc() */
485
486#endif /* defined (S_SET_DESC) */
487
488/* Generate stabs debugging information to denote the main source file. */
489
490void
24361518 491stabs_generate_asm_file (void)
252b5132
RH
492{
493 char *file;
494 unsigned int lineno;
495
496 as_where (&file, &lineno);
05da4302
NC
497 if (use_gnu_debug_info_extensions)
498 {
499 char *dir, *dir2;
500
501 dir = getpwd ();
502 dir2 = alloca (strlen (dir) + 2);
503 sprintf (dir2, "%s%s", dir, "/");
504 generate_asm_file (N_SO, dir2);
505 }
252b5132
RH
506 generate_asm_file (N_SO, file);
507}
508
509/* Generate stabs debugging information to denote the source file.
510 TYPE is one of N_SO, N_SOL. */
511
512static void
24361518 513generate_asm_file (int type, char *file)
252b5132
RH
514{
515 static char *last_file;
516 static int label_count;
517 char *hold;
252b5132 518 char sym[30];
604d524f
NC
519 char *buf;
520 char *tmp = file;
521 char *endp = file + strlen (file);
2f01ffbf 522 char *bufp;
43ad3147 523
604d524f
NC
524 if (last_file != NULL
525 && strcmp (last_file, file) == 0)
526 return;
43ad3147 527
252b5132
RH
528 /* Rather than try to do this in some efficient fashion, we just
529 generate a string and then parse it again. That lets us use the
530 existing stabs hook, which expect to see a string, rather than
531 inventing new ones. */
252b5132
RH
532 hold = input_line_pointer;
533
604d524f
NC
534 sprintf (sym, "%sF%d", FAKE_LABEL_NAME, label_count);
535 ++label_count;
536
537 /* Allocate enough space for the file name (possibly extended with
538 doubled up backslashes), the symbol name, and the other characters
539 that make up a stabs file directive. */
540 bufp = buf = xmalloc (2 * strlen (file) + strlen (sym) + 12);
43ad3147 541
604d524f
NC
542 *bufp++ = '"';
543
544 while (tmp < endp)
252b5132 545 {
604d524f 546 char *bslash = strchr (tmp, '\\');
37ffda10 547 size_t len = (bslash) ? (size_t) (bslash - tmp + 1) : strlen (tmp);
43ad3147 548
604d524f
NC
549 /* Double all backslashes, since demand_copy_C_string (used by
550 s_stab to extract the part in quotes) will try to replace them as
551 escape sequences. backslash may appear in a filespec. */
552 strncpy (bufp, tmp, len);
43ad3147 553
604d524f
NC
554 tmp += len;
555 bufp += len;
556
557 if (bslash != NULL)
558 *bufp++ = '\\';
252b5132
RH
559 }
560
604d524f
NC
561 sprintf (bufp, "\",%d,0,0,%s\n", type, sym);
562
563 input_line_pointer = buf;
564 s_stab ('s');
565 colon (sym);
566
567 if (last_file != NULL)
568 free (last_file);
569 last_file = xstrdup (file);
43ad3147 570
210dcc61 571 free (buf);
604d524f
NC
572
573 input_line_pointer = hold;
252b5132
RH
574}
575
576/* Generate stabs debugging information for the current line. This is
577 used to produce debugging information for an assembler file. */
578
579void
24361518 580stabs_generate_asm_lineno (void)
252b5132
RH
581{
582 static int label_count;
583 char *hold;
584 char *file;
585 unsigned int lineno;
586 char *buf;
587 char sym[30];
d1a6c242 588 /* Remember the last file/line and avoid duplicates. */
1ea5c325
MS
589 static unsigned int prev_lineno = -1;
590 static char *prev_file = NULL;
bccba5f0 591
252b5132
RH
592 /* Rather than try to do this in some efficient fashion, we just
593 generate a string and then parse it again. That lets us use the
594 existing stabs hook, which expect to see a string, rather than
595 inventing new ones. */
596
597 hold = input_line_pointer;
598
599 as_where (&file, &lineno);
600
d1a6c242 601 /* Don't emit sequences of stabs for the same line. */
1ea5c325
MS
602 if (prev_file == NULL)
603 {
d1a6c242 604 /* First time thru. */
1ea5c325
MS
605 prev_file = xstrdup (file);
606 prev_lineno = lineno;
607 }
608 else if (lineno == prev_lineno
609 && strcmp (file, prev_file) == 0)
610 {
d1a6c242 611 /* Same file/line as last time. */
1ea5c325
MS
612 return;
613 }
614 else
615 {
d1a6c242 616 /* Remember file/line for next time. */
1ea5c325
MS
617 prev_lineno = lineno;
618 if (strcmp (file, prev_file) != 0)
619 {
620 free (prev_file);
621 prev_file = xstrdup (file);
622 }
623 }
624
625 /* Let the world know that we are in the middle of generating a
626 piece of stabs line debugging information. */
627 outputting_stabs_line_debug = 1;
628
252b5132
RH
629 generate_asm_file (N_SOL, file);
630
631 sprintf (sym, "%sL%d", FAKE_LABEL_NAME, label_count);
632 ++label_count;
633
634 if (in_dot_func_p)
635 {
636 buf = (char *) alloca (100 + strlen (current_function_label));
637 sprintf (buf, "%d,0,%d,%s-%s\n", N_SLINE, lineno,
638 sym, current_function_label);
639 }
640 else
641 {
642 buf = (char *) alloca (100);
643 sprintf (buf, "%d,0,%d,%s\n", N_SLINE, lineno, sym);
644 }
645 input_line_pointer = buf;
646 s_stab ('n');
647 colon (sym);
648
649 input_line_pointer = hold;
bccba5f0 650 outputting_stabs_line_debug = 0;
252b5132
RH
651}
652
653/* Emit a function stab.
654 All assembler functions are assumed to have return type `void'. */
655
656void
24361518 657stabs_generate_asm_func (const char *funcname, const char *startlabname)
252b5132
RH
658{
659 static int void_emitted_p;
660 char *hold = input_line_pointer;
661 char *buf;
662 char *file;
663 unsigned int lineno;
664
665 if (! void_emitted_p)
666 {
667 input_line_pointer = "\"void:t1=1\",128,0,0,0";
668 s_stab ('s');
669 void_emitted_p = 1;
670 }
671
672 as_where (&file, &lineno);
673 asprintf (&buf, "\"%s:F1\",%d,0,%d,%s",
674 funcname, N_FUN, lineno + 1, startlabname);
675 input_line_pointer = buf;
676 s_stab ('s');
677 free (buf);
678
679 input_line_pointer = hold;
680 current_function_label = xstrdup (startlabname);
681 in_dot_func_p = 1;
682}
683
684/* Emit a stab to record the end of a function. */
685
686void
24361518
KH
687stabs_generate_asm_endfunc (const char *funcname ATTRIBUTE_UNUSED,
688 const char *startlabname)
252b5132
RH
689{
690 static int label_count;
691 char *hold = input_line_pointer;
692 char *buf;
693 char sym[30];
694
695 sprintf (sym, "%sendfunc%d", FAKE_LABEL_NAME, label_count);
696 ++label_count;
697 colon (sym);
698
699 asprintf (&buf, "\"\",%d,0,0,%s-%s", N_FUN, sym, startlabname);
700 input_line_pointer = buf;
701 s_stab ('s');
702 free (buf);
703
704 input_line_pointer = hold;
705 in_dot_func_p = 0;
706 current_function_label = NULL;
707}
This page took 0.289573 seconds and 4 git commands to generate.