1 /* Dwarf2 assembler output helper routines.
2 Copyright (C) 2001-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
30 #include "stringpool.h"
35 #include "dwarf2asm.h"
40 /* Output an unaligned integer with the given value and size. Prefer not
41 to print a newline, since the caller may want to add a comment. */
44 dw2_assemble_integer (int size
, rtx x
)
46 const char *op
= integer_asm_op (size
, FALSE
);
50 fputs (op
, asm_out_file
);
52 fprint_whex (asm_out_file
, (unsigned HOST_WIDE_INT
) INTVAL (x
));
54 output_addr_const (asm_out_file
, x
);
57 assemble_integer (x
, size
, BITS_PER_UNIT
, 1);
61 /* Output a value of a given size in target byte order. */
64 dw2_asm_output_data_raw (int size
, unsigned HOST_WIDE_INT value
)
66 unsigned char bytes
[8];
69 for (i
= 0; i
< 8; ++i
)
71 bytes
[i
] = value
& 0xff;
77 for (i
= size
- 1; i
> 0; --i
)
78 fprintf (asm_out_file
, "%#x,", bytes
[i
]);
79 fprintf (asm_out_file
, "%#x", bytes
[0]);
83 for (i
= 0; i
< size
- 1; ++i
)
84 fprintf (asm_out_file
, "%#x,", bytes
[i
]);
85 fprintf (asm_out_file
, "%#x", bytes
[i
]);
89 /* Output an immediate constant in a given SIZE in bytes. */
92 dw2_asm_output_data (int size
, unsigned HOST_WIDE_INT value
,
93 const char *comment
, ...)
96 const char *op
= integer_asm_op (size
, FALSE
);
98 va_start (ap
, comment
);
100 if (size
* 8 < HOST_BITS_PER_WIDE_INT
)
101 value
&= ~(~(unsigned HOST_WIDE_INT
) 0 << (size
* 8));
105 fputs (op
, asm_out_file
);
106 fprint_whex (asm_out_file
, value
);
109 assemble_integer (GEN_INT (value
), size
, BITS_PER_UNIT
, 1);
111 if (flag_debug_asm
&& comment
)
113 fputs ("\t" ASM_COMMENT_START
" ", asm_out_file
);
114 vfprintf (asm_out_file
, comment
, ap
);
116 putc ('\n', asm_out_file
);
121 /* Output the difference between two symbols in a given size. */
122 /* ??? There appear to be assemblers that do not like such
123 subtraction, but do support ASM_SET_OP. It's unfortunately
124 impossible to do here, since the ASM_SET_OP for the difference
125 symbol must appear after both symbols are defined. */
128 dw2_asm_output_delta (int size
, const char *lab1
, const char *lab2
,
129 const char *comment
, ...)
133 va_start (ap
, comment
);
135 #ifdef ASM_OUTPUT_DWARF_DELTA
136 ASM_OUTPUT_DWARF_DELTA (asm_out_file
, size
, lab1
, lab2
);
138 dw2_assemble_integer (size
,
139 gen_rtx_MINUS (Pmode
,
140 gen_rtx_SYMBOL_REF (Pmode
, lab1
),
141 gen_rtx_SYMBOL_REF (Pmode
, lab2
)));
143 if (flag_debug_asm
&& comment
)
145 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
146 vfprintf (asm_out_file
, comment
, ap
);
148 fputc ('\n', asm_out_file
);
153 #ifdef ASM_OUTPUT_DWARF_VMS_DELTA
154 /* Output the difference between two symbols in instruction units
158 dw2_asm_output_vms_delta (int size ATTRIBUTE_UNUSED
,
159 const char *lab1
, const char *lab2
,
160 const char *comment
, ...)
164 va_start (ap
, comment
);
166 ASM_OUTPUT_DWARF_VMS_DELTA (asm_out_file
, size
, lab1
, lab2
);
167 if (flag_debug_asm
&& comment
)
169 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
170 vfprintf (asm_out_file
, comment
, ap
);
172 fputc ('\n', asm_out_file
);
178 /* Output a section-relative reference to a LABEL, which was placed in
179 BASE. In general this can only be done for debugging symbols.
180 E.g. on most targets with the GNU linker, this is accomplished with
181 a direct reference and the knowledge that the debugging section
182 will be placed at VMA 0. Some targets have special relocations for
183 this that we must use. */
186 dw2_asm_output_offset (int size
, const char *label
,
187 section
*base ATTRIBUTE_UNUSED
,
188 const char *comment
, ...)
192 va_start (ap
, comment
);
194 #ifdef ASM_OUTPUT_DWARF_OFFSET
195 ASM_OUTPUT_DWARF_OFFSET (asm_out_file
, size
, label
, base
);
197 dw2_assemble_integer (size
, gen_rtx_SYMBOL_REF (Pmode
, label
));
200 if (flag_debug_asm
&& comment
)
202 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
203 vfprintf (asm_out_file
, comment
, ap
);
205 fputc ('\n', asm_out_file
);
212 /* Output a self-relative reference to a label, possibly in a
213 different section or object file. */
216 dw2_asm_output_pcrel (int size ATTRIBUTE_UNUSED
,
217 const char *label ATTRIBUTE_UNUSED
,
218 const char *comment
, ...)
222 va_start (ap
, comment
);
224 #ifdef ASM_OUTPUT_DWARF_PCREL
225 ASM_OUTPUT_DWARF_PCREL (asm_out_file
, size
, label
);
227 dw2_assemble_integer (size
,
228 gen_rtx_MINUS (Pmode
,
229 gen_rtx_SYMBOL_REF (Pmode
, label
),
233 if (flag_debug_asm
&& comment
)
235 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
236 vfprintf (asm_out_file
, comment
, ap
);
238 fputc ('\n', asm_out_file
);
244 /* Output an absolute reference to a label. */
247 dw2_asm_output_addr (int size
, const char *label
,
248 const char *comment
, ...)
252 va_start (ap
, comment
);
254 dw2_assemble_integer (size
, gen_rtx_SYMBOL_REF (Pmode
, label
));
256 if (flag_debug_asm
&& comment
)
258 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
259 vfprintf (asm_out_file
, comment
, ap
);
261 fputc ('\n', asm_out_file
);
266 /* Similar, but use an RTX expression instead of a text label. */
269 dw2_asm_output_addr_rtx (int size
, rtx addr
,
270 const char *comment
, ...)
274 va_start (ap
, comment
);
276 dw2_assemble_integer (size
, addr
);
278 if (flag_debug_asm
&& comment
)
280 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
281 vfprintf (asm_out_file
, comment
, ap
);
283 fputc ('\n', asm_out_file
);
288 /* Output the first ORIG_LEN characters of STR as a string.
289 If ORIG_LEN is equal to -1, ignore this parameter and output
290 the entire STR instead.
291 If COMMENT is not NULL and comments in the debug information
292 have been requested by the user, append the given COMMENT
293 to the generated output. */
296 dw2_asm_output_nstring (const char *str
, size_t orig_len
,
297 const char *comment
, ...)
302 va_start (ap
, comment
);
306 if (len
== (size_t) -1)
309 if (flag_debug_asm
&& comment
)
311 fputs ("\t.ascii \"", asm_out_file
);
312 for (i
= 0; i
< len
; i
++)
315 if (c
== '\"' || c
== '\\')
316 fputc ('\\', asm_out_file
);
318 fputc (c
, asm_out_file
);
320 fprintf (asm_out_file
, "\\%o", c
);
322 fprintf (asm_out_file
, "\\0\"\t%s ", ASM_COMMENT_START
);
323 vfprintf (asm_out_file
, comment
, ap
);
324 fputc ('\n', asm_out_file
);
328 /* If an explicit length was given, we can't assume there
329 is a null termination in the string buffer. */
330 if (orig_len
== (size_t) -1)
332 ASM_OUTPUT_ASCII (asm_out_file
, str
, len
);
333 if (orig_len
!= (size_t) -1)
334 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
341 /* Return the size of an unsigned LEB128 quantity. */
344 size_of_uleb128 (unsigned HOST_WIDE_INT value
)
358 /* Return the size of a signed LEB128 quantity. */
361 size_of_sleb128 (HOST_WIDE_INT value
)
367 byte
= (value
& 0x7f);
371 while (!((value
== 0 && (byte
& 0x40) == 0)
372 || (value
== -1 && (byte
& 0x40) != 0)));
377 /* Given an encoding, return the number of bytes the format occupies.
378 This is only defined for fixed-size encodings, and so does not
382 size_of_encoded_value (int encoding
)
384 if (encoding
== DW_EH_PE_omit
)
387 switch (encoding
& 0x07)
389 case DW_EH_PE_absptr
:
390 return POINTER_SIZE_UNITS
;
391 case DW_EH_PE_udata2
:
393 case DW_EH_PE_udata4
:
395 case DW_EH_PE_udata8
:
402 /* Yield a name for a given pointer encoding. */
405 eh_data_format_name (int format
)
407 #if HAVE_DESIGNATED_INITIALIZERS
408 #define S(p, v) [p] = v,
410 #define S(p, v) case p: return v;
413 #if HAVE_DESIGNATED_INITIALIZERS
414 __extension__
static const char * const format_names
[256] = {
419 S(DW_EH_PE_absptr
, "absolute")
420 S(DW_EH_PE_omit
, "omit")
421 S(DW_EH_PE_aligned
, "aligned absolute")
423 S(DW_EH_PE_uleb128
, "uleb128")
424 S(DW_EH_PE_udata2
, "udata2")
425 S(DW_EH_PE_udata4
, "udata4")
426 S(DW_EH_PE_udata8
, "udata8")
427 S(DW_EH_PE_sleb128
, "sleb128")
428 S(DW_EH_PE_sdata2
, "sdata2")
429 S(DW_EH_PE_sdata4
, "sdata4")
430 S(DW_EH_PE_sdata8
, "sdata8")
432 S(DW_EH_PE_absptr
| DW_EH_PE_pcrel
, "pcrel")
433 S(DW_EH_PE_uleb128
| DW_EH_PE_pcrel
, "pcrel uleb128")
434 S(DW_EH_PE_udata2
| DW_EH_PE_pcrel
, "pcrel udata2")
435 S(DW_EH_PE_udata4
| DW_EH_PE_pcrel
, "pcrel udata4")
436 S(DW_EH_PE_udata8
| DW_EH_PE_pcrel
, "pcrel udata8")
437 S(DW_EH_PE_sleb128
| DW_EH_PE_pcrel
, "pcrel sleb128")
438 S(DW_EH_PE_sdata2
| DW_EH_PE_pcrel
, "pcrel sdata2")
439 S(DW_EH_PE_sdata4
| DW_EH_PE_pcrel
, "pcrel sdata4")
440 S(DW_EH_PE_sdata8
| DW_EH_PE_pcrel
, "pcrel sdata8")
442 S(DW_EH_PE_absptr
| DW_EH_PE_textrel
, "textrel")
443 S(DW_EH_PE_uleb128
| DW_EH_PE_textrel
, "textrel uleb128")
444 S(DW_EH_PE_udata2
| DW_EH_PE_textrel
, "textrel udata2")
445 S(DW_EH_PE_udata4
| DW_EH_PE_textrel
, "textrel udata4")
446 S(DW_EH_PE_udata8
| DW_EH_PE_textrel
, "textrel udata8")
447 S(DW_EH_PE_sleb128
| DW_EH_PE_textrel
, "textrel sleb128")
448 S(DW_EH_PE_sdata2
| DW_EH_PE_textrel
, "textrel sdata2")
449 S(DW_EH_PE_sdata4
| DW_EH_PE_textrel
, "textrel sdata4")
450 S(DW_EH_PE_sdata8
| DW_EH_PE_textrel
, "textrel sdata8")
452 S(DW_EH_PE_absptr
| DW_EH_PE_datarel
, "datarel")
453 S(DW_EH_PE_uleb128
| DW_EH_PE_datarel
, "datarel uleb128")
454 S(DW_EH_PE_udata2
| DW_EH_PE_datarel
, "datarel udata2")
455 S(DW_EH_PE_udata4
| DW_EH_PE_datarel
, "datarel udata4")
456 S(DW_EH_PE_udata8
| DW_EH_PE_datarel
, "datarel udata8")
457 S(DW_EH_PE_sleb128
| DW_EH_PE_datarel
, "datarel sleb128")
458 S(DW_EH_PE_sdata2
| DW_EH_PE_datarel
, "datarel sdata2")
459 S(DW_EH_PE_sdata4
| DW_EH_PE_datarel
, "datarel sdata4")
460 S(DW_EH_PE_sdata8
| DW_EH_PE_datarel
, "datarel sdata8")
462 S(DW_EH_PE_absptr
| DW_EH_PE_funcrel
, "funcrel")
463 S(DW_EH_PE_uleb128
| DW_EH_PE_funcrel
, "funcrel uleb128")
464 S(DW_EH_PE_udata2
| DW_EH_PE_funcrel
, "funcrel udata2")
465 S(DW_EH_PE_udata4
| DW_EH_PE_funcrel
, "funcrel udata4")
466 S(DW_EH_PE_udata8
| DW_EH_PE_funcrel
, "funcrel udata8")
467 S(DW_EH_PE_sleb128
| DW_EH_PE_funcrel
, "funcrel sleb128")
468 S(DW_EH_PE_sdata2
| DW_EH_PE_funcrel
, "funcrel sdata2")
469 S(DW_EH_PE_sdata4
| DW_EH_PE_funcrel
, "funcrel sdata4")
470 S(DW_EH_PE_sdata8
| DW_EH_PE_funcrel
, "funcrel sdata8")
472 S(DW_EH_PE_indirect
| DW_EH_PE_absptr
, "indirect absolute")
474 S(DW_EH_PE_indirect
| DW_EH_PE_absptr
| DW_EH_PE_pcrel
,
476 S(DW_EH_PE_indirect
| DW_EH_PE_uleb128
| DW_EH_PE_pcrel
,
477 "indirect pcrel uleb128")
478 S(DW_EH_PE_indirect
| DW_EH_PE_udata2
| DW_EH_PE_pcrel
,
479 "indirect pcrel udata2")
480 S(DW_EH_PE_indirect
| DW_EH_PE_udata4
| DW_EH_PE_pcrel
,
481 "indirect pcrel udata4")
482 S(DW_EH_PE_indirect
| DW_EH_PE_udata8
| DW_EH_PE_pcrel
,
483 "indirect pcrel udata8")
484 S(DW_EH_PE_indirect
| DW_EH_PE_sleb128
| DW_EH_PE_pcrel
,
485 "indirect pcrel sleb128")
486 S(DW_EH_PE_indirect
| DW_EH_PE_sdata2
| DW_EH_PE_pcrel
,
487 "indirect pcrel sdata2")
488 S(DW_EH_PE_indirect
| DW_EH_PE_sdata4
| DW_EH_PE_pcrel
,
489 "indirect pcrel sdata4")
490 S(DW_EH_PE_indirect
| DW_EH_PE_sdata8
| DW_EH_PE_pcrel
,
491 "indirect pcrel sdata8")
493 S(DW_EH_PE_indirect
| DW_EH_PE_absptr
| DW_EH_PE_textrel
,
495 S(DW_EH_PE_indirect
| DW_EH_PE_uleb128
| DW_EH_PE_textrel
,
496 "indirect textrel uleb128")
497 S(DW_EH_PE_indirect
| DW_EH_PE_udata2
| DW_EH_PE_textrel
,
498 "indirect textrel udata2")
499 S(DW_EH_PE_indirect
| DW_EH_PE_udata4
| DW_EH_PE_textrel
,
500 "indirect textrel udata4")
501 S(DW_EH_PE_indirect
| DW_EH_PE_udata8
| DW_EH_PE_textrel
,
502 "indirect textrel udata8")
503 S(DW_EH_PE_indirect
| DW_EH_PE_sleb128
| DW_EH_PE_textrel
,
504 "indirect textrel sleb128")
505 S(DW_EH_PE_indirect
| DW_EH_PE_sdata2
| DW_EH_PE_textrel
,
506 "indirect textrel sdata2")
507 S(DW_EH_PE_indirect
| DW_EH_PE_sdata4
| DW_EH_PE_textrel
,
508 "indirect textrel sdata4")
509 S(DW_EH_PE_indirect
| DW_EH_PE_sdata8
| DW_EH_PE_textrel
,
510 "indirect textrel sdata8")
512 S(DW_EH_PE_indirect
| DW_EH_PE_absptr
| DW_EH_PE_datarel
,
514 S(DW_EH_PE_indirect
| DW_EH_PE_uleb128
| DW_EH_PE_datarel
,
515 "indirect datarel uleb128")
516 S(DW_EH_PE_indirect
| DW_EH_PE_udata2
| DW_EH_PE_datarel
,
517 "indirect datarel udata2")
518 S(DW_EH_PE_indirect
| DW_EH_PE_udata4
| DW_EH_PE_datarel
,
519 "indirect datarel udata4")
520 S(DW_EH_PE_indirect
| DW_EH_PE_udata8
| DW_EH_PE_datarel
,
521 "indirect datarel udata8")
522 S(DW_EH_PE_indirect
| DW_EH_PE_sleb128
| DW_EH_PE_datarel
,
523 "indirect datarel sleb128")
524 S(DW_EH_PE_indirect
| DW_EH_PE_sdata2
| DW_EH_PE_datarel
,
525 "indirect datarel sdata2")
526 S(DW_EH_PE_indirect
| DW_EH_PE_sdata4
| DW_EH_PE_datarel
,
527 "indirect datarel sdata4")
528 S(DW_EH_PE_indirect
| DW_EH_PE_sdata8
| DW_EH_PE_datarel
,
529 "indirect datarel sdata8")
531 S(DW_EH_PE_indirect
| DW_EH_PE_absptr
| DW_EH_PE_funcrel
,
533 S(DW_EH_PE_indirect
| DW_EH_PE_uleb128
| DW_EH_PE_funcrel
,
534 "indirect funcrel uleb128")
535 S(DW_EH_PE_indirect
| DW_EH_PE_udata2
| DW_EH_PE_funcrel
,
536 "indirect funcrel udata2")
537 S(DW_EH_PE_indirect
| DW_EH_PE_udata4
| DW_EH_PE_funcrel
,
538 "indirect funcrel udata4")
539 S(DW_EH_PE_indirect
| DW_EH_PE_udata8
| DW_EH_PE_funcrel
,
540 "indirect funcrel udata8")
541 S(DW_EH_PE_indirect
| DW_EH_PE_sleb128
| DW_EH_PE_funcrel
,
542 "indirect funcrel sleb128")
543 S(DW_EH_PE_indirect
| DW_EH_PE_sdata2
| DW_EH_PE_funcrel
,
544 "indirect funcrel sdata2")
545 S(DW_EH_PE_indirect
| DW_EH_PE_sdata4
| DW_EH_PE_funcrel
,
546 "indirect funcrel sdata4")
547 S(DW_EH_PE_indirect
| DW_EH_PE_sdata8
| DW_EH_PE_funcrel
,
548 "indirect funcrel sdata8")
550 #if HAVE_DESIGNATED_INITIALIZERS
553 gcc_assert (format
>= 0 && format
< 0x100 && format_names
[format
]);
555 return format_names
[format
];
562 /* Output an unsigned LEB128 quantity, but only the byte values. */
565 dw2_asm_output_data_uleb128_raw (unsigned HOST_WIDE_INT value
)
569 int byte
= (value
& 0x7f);
572 /* More bytes to follow. */
575 fprintf (asm_out_file
, "%#x", byte
);
578 fputc (',', asm_out_file
);
582 /* Output an unsigned LEB128 quantity. */
585 dw2_asm_output_data_uleb128 (unsigned HOST_WIDE_INT value
,
586 const char *comment
, ...)
590 va_start (ap
, comment
);
592 #ifdef HAVE_AS_LEB128
593 fputs ("\t.uleb128 ", asm_out_file
);
594 fprint_whex (asm_out_file
, value
);
596 if (flag_debug_asm
&& comment
)
598 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
599 vfprintf (asm_out_file
, comment
, ap
);
603 unsigned HOST_WIDE_INT work
= value
;
604 const char *byte_op
= targetm
.asm_out
.byte_op
;
607 fputs (byte_op
, asm_out_file
);
610 int byte
= (work
& 0x7f);
613 /* More bytes to follow. */
618 fprintf (asm_out_file
, "%#x", byte
);
620 fputc (',', asm_out_file
);
623 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
629 fprintf (asm_out_file
, "\t%s uleb128 " HOST_WIDE_INT_PRINT_HEX
,
630 ASM_COMMENT_START
, value
);
633 fputs ("; ", asm_out_file
);
634 vfprintf (asm_out_file
, comment
, ap
);
639 putc ('\n', asm_out_file
);
644 /* Output an signed LEB128 quantity, but only the byte values. */
647 dw2_asm_output_data_sleb128_raw (HOST_WIDE_INT value
)
653 byte
= (value
& 0x7f);
655 more
= !((value
== 0 && (byte
& 0x40) == 0)
656 || (value
== -1 && (byte
& 0x40) != 0));
660 fprintf (asm_out_file
, "%#x", byte
);
663 fputc (',', asm_out_file
);
667 /* Output a signed LEB128 quantity. */
670 dw2_asm_output_data_sleb128 (HOST_WIDE_INT value
,
671 const char *comment
, ...)
675 va_start (ap
, comment
);
677 #ifdef HAVE_AS_LEB128
678 fprintf (asm_out_file
, "\t.sleb128 " HOST_WIDE_INT_PRINT_DEC
, value
);
680 if (flag_debug_asm
&& comment
)
682 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
683 vfprintf (asm_out_file
, comment
, ap
);
687 HOST_WIDE_INT work
= value
;
689 const char *byte_op
= targetm
.asm_out
.byte_op
;
692 fputs (byte_op
, asm_out_file
);
695 byte
= (work
& 0x7f);
696 /* arithmetic shift */
698 more
= !((work
== 0 && (byte
& 0x40) == 0)
699 || (work
== -1 && (byte
& 0x40) != 0));
705 fprintf (asm_out_file
, "%#x", byte
);
707 fputc (',', asm_out_file
);
710 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
716 fprintf (asm_out_file
, "\t%s sleb128 " HOST_WIDE_INT_PRINT_DEC
,
717 ASM_COMMENT_START
, value
);
720 fputs ("; ", asm_out_file
);
721 vfprintf (asm_out_file
, comment
, ap
);
726 fputc ('\n', asm_out_file
);
732 dw2_asm_output_delta_uleb128 (const char *lab1 ATTRIBUTE_UNUSED
,
733 const char *lab2 ATTRIBUTE_UNUSED
,
734 const char *comment
, ...)
738 va_start (ap
, comment
);
740 #ifdef HAVE_AS_LEB128
741 fputs ("\t.uleb128 ", asm_out_file
);
742 assemble_name (asm_out_file
, lab1
);
743 putc ('-', asm_out_file
);
744 assemble_name (asm_out_file
, lab2
);
749 if (flag_debug_asm
&& comment
)
751 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
752 vfprintf (asm_out_file
, comment
, ap
);
754 fputc ('\n', asm_out_file
);
762 dw2_asm_output_delta_sleb128 (const char *lab1 ATTRIBUTE_UNUSED
,
763 const char *lab2 ATTRIBUTE_UNUSED
,
764 const char *comment
, ...)
768 va_start (ap
, comment
);
770 #ifdef HAVE_AS_LEB128
771 fputs ("\t.sleb128 ", asm_out_file
);
772 assemble_name (asm_out_file
, lab1
);
773 putc ('-', asm_out_file
);
774 assemble_name (asm_out_file
, lab2
);
779 if (flag_debug_asm
&& comment
)
781 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
782 vfprintf (asm_out_file
, comment
, ap
);
784 fputc ('\n', asm_out_file
);
790 static GTY(()) hash_map
<const char *, tree
> *indirect_pool
;
792 static GTY(()) int dw2_const_labelno
;
794 #if defined(HAVE_GAS_HIDDEN)
795 # define USE_LINKONCE_INDIRECT (SUPPORTS_ONE_ONLY)
797 # define USE_LINKONCE_INDIRECT 0
800 /* Compare two std::pair<const char *, tree> by their first element.
802 >0 to indicate whether K1 is less than, equal to, or greater than
806 compare_strings (const void *a
, const void *b
)
808 const char *s1
= ((const std::pair
<const char *, tree
> *) a
)->first
;
809 const char *s2
= ((const std::pair
<const char *, tree
> *) b
)->first
;
815 ret
= strcmp (s1
, s2
);
817 /* The strings are always those from IDENTIFIER_NODEs, and,
818 therefore, we should never have two copies of the same
825 /* Put X, a SYMBOL_REF, in memory. Return a SYMBOL_REF to the allocated
826 memory. Differs from force_const_mem in that a single pool is used for
827 the entire unit of translation, and the memory is not guaranteed to be
828 "near" the function in any interesting sense. IS_PUBLIC controls whether
829 the symbol can be shared across the entire application (or DSO). */
832 dw2_force_const_mem (rtx x
, bool is_public
)
838 indirect_pool
= hash_map
<const char *, tree
>::create_ggc (64);
840 gcc_assert (GET_CODE (x
) == SYMBOL_REF
);
843 tree
*slot
= indirect_pool
->get (key
);
849 const char *str
= targetm
.strip_name_encoding (key
);
851 if (is_public
&& USE_LINKONCE_INDIRECT
)
853 char *ref_name
= XALLOCAVEC (char, strlen (str
) + sizeof "DW.ref.");
855 sprintf (ref_name
, "DW.ref.%s", str
);
856 gcc_assert (!maybe_get_identifier (ref_name
));
857 decl_id
= get_identifier (ref_name
);
858 TREE_PUBLIC (decl_id
) = 1;
864 ASM_GENERATE_INTERNAL_LABEL (label
, "LDFCM", dw2_const_labelno
);
866 gcc_assert (!maybe_get_identifier (label
));
867 decl_id
= get_identifier (label
);
870 id
= maybe_get_identifier (str
);
872 TREE_SYMBOL_REFERENCED (id
) = 1;
874 indirect_pool
->put (key
, decl_id
);
877 return gen_rtx_SYMBOL_REF (Pmode
, IDENTIFIER_POINTER (decl_id
));
880 /* A helper function for dw2_output_indirect_constants. Emit one queued
881 constant to memory. */
884 dw2_output_indirect_constant_1 (const char *sym
, tree id
)
889 decl
= build_decl (UNKNOWN_LOCATION
, VAR_DECL
, id
, ptr_type_node
);
890 SET_DECL_ASSEMBLER_NAME (decl
, id
);
891 DECL_ARTIFICIAL (decl
) = 1;
892 DECL_IGNORED_P (decl
) = 1;
893 DECL_INITIAL (decl
) = decl
;
894 TREE_READONLY (decl
) = 1;
895 TREE_STATIC (decl
) = 1;
897 if (TREE_PUBLIC (id
))
899 TREE_PUBLIC (decl
) = 1;
900 make_decl_one_only (decl
, DECL_ASSEMBLER_NAME (decl
));
901 if (USE_LINKONCE_INDIRECT
)
902 DECL_VISIBILITY (decl
) = VISIBILITY_HIDDEN
;
905 sym_ref
= gen_rtx_SYMBOL_REF (Pmode
, sym
);
906 assemble_variable (decl
, 1, 1, 1);
907 assemble_integer (sym_ref
, POINTER_SIZE_UNITS
, POINTER_SIZE
, 1);
912 /* Emit the constants queued through dw2_force_const_mem. */
915 dw2_output_indirect_constants (void)
920 auto_vec
<std::pair
<const char *, tree
> > temp (indirect_pool
->elements ());
921 for (hash_map
<const char *, tree
>::iterator iter
= indirect_pool
->begin ();
922 iter
!= indirect_pool
->end (); ++iter
)
923 temp
.quick_push (*iter
);
925 temp
.qsort (compare_strings
);
927 for (unsigned int i
= 0; i
< temp
.length (); i
++)
928 dw2_output_indirect_constant_1 (temp
[i
].first
, temp
[i
].second
);
931 /* Like dw2_asm_output_addr_rtx, but encode the pointer as directed.
932 If PUBLIC is set and the encoding is DW_EH_PE_indirect, the indirect
933 reference is shared across the entire application (or DSO). */
936 dw2_asm_output_encoded_addr_rtx (int encoding
, rtx addr
, bool is_public
,
937 const char *comment
, ...)
942 va_start (ap
, comment
);
944 size
= size_of_encoded_value (encoding
);
946 if (encoding
== DW_EH_PE_aligned
)
948 assemble_align (POINTER_SIZE
);
949 assemble_integer (addr
, size
, POINTER_SIZE
, 1);
954 /* NULL is _always_ represented as a plain zero, as is 1 for Ada's
956 if (addr
== const0_rtx
|| addr
== const1_rtx
)
957 assemble_integer (addr
, size
, BITS_PER_UNIT
, 1);
961 /* Allow the target first crack at emitting this. Some of the
962 special relocations require special directives instead of
963 just ".4byte" or whatever. */
964 #ifdef ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX
965 ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX (asm_out_file
, encoding
, size
,
969 /* Indirection is used to get dynamic relocations out of a
970 read-only section. */
971 if (encoding
& DW_EH_PE_indirect
)
973 /* It is very tempting to use force_const_mem so that we share data
974 with the normal constant pool. However, we've already emitted
975 the constant pool for this function. Moreover, we'd like to
976 share these constants across the entire unit of translation and
977 even, if possible, across the entire application (or DSO). */
978 addr
= dw2_force_const_mem (addr
, is_public
);
979 encoding
&= ~DW_EH_PE_indirect
;
983 switch (encoding
& 0xF0)
985 case DW_EH_PE_absptr
:
986 dw2_assemble_integer (size
, addr
);
990 gcc_assert (GET_CODE (addr
) == SYMBOL_REF
);
991 #ifdef ASM_OUTPUT_DWARF_PCREL
992 ASM_OUTPUT_DWARF_PCREL (asm_out_file
, size
, XSTR (addr
, 0));
994 dw2_assemble_integer (size
, gen_rtx_MINUS (Pmode
, addr
, pc_rtx
));
999 /* Other encodings should have been handled by
1000 ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX. */
1004 #ifdef ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX
1009 if (flag_debug_asm
&& comment
)
1011 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
1012 vfprintf (asm_out_file
, comment
, ap
);
1014 fputc ('\n', asm_out_file
);
1019 #include "gt-dwarf2asm.h"