1 /* Dwarf2 assembler output helper routines.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
31 #include "dwarf2asm.h"
33 #include "splay-tree.h"
38 /* How to start an assembler comment. */
39 #ifndef ASM_COMMENT_START
40 #define ASM_COMMENT_START ";#"
44 /* Output an unaligned integer with the given value and size. Prefer not
45 to print a newline, since the caller may want to add a comment. */
48 dw2_assemble_integer (int size
, rtx x
)
50 const char *op
= integer_asm_op (size
, FALSE
);
54 fputs (op
, asm_out_file
);
56 fprintf (asm_out_file
, HOST_WIDE_INT_PRINT_HEX
,
57 (unsigned HOST_WIDE_INT
) INTVAL (x
));
59 output_addr_const (asm_out_file
, x
);
62 assemble_integer (x
, size
, BITS_PER_UNIT
, 1);
66 /* Output a value of a given size in target byte order. */
69 dw2_asm_output_data_raw (int size
, unsigned HOST_WIDE_INT value
)
71 unsigned char bytes
[8];
74 for (i
= 0; i
< 8; ++i
)
76 bytes
[i
] = value
& 0xff;
82 for (i
= size
- 1; i
> 0; --i
)
83 fprintf (asm_out_file
, "%#x,", bytes
[i
]);
84 fprintf (asm_out_file
, "%#x", bytes
[0]);
88 for (i
= 0; i
< size
- 1; ++i
)
89 fprintf (asm_out_file
, "%#x,", bytes
[i
]);
90 fprintf (asm_out_file
, "%#x", bytes
[i
]);
94 /* Output an immediate constant in a given SIZE in bytes. */
97 dw2_asm_output_data (int size
, unsigned HOST_WIDE_INT value
,
98 const char *comment
, ...)
101 const char *op
= integer_asm_op (size
, FALSE
);
103 va_start (ap
, comment
);
105 if (size
* 8 < HOST_BITS_PER_WIDE_INT
)
106 value
&= ~(~(unsigned HOST_WIDE_INT
) 0 << (size
* 8));
109 fprintf (asm_out_file
, "%s" HOST_WIDE_INT_PRINT_HEX
, op
, value
);
111 assemble_integer (GEN_INT (value
), size
, BITS_PER_UNIT
, 1);
113 if (flag_debug_asm
&& comment
)
115 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
116 vfprintf (asm_out_file
, comment
, ap
);
118 fputc ('\n', asm_out_file
);
123 /* Output the difference between two symbols in a given size. */
124 /* ??? There appear to be assemblers that do not like such
125 subtraction, but do support ASM_SET_OP. It's unfortunately
126 impossible to do here, since the ASM_SET_OP for the difference
127 symbol must appear after both symbols are defined. */
130 dw2_asm_output_delta (int size
, const char *lab1
, const char *lab2
,
131 const char *comment
, ...)
135 va_start (ap
, comment
);
137 #ifdef ASM_OUTPUT_DWARF_DELTA
138 ASM_OUTPUT_DWARF_DELTA (asm_out_file
, size
, lab1
, lab2
);
140 dw2_assemble_integer (size
,
141 gen_rtx_MINUS (Pmode
,
142 gen_rtx_SYMBOL_REF (Pmode
, lab1
),
143 gen_rtx_SYMBOL_REF (Pmode
, lab2
)));
145 if (flag_debug_asm
&& comment
)
147 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
148 vfprintf (asm_out_file
, comment
, ap
);
150 fputc ('\n', asm_out_file
);
155 /* Output the difference between two symbols in instruction units
159 dw2_asm_output_vms_delta (int size ATTRIBUTE_UNUSED
,
160 const char *lab1
, const char *lab2
,
161 const char *comment
, ...)
165 va_start (ap
, comment
);
167 #ifndef ASM_OUTPUT_DWARF_VMS_DELTA
168 /* VMS Delta is only special on ia64-vms, but this funtion also gets
169 called on alpha-vms so it has to do something sane. */
170 dw2_asm_output_delta (size
, lab1
, lab2
, comment
);
172 ASM_OUTPUT_DWARF_VMS_DELTA (asm_out_file
, size
, lab1
, lab2
);
173 if (flag_debug_asm
&& comment
)
175 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
176 vfprintf (asm_out_file
, comment
, ap
);
178 fputc ('\n', asm_out_file
);
184 /* Output a section-relative reference to a LABEL, which was placed in
185 BASE. In general this can only be done for debugging symbols.
186 E.g. on most targets with the GNU linker, this is accomplished with
187 a direct reference and the knowledge that the debugging section
188 will be placed at VMA 0. Some targets have special relocations for
189 this that we must use. */
192 dw2_asm_output_offset (int size
, const char *label
,
193 section
*base ATTRIBUTE_UNUSED
,
194 const char *comment
, ...)
198 va_start (ap
, comment
);
200 #ifdef ASM_OUTPUT_DWARF_OFFSET
201 ASM_OUTPUT_DWARF_OFFSET (asm_out_file
, size
, label
, base
);
203 dw2_assemble_integer (size
, gen_rtx_SYMBOL_REF (Pmode
, label
));
206 if (flag_debug_asm
&& comment
)
208 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
209 vfprintf (asm_out_file
, comment
, ap
);
211 fputc ('\n', asm_out_file
);
218 /* Output a self-relative reference to a label, possibly in a
219 different section or object file. */
222 dw2_asm_output_pcrel (int size ATTRIBUTE_UNUSED
,
223 const char *label ATTRIBUTE_UNUSED
,
224 const char *comment
, ...)
228 va_start (ap
, comment
);
230 #ifdef ASM_OUTPUT_DWARF_PCREL
231 ASM_OUTPUT_DWARF_PCREL (asm_out_file
, size
, label
);
233 dw2_assemble_integer (size
,
234 gen_rtx_MINUS (Pmode
,
235 gen_rtx_SYMBOL_REF (Pmode
, label
),
239 if (flag_debug_asm
&& comment
)
241 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
242 vfprintf (asm_out_file
, comment
, ap
);
244 fputc ('\n', asm_out_file
);
250 /* Output an absolute reference to a label. */
253 dw2_asm_output_addr (int size
, const char *label
,
254 const char *comment
, ...)
258 va_start (ap
, comment
);
260 dw2_assemble_integer (size
, gen_rtx_SYMBOL_REF (Pmode
, label
));
262 if (flag_debug_asm
&& comment
)
264 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
265 vfprintf (asm_out_file
, comment
, ap
);
267 fputc ('\n', asm_out_file
);
272 /* Similar, but use an RTX expression instead of a text label. */
275 dw2_asm_output_addr_rtx (int size
, rtx addr
,
276 const char *comment
, ...)
280 va_start (ap
, comment
);
282 dw2_assemble_integer (size
, addr
);
284 if (flag_debug_asm
&& comment
)
286 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
287 vfprintf (asm_out_file
, comment
, ap
);
289 fputc ('\n', asm_out_file
);
294 /* Output the first ORIG_LEN characters of STR as a string.
295 If ORIG_LEN is equal to -1, ignore this parameter and output
296 the entire STR instead.
297 If COMMENT is not NULL and comments in the debug information
298 have been requested by the user, append the given COMMENT
299 to the generated output. */
302 dw2_asm_output_nstring (const char *str
, size_t orig_len
,
303 const char *comment
, ...)
308 va_start (ap
, comment
);
312 if (len
== (size_t) -1)
315 if (flag_debug_asm
&& comment
)
317 fputs ("\t.ascii \"", asm_out_file
);
318 for (i
= 0; i
< len
; i
++)
321 if (c
== '\"' || c
== '\\')
322 fputc ('\\', asm_out_file
);
324 fputc (c
, asm_out_file
);
326 fprintf (asm_out_file
, "\\%o", c
);
328 fprintf (asm_out_file
, "\\0\"\t%s ", ASM_COMMENT_START
);
329 vfprintf (asm_out_file
, comment
, ap
);
330 fputc ('\n', asm_out_file
);
334 /* If an explicit length was given, we can't assume there
335 is a null termination in the string buffer. */
336 if (orig_len
== (size_t) -1)
338 ASM_OUTPUT_ASCII (asm_out_file
, str
, len
);
339 if (orig_len
!= (size_t) -1)
340 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
347 /* Return the size of an unsigned LEB128 quantity. */
350 size_of_uleb128 (unsigned HOST_WIDE_INT value
)
364 /* Return the size of a signed LEB128 quantity. */
367 size_of_sleb128 (HOST_WIDE_INT value
)
373 byte
= (value
& 0x7f);
377 while (!((value
== 0 && (byte
& 0x40) == 0)
378 || (value
== -1 && (byte
& 0x40) != 0)));
383 /* Given an encoding, return the number of bytes the format occupies.
384 This is only defined for fixed-size encodings, and so does not
388 size_of_encoded_value (int encoding
)
390 if (encoding
== DW_EH_PE_omit
)
393 switch (encoding
& 0x07)
395 case DW_EH_PE_absptr
:
396 return POINTER_SIZE
/ BITS_PER_UNIT
;
397 case DW_EH_PE_udata2
:
399 case DW_EH_PE_udata4
:
401 case DW_EH_PE_udata8
:
408 /* Yield a name for a given pointer encoding. */
411 eh_data_format_name (int format
)
413 #if HAVE_DESIGNATED_INITIALIZERS
414 #define S(p, v) [p] = v,
416 #define S(p, v) case p: return v;
419 #if HAVE_DESIGNATED_INITIALIZERS
420 __extension__
static const char * const format_names
[256] = {
425 S(DW_EH_PE_absptr
, "absolute")
426 S(DW_EH_PE_omit
, "omit")
427 S(DW_EH_PE_aligned
, "aligned absolute")
429 S(DW_EH_PE_uleb128
, "uleb128")
430 S(DW_EH_PE_udata2
, "udata2")
431 S(DW_EH_PE_udata4
, "udata4")
432 S(DW_EH_PE_udata8
, "udata8")
433 S(DW_EH_PE_sleb128
, "sleb128")
434 S(DW_EH_PE_sdata2
, "sdata2")
435 S(DW_EH_PE_sdata4
, "sdata4")
436 S(DW_EH_PE_sdata8
, "sdata8")
438 S(DW_EH_PE_absptr
| DW_EH_PE_pcrel
, "pcrel")
439 S(DW_EH_PE_uleb128
| DW_EH_PE_pcrel
, "pcrel uleb128")
440 S(DW_EH_PE_udata2
| DW_EH_PE_pcrel
, "pcrel udata2")
441 S(DW_EH_PE_udata4
| DW_EH_PE_pcrel
, "pcrel udata4")
442 S(DW_EH_PE_udata8
| DW_EH_PE_pcrel
, "pcrel udata8")
443 S(DW_EH_PE_sleb128
| DW_EH_PE_pcrel
, "pcrel sleb128")
444 S(DW_EH_PE_sdata2
| DW_EH_PE_pcrel
, "pcrel sdata2")
445 S(DW_EH_PE_sdata4
| DW_EH_PE_pcrel
, "pcrel sdata4")
446 S(DW_EH_PE_sdata8
| DW_EH_PE_pcrel
, "pcrel sdata8")
448 S(DW_EH_PE_absptr
| DW_EH_PE_textrel
, "textrel")
449 S(DW_EH_PE_uleb128
| DW_EH_PE_textrel
, "textrel uleb128")
450 S(DW_EH_PE_udata2
| DW_EH_PE_textrel
, "textrel udata2")
451 S(DW_EH_PE_udata4
| DW_EH_PE_textrel
, "textrel udata4")
452 S(DW_EH_PE_udata8
| DW_EH_PE_textrel
, "textrel udata8")
453 S(DW_EH_PE_sleb128
| DW_EH_PE_textrel
, "textrel sleb128")
454 S(DW_EH_PE_sdata2
| DW_EH_PE_textrel
, "textrel sdata2")
455 S(DW_EH_PE_sdata4
| DW_EH_PE_textrel
, "textrel sdata4")
456 S(DW_EH_PE_sdata8
| DW_EH_PE_textrel
, "textrel sdata8")
458 S(DW_EH_PE_absptr
| DW_EH_PE_datarel
, "datarel")
459 S(DW_EH_PE_uleb128
| DW_EH_PE_datarel
, "datarel uleb128")
460 S(DW_EH_PE_udata2
| DW_EH_PE_datarel
, "datarel udata2")
461 S(DW_EH_PE_udata4
| DW_EH_PE_datarel
, "datarel udata4")
462 S(DW_EH_PE_udata8
| DW_EH_PE_datarel
, "datarel udata8")
463 S(DW_EH_PE_sleb128
| DW_EH_PE_datarel
, "datarel sleb128")
464 S(DW_EH_PE_sdata2
| DW_EH_PE_datarel
, "datarel sdata2")
465 S(DW_EH_PE_sdata4
| DW_EH_PE_datarel
, "datarel sdata4")
466 S(DW_EH_PE_sdata8
| DW_EH_PE_datarel
, "datarel sdata8")
468 S(DW_EH_PE_absptr
| DW_EH_PE_funcrel
, "funcrel")
469 S(DW_EH_PE_uleb128
| DW_EH_PE_funcrel
, "funcrel uleb128")
470 S(DW_EH_PE_udata2
| DW_EH_PE_funcrel
, "funcrel udata2")
471 S(DW_EH_PE_udata4
| DW_EH_PE_funcrel
, "funcrel udata4")
472 S(DW_EH_PE_udata8
| DW_EH_PE_funcrel
, "funcrel udata8")
473 S(DW_EH_PE_sleb128
| DW_EH_PE_funcrel
, "funcrel sleb128")
474 S(DW_EH_PE_sdata2
| DW_EH_PE_funcrel
, "funcrel sdata2")
475 S(DW_EH_PE_sdata4
| DW_EH_PE_funcrel
, "funcrel sdata4")
476 S(DW_EH_PE_sdata8
| DW_EH_PE_funcrel
, "funcrel sdata8")
478 S(DW_EH_PE_indirect
| DW_EH_PE_absptr
, "indirect absolute")
480 S(DW_EH_PE_indirect
| DW_EH_PE_absptr
| DW_EH_PE_pcrel
,
482 S(DW_EH_PE_indirect
| DW_EH_PE_uleb128
| DW_EH_PE_pcrel
,
483 "indirect pcrel uleb128")
484 S(DW_EH_PE_indirect
| DW_EH_PE_udata2
| DW_EH_PE_pcrel
,
485 "indirect pcrel udata2")
486 S(DW_EH_PE_indirect
| DW_EH_PE_udata4
| DW_EH_PE_pcrel
,
487 "indirect pcrel udata4")
488 S(DW_EH_PE_indirect
| DW_EH_PE_udata8
| DW_EH_PE_pcrel
,
489 "indirect pcrel udata8")
490 S(DW_EH_PE_indirect
| DW_EH_PE_sleb128
| DW_EH_PE_pcrel
,
491 "indirect pcrel sleb128")
492 S(DW_EH_PE_indirect
| DW_EH_PE_sdata2
| DW_EH_PE_pcrel
,
493 "indirect pcrel sdata2")
494 S(DW_EH_PE_indirect
| DW_EH_PE_sdata4
| DW_EH_PE_pcrel
,
495 "indirect pcrel sdata4")
496 S(DW_EH_PE_indirect
| DW_EH_PE_sdata8
| DW_EH_PE_pcrel
,
497 "indirect pcrel sdata8")
499 S(DW_EH_PE_indirect
| DW_EH_PE_absptr
| DW_EH_PE_textrel
,
501 S(DW_EH_PE_indirect
| DW_EH_PE_uleb128
| DW_EH_PE_textrel
,
502 "indirect textrel uleb128")
503 S(DW_EH_PE_indirect
| DW_EH_PE_udata2
| DW_EH_PE_textrel
,
504 "indirect textrel udata2")
505 S(DW_EH_PE_indirect
| DW_EH_PE_udata4
| DW_EH_PE_textrel
,
506 "indirect textrel udata4")
507 S(DW_EH_PE_indirect
| DW_EH_PE_udata8
| DW_EH_PE_textrel
,
508 "indirect textrel udata8")
509 S(DW_EH_PE_indirect
| DW_EH_PE_sleb128
| DW_EH_PE_textrel
,
510 "indirect textrel sleb128")
511 S(DW_EH_PE_indirect
| DW_EH_PE_sdata2
| DW_EH_PE_textrel
,
512 "indirect textrel sdata2")
513 S(DW_EH_PE_indirect
| DW_EH_PE_sdata4
| DW_EH_PE_textrel
,
514 "indirect textrel sdata4")
515 S(DW_EH_PE_indirect
| DW_EH_PE_sdata8
| DW_EH_PE_textrel
,
516 "indirect textrel sdata8")
518 S(DW_EH_PE_indirect
| DW_EH_PE_absptr
| DW_EH_PE_datarel
,
520 S(DW_EH_PE_indirect
| DW_EH_PE_uleb128
| DW_EH_PE_datarel
,
521 "indirect datarel uleb128")
522 S(DW_EH_PE_indirect
| DW_EH_PE_udata2
| DW_EH_PE_datarel
,
523 "indirect datarel udata2")
524 S(DW_EH_PE_indirect
| DW_EH_PE_udata4
| DW_EH_PE_datarel
,
525 "indirect datarel udata4")
526 S(DW_EH_PE_indirect
| DW_EH_PE_udata8
| DW_EH_PE_datarel
,
527 "indirect datarel udata8")
528 S(DW_EH_PE_indirect
| DW_EH_PE_sleb128
| DW_EH_PE_datarel
,
529 "indirect datarel sleb128")
530 S(DW_EH_PE_indirect
| DW_EH_PE_sdata2
| DW_EH_PE_datarel
,
531 "indirect datarel sdata2")
532 S(DW_EH_PE_indirect
| DW_EH_PE_sdata4
| DW_EH_PE_datarel
,
533 "indirect datarel sdata4")
534 S(DW_EH_PE_indirect
| DW_EH_PE_sdata8
| DW_EH_PE_datarel
,
535 "indirect datarel sdata8")
537 S(DW_EH_PE_indirect
| DW_EH_PE_absptr
| DW_EH_PE_funcrel
,
539 S(DW_EH_PE_indirect
| DW_EH_PE_uleb128
| DW_EH_PE_funcrel
,
540 "indirect funcrel uleb128")
541 S(DW_EH_PE_indirect
| DW_EH_PE_udata2
| DW_EH_PE_funcrel
,
542 "indirect funcrel udata2")
543 S(DW_EH_PE_indirect
| DW_EH_PE_udata4
| DW_EH_PE_funcrel
,
544 "indirect funcrel udata4")
545 S(DW_EH_PE_indirect
| DW_EH_PE_udata8
| DW_EH_PE_funcrel
,
546 "indirect funcrel udata8")
547 S(DW_EH_PE_indirect
| DW_EH_PE_sleb128
| DW_EH_PE_funcrel
,
548 "indirect funcrel sleb128")
549 S(DW_EH_PE_indirect
| DW_EH_PE_sdata2
| DW_EH_PE_funcrel
,
550 "indirect funcrel sdata2")
551 S(DW_EH_PE_indirect
| DW_EH_PE_sdata4
| DW_EH_PE_funcrel
,
552 "indirect funcrel sdata4")
553 S(DW_EH_PE_indirect
| DW_EH_PE_sdata8
| DW_EH_PE_funcrel
,
554 "indirect funcrel sdata8")
556 #if HAVE_DESIGNATED_INITIALIZERS
559 gcc_assert (format
>= 0 && format
< 0x100 && format_names
[format
]);
561 return format_names
[format
];
568 /* Output an unsigned LEB128 quantity, but only the byte values. */
571 dw2_asm_output_data_uleb128_raw (unsigned HOST_WIDE_INT value
)
575 int byte
= (value
& 0x7f);
578 /* More bytes to follow. */
581 fprintf (asm_out_file
, "%#x", byte
);
584 fputc (',', asm_out_file
);
588 /* Output an unsigned LEB128 quantity. */
591 dw2_asm_output_data_uleb128 (unsigned HOST_WIDE_INT value
,
592 const char *comment
, ...)
596 va_start (ap
, comment
);
598 #ifdef HAVE_AS_LEB128
599 fprintf (asm_out_file
, "\t.uleb128 " HOST_WIDE_INT_PRINT_HEX
, value
);
601 if (flag_debug_asm
&& comment
)
603 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
604 vfprintf (asm_out_file
, comment
, ap
);
608 unsigned HOST_WIDE_INT work
= value
;
609 const char *byte_op
= targetm
.asm_out
.byte_op
;
612 fputs (byte_op
, asm_out_file
);
615 int byte
= (work
& 0x7f);
618 /* More bytes to follow. */
623 fprintf (asm_out_file
, "%#x", byte
);
625 fputc (',', asm_out_file
);
628 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
634 fprintf (asm_out_file
, "\t%s uleb128 " HOST_WIDE_INT_PRINT_HEX
,
635 ASM_COMMENT_START
, value
);
638 fputs ("; ", asm_out_file
);
639 vfprintf (asm_out_file
, comment
, ap
);
644 fputc ('\n', asm_out_file
);
649 /* Output an signed LEB128 quantity, but only the byte values. */
652 dw2_asm_output_data_sleb128_raw (HOST_WIDE_INT value
)
658 byte
= (value
& 0x7f);
660 more
= !((value
== 0 && (byte
& 0x40) == 0)
661 || (value
== -1 && (byte
& 0x40) != 0));
665 fprintf (asm_out_file
, "%#x", byte
);
668 fputc (',', asm_out_file
);
672 /* Output a signed LEB128 quantity. */
675 dw2_asm_output_data_sleb128 (HOST_WIDE_INT value
,
676 const char *comment
, ...)
680 va_start (ap
, comment
);
682 #ifdef HAVE_AS_LEB128
683 fprintf (asm_out_file
, "\t.sleb128 " HOST_WIDE_INT_PRINT_DEC
, value
);
685 if (flag_debug_asm
&& comment
)
687 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
688 vfprintf (asm_out_file
, comment
, ap
);
692 HOST_WIDE_INT work
= value
;
694 const char *byte_op
= targetm
.asm_out
.byte_op
;
697 fputs (byte_op
, asm_out_file
);
700 byte
= (work
& 0x7f);
701 /* arithmetic shift */
703 more
= !((work
== 0 && (byte
& 0x40) == 0)
704 || (work
== -1 && (byte
& 0x40) != 0));
710 fprintf (asm_out_file
, "%#x", byte
);
712 fputc (',', asm_out_file
);
715 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
721 fprintf (asm_out_file
, "\t%s sleb128 " HOST_WIDE_INT_PRINT_DEC
,
722 ASM_COMMENT_START
, value
);
725 fputs ("; ", asm_out_file
);
726 vfprintf (asm_out_file
, comment
, ap
);
731 fputc ('\n', asm_out_file
);
737 dw2_asm_output_delta_uleb128 (const char *lab1 ATTRIBUTE_UNUSED
,
738 const char *lab2 ATTRIBUTE_UNUSED
,
739 const char *comment
, ...)
743 va_start (ap
, comment
);
745 #ifdef HAVE_AS_LEB128
746 fputs ("\t.uleb128 ", asm_out_file
);
747 assemble_name (asm_out_file
, lab1
);
748 fputc ('-', asm_out_file
);
749 assemble_name (asm_out_file
, lab2
);
754 if (flag_debug_asm
&& comment
)
756 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
757 vfprintf (asm_out_file
, comment
, ap
);
759 fputc ('\n', asm_out_file
);
767 dw2_asm_output_delta_sleb128 (const char *lab1 ATTRIBUTE_UNUSED
,
768 const char *lab2 ATTRIBUTE_UNUSED
,
769 const char *comment
, ...)
773 va_start (ap
, comment
);
775 #ifdef HAVE_AS_LEB128
776 fputs ("\t.sleb128 ", asm_out_file
);
777 assemble_name (asm_out_file
, lab1
);
778 fputc ('-', asm_out_file
);
779 assemble_name (asm_out_file
, lab2
);
784 if (flag_debug_asm
&& comment
)
786 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
787 vfprintf (asm_out_file
, comment
, ap
);
789 fputc ('\n', asm_out_file
);
795 static int dw2_output_indirect_constant_1 (splay_tree_node
, void *);
797 static GTY((param1_is (char *), param2_is (tree
))) splay_tree indirect_pool
;
799 static GTY(()) int dw2_const_labelno
;
801 #if defined(HAVE_GAS_HIDDEN)
802 # define USE_LINKONCE_INDIRECT (SUPPORTS_ONE_ONLY)
804 # define USE_LINKONCE_INDIRECT 0
807 /* Comparison function for a splay tree in which the keys are strings.
808 K1 and K2 have the dynamic type "const char *". Returns <0, 0, or
809 >0 to indicate whether K1 is less than, equal to, or greater than
813 splay_tree_compare_strings (splay_tree_key k1
, splay_tree_key k2
)
815 const char *s1
= (const char *)k1
;
816 const char *s2
= (const char *)k2
;
822 ret
= strcmp (s1
, s2
);
824 /* The strings are always those from IDENTIFIER_NODEs, and,
825 therefore, we should never have two copies of the same
832 /* Put X, a SYMBOL_REF, in memory. Return a SYMBOL_REF to the allocated
833 memory. Differs from force_const_mem in that a single pool is used for
834 the entire unit of translation, and the memory is not guaranteed to be
835 "near" the function in any interesting sense. IS_PUBLIC controls whether
836 the symbol can be shared across the entire application (or DSO). */
839 dw2_force_const_mem (rtx x
, bool is_public
)
841 splay_tree_node node
;
846 /* We use strcmp, rather than just comparing pointers, so that the
847 sort order will not depend on the host system. */
848 indirect_pool
= splay_tree_new_ggc (splay_tree_compare_strings
,
849 ggc_alloc_splay_tree_str_tree_node_splay_tree_s
,
850 ggc_alloc_splay_tree_str_tree_node_splay_tree_node_s
);
852 gcc_assert (GET_CODE (x
) == SYMBOL_REF
);
855 node
= splay_tree_lookup (indirect_pool
, (splay_tree_key
) key
);
857 decl_id
= (tree
) node
->value
;
861 const char *str
= targetm
.strip_name_encoding (key
);
863 if (is_public
&& USE_LINKONCE_INDIRECT
)
865 char *ref_name
= XALLOCAVEC (char, strlen (str
) + sizeof "DW.ref.");
867 sprintf (ref_name
, "DW.ref.%s", str
);
868 gcc_assert (!maybe_get_identifier (ref_name
));
869 decl_id
= get_identifier (ref_name
);
870 TREE_PUBLIC (decl_id
) = 1;
876 ASM_GENERATE_INTERNAL_LABEL (label
, "LDFCM", dw2_const_labelno
);
878 gcc_assert (!maybe_get_identifier (label
));
879 decl_id
= get_identifier (label
);
882 id
= maybe_get_identifier (str
);
884 TREE_SYMBOL_REFERENCED (id
) = 1;
886 splay_tree_insert (indirect_pool
, (splay_tree_key
) key
,
887 (splay_tree_value
) decl_id
);
890 return gen_rtx_SYMBOL_REF (Pmode
, IDENTIFIER_POINTER (decl_id
));
893 /* A helper function for dw2_output_indirect_constants called through
894 splay_tree_foreach. Emit one queued constant to memory. */
897 dw2_output_indirect_constant_1 (splay_tree_node node
,
898 void *data ATTRIBUTE_UNUSED
)
904 sym
= (const char *) node
->key
;
905 id
= (tree
) node
->value
;
907 decl
= build_decl (UNKNOWN_LOCATION
, VAR_DECL
, id
, ptr_type_node
);
908 DECL_ARTIFICIAL (decl
) = 1;
909 DECL_IGNORED_P (decl
) = 1;
910 DECL_INITIAL (decl
) = decl
;
911 TREE_READONLY (decl
) = 1;
913 if (TREE_PUBLIC (id
))
915 TREE_PUBLIC (decl
) = 1;
916 make_decl_one_only (decl
, DECL_ASSEMBLER_NAME (decl
));
919 TREE_STATIC (decl
) = 1;
921 sym_ref
= gen_rtx_SYMBOL_REF (Pmode
, sym
);
922 sym
= targetm
.strip_name_encoding (sym
);
923 if (TREE_PUBLIC (decl
) && USE_LINKONCE_INDIRECT
)
924 fprintf (asm_out_file
, "\t.hidden %sDW.ref.%s\n", user_label_prefix
, sym
);
925 assemble_variable (decl
, 1, 1, 1);
926 assemble_integer (sym_ref
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
931 /* Emit the constants queued through dw2_force_const_mem. */
934 dw2_output_indirect_constants (void)
937 splay_tree_foreach (indirect_pool
, dw2_output_indirect_constant_1
, NULL
);
940 /* Like dw2_asm_output_addr_rtx, but encode the pointer as directed.
941 If PUBLIC is set and the encoding is DW_EH_PE_indirect, the indirect
942 reference is shared across the entire application (or DSO). */
945 dw2_asm_output_encoded_addr_rtx (int encoding
, rtx addr
, bool is_public
,
946 const char *comment
, ...)
951 va_start (ap
, comment
);
953 size
= size_of_encoded_value (encoding
);
955 if (encoding
== DW_EH_PE_aligned
)
957 assemble_align (POINTER_SIZE
);
958 assemble_integer (addr
, size
, POINTER_SIZE
, 1);
962 /* NULL is _always_ represented as a plain zero, as is 1 for Ada's
964 if (addr
== const0_rtx
|| addr
== const1_rtx
)
965 assemble_integer (addr
, size
, BITS_PER_UNIT
, 1);
969 /* Allow the target first crack at emitting this. Some of the
970 special relocations require special directives instead of
971 just ".4byte" or whatever. */
972 #ifdef ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX
973 ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX (asm_out_file
, encoding
, size
,
977 /* Indirection is used to get dynamic relocations out of a
978 read-only section. */
979 if (encoding
& DW_EH_PE_indirect
)
981 /* It is very tempting to use force_const_mem so that we share data
982 with the normal constant pool. However, we've already emitted
983 the constant pool for this function. Moreover, we'd like to
984 share these constants across the entire unit of translation and
985 even, if possible, across the entire application (or DSO). */
986 addr
= dw2_force_const_mem (addr
, is_public
);
987 encoding
&= ~DW_EH_PE_indirect
;
991 switch (encoding
& 0xF0)
993 case DW_EH_PE_absptr
:
994 dw2_assemble_integer (size
, addr
);
998 gcc_assert (GET_CODE (addr
) == SYMBOL_REF
);
999 #ifdef ASM_OUTPUT_DWARF_PCREL
1000 ASM_OUTPUT_DWARF_PCREL (asm_out_file
, size
, XSTR (addr
, 0));
1002 dw2_assemble_integer (size
, gen_rtx_MINUS (Pmode
, addr
, pc_rtx
));
1007 /* Other encodings should have been handled by
1008 ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX. */
1012 #ifdef ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX
1017 if (flag_debug_asm
&& comment
)
1019 fprintf (asm_out_file
, "\t%s ", ASM_COMMENT_START
);
1020 vfprintf (asm_out_file
, comment
, ap
);
1022 fputc ('\n', asm_out_file
);
1027 #include "gt-dwarf2asm.h"