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