]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/dwarf2asm.c
Makefile.in (builtins.o): Depend on tree-mudflap.h.
[thirdparty/gcc.git] / gcc / dwarf2asm.c
CommitLineData
2e4b9b8c 1/* Dwarf2 assembler output helper routines.
ef335eb8 2 Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
2e4b9b8c 3
1322177d 4This file is part of GCC.
2e4b9b8c 5
1322177d
LB
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 2, or (at your option) any later
9version.
2e4b9b8c 10
1322177d
LB
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
2e4b9b8c
RH
15
16You should have received a copy of the GNU General Public License
1322177d
LB
17along with GCC; see the file COPYING. If not, write to the Free
18Software Foundation, 59 Temple Place - Suite 330, Boston, MA
1902111-1307, USA. */
2e4b9b8c
RH
20
21
22#include "config.h"
23#include "system.h"
4977bab6
ZW
24#include "coretypes.h"
25#include "tm.h"
2e4b9b8c 26#include "flags.h"
2a1ee410 27#include "tree.h"
2e4b9b8c
RH
28#include "rtl.h"
29#include "output.h"
301d03af 30#include "target.h"
2e4b9b8c 31#include "dwarf2asm.h"
2a1ee410
RH
32#include "dwarf2.h"
33#include "splay-tree.h"
34#include "ggc.h"
2e4b9b8c
RH
35#include "tm_p.h"
36
37
38/* How to start an assembler comment. */
39#ifndef ASM_COMMENT_START
40#define ASM_COMMENT_START ";#"
41#endif
42
2e4b9b8c 43\f
301d03af
RS
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. */
46
47void
7080f735 48dw2_assemble_integer (int size, rtx x)
2e4b9b8c 49{
301d03af
RS
50 const char *op = integer_asm_op (size, FALSE);
51
52 if (op)
2e4b9b8c 53 {
301d03af
RS
54 fputs (op, asm_out_file);
55 if (GET_CODE (x) == CONST_INT)
56 fprintf (asm_out_file, HOST_WIDE_INT_PRINT_HEX, INTVAL (x));
57 else
58 output_addr_const (asm_out_file, x);
2e4b9b8c 59 }
301d03af
RS
60 else
61 assemble_integer (x, size, BITS_PER_UNIT, 1);
2e4b9b8c 62}
3a538a66 63
2e4b9b8c 64
8e7fa2c8
RH
65/* Output an immediate constant in a given size. */
66
2e4b9b8c 67void
e34d07f2
KG
68dw2_asm_output_data (int size, unsigned HOST_WIDE_INT value,
69 const char *comment, ...)
2e4b9b8c 70{
e34d07f2 71 va_list ap;
7080f735 72
e34d07f2 73 va_start (ap, comment);
2e4b9b8c 74
da6af203 75 if (size * 8 < HOST_BITS_PER_WIDE_INT)
c4f2c499 76 value &= ~(~(unsigned HOST_WIDE_INT) 0 << (size * 8));
da6af203 77
301d03af 78 dw2_assemble_integer (size, GEN_INT (value));
2e4b9b8c
RH
79
80 if (flag_debug_asm && comment)
81 {
82 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
83 vfprintf (asm_out_file, comment, ap);
84 }
85 fputc ('\n', asm_out_file);
86
e34d07f2 87 va_end (ap);
2e4b9b8c
RH
88}
89
8e7fa2c8
RH
90/* Output the difference between two symbols in a given size. */
91/* ??? There appear to be assemblers that do not like such
92 subtraction, but do support ASM_SET_OP. It's unfortunately
93 impossible to do here, since the ASM_SET_OP for the difference
94 symbol must appear after both symbols are defined. */
95
2e4b9b8c 96void
e34d07f2
KG
97dw2_asm_output_delta (int size, const char *lab1, const char *lab2,
98 const char *comment, ...)
2e4b9b8c 99{
e34d07f2 100 va_list ap;
7080f735 101
e34d07f2 102 va_start (ap, comment);
2e4b9b8c 103
7606e68f
SS
104#ifdef ASM_OUTPUT_DWARF_DELTA
105 ASM_OUTPUT_DWARF_DELTA (asm_out_file, size, lab1, lab2);
106#else
301d03af
RS
107 dw2_assemble_integer (size,
108 gen_rtx_MINUS (Pmode,
109 gen_rtx_SYMBOL_REF (Pmode, lab1),
110 gen_rtx_SYMBOL_REF (Pmode, lab2)));
7606e68f 111#endif
2e4b9b8c
RH
112 if (flag_debug_asm && comment)
113 {
114 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
115 vfprintf (asm_out_file, comment, ap);
116 }
117 fputc ('\n', asm_out_file);
118
e34d07f2 119 va_end (ap);
2e4b9b8c
RH
120}
121
8e7fa2c8
RH
122/* Output a section-relative reference to a label. In general this
123 can only be done for debugging symbols. E.g. on most targets with
124 the GNU linker, this is accomplished with a direct reference and
125 the knowledge that the debugging section will be placed at VMA 0.
126 Some targets have special relocations for this that we must use. */
127
2e4b9b8c 128void
e34d07f2
KG
129dw2_asm_output_offset (int size, const char *label,
130 const char *comment, ...)
2e4b9b8c 131{
e34d07f2 132 va_list ap;
7080f735 133
e34d07f2 134 va_start (ap, comment);
2e4b9b8c 135
8e7fa2c8
RH
136#ifdef ASM_OUTPUT_DWARF_OFFSET
137 ASM_OUTPUT_DWARF_OFFSET (asm_out_file, size, label);
138#else
301d03af 139 dw2_assemble_integer (size, gen_rtx_SYMBOL_REF (Pmode, label));
2e4b9b8c
RH
140#endif
141
142 if (flag_debug_asm && comment)
143 {
144 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
145 vfprintf (asm_out_file, comment, ap);
146 }
147 fputc ('\n', asm_out_file);
148
e34d07f2 149 va_end (ap);
2e4b9b8c
RH
150}
151
8e7fa2c8
RH
152/* Output a self-relative reference to a label, possibly in a
153 different section or object file. */
154
2e4b9b8c 155void
e34d07f2
KG
156dw2_asm_output_pcrel (int size ATTRIBUTE_UNUSED,
157 const char *label ATTRIBUTE_UNUSED,
158 const char *comment, ...)
2e4b9b8c 159{
e34d07f2 160 va_list ap;
7080f735 161
e34d07f2 162 va_start (ap, comment);
2e4b9b8c 163
8e7fa2c8
RH
164#ifdef ASM_OUTPUT_DWARF_PCREL
165 ASM_OUTPUT_DWARF_PCREL (asm_out_file, size, label);
166#else
301d03af
RS
167 dw2_assemble_integer (size,
168 gen_rtx_MINUS (Pmode,
169 gen_rtx_SYMBOL_REF (Pmode, label),
170 pc_rtx));
8e7fa2c8
RH
171#endif
172
173 if (flag_debug_asm && comment)
174 {
175 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
176 vfprintf (asm_out_file, comment, ap);
177 }
178 fputc ('\n', asm_out_file);
179
e34d07f2 180 va_end (ap);
8e7fa2c8
RH
181}
182
183/* Output an absolute reference to a label. */
184
185void
e34d07f2
KG
186dw2_asm_output_addr (int size, const char *label,
187 const char *comment, ...)
8e7fa2c8 188{
e34d07f2 189 va_list ap;
7080f735 190
e34d07f2 191 va_start (ap, comment);
8e7fa2c8 192
301d03af 193 dw2_assemble_integer (size, gen_rtx_SYMBOL_REF (Pmode, label));
2e4b9b8c
RH
194
195 if (flag_debug_asm && comment)
196 {
197 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
198 vfprintf (asm_out_file, comment, ap);
199 }
200 fputc ('\n', asm_out_file);
201
e34d07f2 202 va_end (ap);
2e4b9b8c
RH
203}
204
8e7fa2c8
RH
205/* Similar, but use an RTX expression instead of a text label. */
206
2e4b9b8c 207void
e34d07f2
KG
208dw2_asm_output_addr_rtx (int size, rtx addr,
209 const char *comment, ...)
2e4b9b8c 210{
e34d07f2 211 va_list ap;
7080f735 212
e34d07f2 213 va_start (ap, comment);
2e4b9b8c 214
301d03af 215 dw2_assemble_integer (size, addr);
2e4b9b8c
RH
216
217 if (flag_debug_asm && comment)
218 {
219 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
220 vfprintf (asm_out_file, comment, ap);
221 }
222 fputc ('\n', asm_out_file);
223
e34d07f2 224 va_end (ap);
2e4b9b8c
RH
225}
226
1e290ba1
JB
227/* Output the first ORIG_LEN characters of STR as a string.
228 If ORIG_LEN is equal to -1, ignore this parameter and output
229 the entire STR instead.
230 If COMMENT is not NULL and comments in the debug information
231 have been requested by the user, append the given COMMENT
232 to the generated output. */
233
2e4b9b8c 234void
e34d07f2
KG
235dw2_asm_output_nstring (const char *str, size_t orig_len,
236 const char *comment, ...)
2e4b9b8c 237{
7a75edb7 238 size_t i, len;
e34d07f2 239 va_list ap;
2e4b9b8c 240
e34d07f2 241 va_start (ap, comment);
2e4b9b8c 242
7a75edb7 243 len = orig_len;
2e4b9b8c
RH
244
245 if (len == (size_t) -1)
246 len = strlen (str);
247
248 if (flag_debug_asm && comment)
249 {
250 fputs ("\t.ascii \"", asm_out_file);
251 for (i = 0; i < len; i++)
252 {
253 int c = str[i];
254 if (c == '\"' || c == '\\')
255 fputc ('\\', asm_out_file);
256 if (ISPRINT(c))
257 fputc (c, asm_out_file);
258 else
259 fprintf (asm_out_file, "\\%o", c);
260 }
261 fprintf (asm_out_file, "\\0\"\t%s ", ASM_COMMENT_START);
262 vfprintf (asm_out_file, comment, ap);
263 fputc ('\n', asm_out_file);
264 }
265 else
266 {
267 /* If an explicit length was given, we can't assume there
268 is a null termination in the string buffer. */
269 if (orig_len == (size_t) -1)
270 len += 1;
271 ASM_OUTPUT_ASCII (asm_out_file, str, len);
272 if (orig_len != (size_t) -1)
301d03af 273 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
2e4b9b8c
RH
274 }
275
e34d07f2 276 va_end (ap);
2e4b9b8c
RH
277}
278\f
279
280/* Return the size of an unsigned LEB128 quantity. */
281
282int
7080f735 283size_of_uleb128 (unsigned HOST_WIDE_INT value)
2e4b9b8c 284{
4977bab6 285 int size = 0;
2e4b9b8c
RH
286
287 do
288 {
2e4b9b8c
RH
289 value >>= 7;
290 size += 1;
291 }
292 while (value != 0);
293
294 return size;
295}
296
297/* Return the size of a signed LEB128 quantity. */
298
299int
7080f735 300size_of_sleb128 (HOST_WIDE_INT value)
2e4b9b8c
RH
301{
302 int size = 0, byte;
303
304 do
305 {
306 byte = (value & 0x7f);
307 value >>= 7;
308 size += 1;
309 }
310 while (!((value == 0 && (byte & 0x40) == 0)
311 || (value == -1 && (byte & 0x40) != 0)));
312
313 return size;
314}
315
b627d6fe 316/* Given an encoding, return the number of bytes the format occupies.
3a538a66 317 This is only defined for fixed-size encodings, and so does not
b627d6fe
RH
318 include leb128. */
319
320int
7080f735 321size_of_encoded_value (int encoding)
b627d6fe
RH
322{
323 if (encoding == DW_EH_PE_omit)
324 return 0;
325
326 switch (encoding & 0x07)
327 {
328 case DW_EH_PE_absptr:
329 return POINTER_SIZE / BITS_PER_UNIT;
330 case DW_EH_PE_udata2:
331 return 2;
332 case DW_EH_PE_udata4:
333 return 4;
334 case DW_EH_PE_udata8:
335 return 8;
336 }
337 abort ();
338}
339
e1f9550a
RH
340/* Yield a name for a given pointer encoding. */
341
342const char *
7080f735 343eh_data_format_name (int format)
e1f9550a
RH
344{
345#if HAVE_DESIGNATED_INITIALIZERS
346#define S(p, v) [p] = v,
347#else
348#define S(p, v) case p: return v;
349#endif
350
351#if HAVE_DESIGNATED_INITIALIZERS
352 __extension__ static const char * const format_names[256] = {
353#else
354 switch (format) {
355#endif
356
357 S(DW_EH_PE_absptr, "absolute")
358 S(DW_EH_PE_omit, "omit")
099c8b17 359 S(DW_EH_PE_aligned, "aligned absolute")
e1f9550a
RH
360
361 S(DW_EH_PE_uleb128, "uleb128")
362 S(DW_EH_PE_udata2, "udata2")
363 S(DW_EH_PE_udata4, "udata4")
364 S(DW_EH_PE_udata8, "udata8")
365 S(DW_EH_PE_sleb128, "sleb128")
366 S(DW_EH_PE_sdata2, "sdata2")
367 S(DW_EH_PE_sdata4, "sdata4")
368 S(DW_EH_PE_sdata8, "sdata8")
369
f90811a2 370 S(DW_EH_PE_absptr | DW_EH_PE_pcrel, "pcrel")
e1f9550a
RH
371 S(DW_EH_PE_uleb128 | DW_EH_PE_pcrel, "pcrel uleb128")
372 S(DW_EH_PE_udata2 | DW_EH_PE_pcrel, "pcrel udata2")
373 S(DW_EH_PE_udata4 | DW_EH_PE_pcrel, "pcrel udata4")
374 S(DW_EH_PE_udata8 | DW_EH_PE_pcrel, "pcrel udata8")
375 S(DW_EH_PE_sleb128 | DW_EH_PE_pcrel, "pcrel sleb128")
376 S(DW_EH_PE_sdata2 | DW_EH_PE_pcrel, "pcrel sdata2")
377 S(DW_EH_PE_sdata4 | DW_EH_PE_pcrel, "pcrel sdata4")
378 S(DW_EH_PE_sdata8 | DW_EH_PE_pcrel, "pcrel sdata8")
379
f90811a2 380 S(DW_EH_PE_absptr | DW_EH_PE_textrel, "textrel")
e1f9550a
RH
381 S(DW_EH_PE_uleb128 | DW_EH_PE_textrel, "textrel uleb128")
382 S(DW_EH_PE_udata2 | DW_EH_PE_textrel, "textrel udata2")
383 S(DW_EH_PE_udata4 | DW_EH_PE_textrel, "textrel udata4")
384 S(DW_EH_PE_udata8 | DW_EH_PE_textrel, "textrel udata8")
385 S(DW_EH_PE_sleb128 | DW_EH_PE_textrel, "textrel sleb128")
386 S(DW_EH_PE_sdata2 | DW_EH_PE_textrel, "textrel sdata2")
387 S(DW_EH_PE_sdata4 | DW_EH_PE_textrel, "textrel sdata4")
388 S(DW_EH_PE_sdata8 | DW_EH_PE_textrel, "textrel sdata8")
389
f90811a2 390 S(DW_EH_PE_absptr | DW_EH_PE_datarel, "datarel")
e1f9550a
RH
391 S(DW_EH_PE_uleb128 | DW_EH_PE_datarel, "datarel uleb128")
392 S(DW_EH_PE_udata2 | DW_EH_PE_datarel, "datarel udata2")
393 S(DW_EH_PE_udata4 | DW_EH_PE_datarel, "datarel udata4")
394 S(DW_EH_PE_udata8 | DW_EH_PE_datarel, "datarel udata8")
395 S(DW_EH_PE_sleb128 | DW_EH_PE_datarel, "datarel sleb128")
396 S(DW_EH_PE_sdata2 | DW_EH_PE_datarel, "datarel sdata2")
397 S(DW_EH_PE_sdata4 | DW_EH_PE_datarel, "datarel sdata4")
398 S(DW_EH_PE_sdata8 | DW_EH_PE_datarel, "datarel sdata8")
399
f90811a2 400 S(DW_EH_PE_absptr | DW_EH_PE_funcrel, "funcrel")
e1f9550a
RH
401 S(DW_EH_PE_uleb128 | DW_EH_PE_funcrel, "funcrel uleb128")
402 S(DW_EH_PE_udata2 | DW_EH_PE_funcrel, "funcrel udata2")
403 S(DW_EH_PE_udata4 | DW_EH_PE_funcrel, "funcrel udata4")
404 S(DW_EH_PE_udata8 | DW_EH_PE_funcrel, "funcrel udata8")
405 S(DW_EH_PE_sleb128 | DW_EH_PE_funcrel, "funcrel sleb128")
406 S(DW_EH_PE_sdata2 | DW_EH_PE_funcrel, "funcrel sdata2")
407 S(DW_EH_PE_sdata4 | DW_EH_PE_funcrel, "funcrel sdata4")
408 S(DW_EH_PE_sdata8 | DW_EH_PE_funcrel, "funcrel sdata8")
409
f90811a2
RH
410 S(DW_EH_PE_indirect | DW_EH_PE_absptr | DW_EH_PE_pcrel,
411 "indirect pcrel")
e1f9550a
RH
412 S(DW_EH_PE_indirect | DW_EH_PE_uleb128 | DW_EH_PE_pcrel,
413 "indirect pcrel uleb128")
414 S(DW_EH_PE_indirect | DW_EH_PE_udata2 | DW_EH_PE_pcrel,
415 "indirect pcrel udata2")
416 S(DW_EH_PE_indirect | DW_EH_PE_udata4 | DW_EH_PE_pcrel,
417 "indirect pcrel udata4")
418 S(DW_EH_PE_indirect | DW_EH_PE_udata8 | DW_EH_PE_pcrel,
419 "indirect pcrel udata8")
420 S(DW_EH_PE_indirect | DW_EH_PE_sleb128 | DW_EH_PE_pcrel,
421 "indirect pcrel sleb128")
422 S(DW_EH_PE_indirect | DW_EH_PE_sdata2 | DW_EH_PE_pcrel,
423 "indirect pcrel sdata2")
424 S(DW_EH_PE_indirect | DW_EH_PE_sdata4 | DW_EH_PE_pcrel,
425 "indirect pcrel sdata4")
426 S(DW_EH_PE_indirect | DW_EH_PE_sdata8 | DW_EH_PE_pcrel,
427 "indirect pcrel sdata8")
428
f90811a2
RH
429 S(DW_EH_PE_indirect | DW_EH_PE_absptr | DW_EH_PE_textrel,
430 "indirect textrel")
e1f9550a
RH
431 S(DW_EH_PE_indirect | DW_EH_PE_uleb128 | DW_EH_PE_textrel,
432 "indirect textrel uleb128")
433 S(DW_EH_PE_indirect | DW_EH_PE_udata2 | DW_EH_PE_textrel,
434 "indirect textrel udata2")
435 S(DW_EH_PE_indirect | DW_EH_PE_udata4 | DW_EH_PE_textrel,
436 "indirect textrel udata4")
437 S(DW_EH_PE_indirect | DW_EH_PE_udata8 | DW_EH_PE_textrel,
438 "indirect textrel udata8")
439 S(DW_EH_PE_indirect | DW_EH_PE_sleb128 | DW_EH_PE_textrel,
440 "indirect textrel sleb128")
441 S(DW_EH_PE_indirect | DW_EH_PE_sdata2 | DW_EH_PE_textrel,
442 "indirect textrel sdata2")
443 S(DW_EH_PE_indirect | DW_EH_PE_sdata4 | DW_EH_PE_textrel,
444 "indirect textrel sdata4")
445 S(DW_EH_PE_indirect | DW_EH_PE_sdata8 | DW_EH_PE_textrel,
446 "indirect textrel sdata8")
447
f90811a2
RH
448 S(DW_EH_PE_indirect | DW_EH_PE_absptr | DW_EH_PE_datarel,
449 "indirect datarel")
e1f9550a
RH
450 S(DW_EH_PE_indirect | DW_EH_PE_uleb128 | DW_EH_PE_datarel,
451 "indirect datarel uleb128")
452 S(DW_EH_PE_indirect | DW_EH_PE_udata2 | DW_EH_PE_datarel,
453 "indirect datarel udata2")
454 S(DW_EH_PE_indirect | DW_EH_PE_udata4 | DW_EH_PE_datarel,
455 "indirect datarel udata4")
456 S(DW_EH_PE_indirect | DW_EH_PE_udata8 | DW_EH_PE_datarel,
457 "indirect datarel udata8")
458 S(DW_EH_PE_indirect | DW_EH_PE_sleb128 | DW_EH_PE_datarel,
459 "indirect datarel sleb128")
460 S(DW_EH_PE_indirect | DW_EH_PE_sdata2 | DW_EH_PE_datarel,
461 "indirect datarel sdata2")
462 S(DW_EH_PE_indirect | DW_EH_PE_sdata4 | DW_EH_PE_datarel,
463 "indirect datarel sdata4")
464 S(DW_EH_PE_indirect | DW_EH_PE_sdata8 | DW_EH_PE_datarel,
465 "indirect datarel sdata8")
466
f90811a2
RH
467 S(DW_EH_PE_indirect | DW_EH_PE_absptr | DW_EH_PE_funcrel,
468 "indirect funcrel")
e1f9550a
RH
469 S(DW_EH_PE_indirect | DW_EH_PE_uleb128 | DW_EH_PE_funcrel,
470 "indirect funcrel uleb128")
471 S(DW_EH_PE_indirect | DW_EH_PE_udata2 | DW_EH_PE_funcrel,
472 "indirect funcrel udata2")
473 S(DW_EH_PE_indirect | DW_EH_PE_udata4 | DW_EH_PE_funcrel,
474 "indirect funcrel udata4")
475 S(DW_EH_PE_indirect | DW_EH_PE_udata8 | DW_EH_PE_funcrel,
476 "indirect funcrel udata8")
477 S(DW_EH_PE_indirect | DW_EH_PE_sleb128 | DW_EH_PE_funcrel,
478 "indirect funcrel sleb128")
479 S(DW_EH_PE_indirect | DW_EH_PE_sdata2 | DW_EH_PE_funcrel,
480 "indirect funcrel sdata2")
481 S(DW_EH_PE_indirect | DW_EH_PE_sdata4 | DW_EH_PE_funcrel,
482 "indirect funcrel sdata4")
483 S(DW_EH_PE_indirect | DW_EH_PE_sdata8 | DW_EH_PE_funcrel,
484 "indirect funcrel sdata8")
485
486#if HAVE_DESIGNATED_INITIALIZERS
487 };
488
489 if (format < 0 || format > 0xff || format_names[format] == NULL)
490 abort ();
491 return format_names[format];
492#else
493 }
494 abort ();
495#endif
496}
497
2e4b9b8c
RH
498/* Output an unsigned LEB128 quantity. */
499
500void
e34d07f2
KG
501dw2_asm_output_data_uleb128 (unsigned HOST_WIDE_INT value,
502 const char *comment, ...)
2e4b9b8c 503{
e34d07f2 504 va_list ap;
7080f735 505
e34d07f2 506 va_start (ap, comment);
2e4b9b8c
RH
507
508#ifdef HAVE_AS_LEB128
90ff44cf 509 fprintf (asm_out_file, "\t.uleb128 " HOST_WIDE_INT_PRINT_HEX , value);
2e4b9b8c
RH
510
511 if (flag_debug_asm && comment)
512 {
513 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
514 vfprintf (asm_out_file, comment, ap);
515 }
516#else
517 {
518 unsigned HOST_WIDE_INT work = value;
301d03af 519 const char *byte_op = targetm.asm_out.byte_op;
2e4b9b8c 520
301d03af
RS
521 if (byte_op)
522 fputs (byte_op, asm_out_file);
2e4b9b8c
RH
523 do
524 {
525 int byte = (work & 0x7f);
526 work >>= 7;
527 if (work != 0)
528 /* More bytes to follow. */
529 byte |= 0x80;
530
301d03af
RS
531 if (byte_op)
532 {
533 fprintf (asm_out_file, "0x%x", byte);
534 if (work != 0)
535 fputc (',', asm_out_file);
536 }
537 else
538 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
2e4b9b8c
RH
539 }
540 while (work != 0);
541
542 if (flag_debug_asm)
543 {
90ff44cf
KG
544 fprintf (asm_out_file, "\t%s uleb128 " HOST_WIDE_INT_PRINT_HEX,
545 ASM_COMMENT_START, value);
2e4b9b8c
RH
546 if (comment)
547 {
548 fputs ("; ", asm_out_file);
549 vfprintf (asm_out_file, comment, ap);
550 }
551 }
552 }
553#endif
554 fputc ('\n', asm_out_file);
555
e34d07f2 556 va_end (ap);
2e4b9b8c
RH
557}
558
09da1532 559/* Output a signed LEB128 quantity. */
2e4b9b8c
RH
560
561void
e34d07f2
KG
562dw2_asm_output_data_sleb128 (HOST_WIDE_INT value,
563 const char *comment, ...)
2e4b9b8c 564{
e34d07f2 565 va_list ap;
7080f735 566
e34d07f2 567 va_start (ap, comment);
2e4b9b8c
RH
568
569#ifdef HAVE_AS_LEB128
90ff44cf 570 fprintf (asm_out_file, "\t.sleb128 " HOST_WIDE_INT_PRINT_DEC, value);
2e4b9b8c
RH
571
572 if (flag_debug_asm && comment)
573 {
574 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
575 vfprintf (asm_out_file, comment, ap);
576 }
577#else
578 {
579 HOST_WIDE_INT work = value;
580 int more, byte;
301d03af 581 const char *byte_op = targetm.asm_out.byte_op;
2e4b9b8c 582
301d03af
RS
583 if (byte_op)
584 fputs (byte_op, asm_out_file);
2e4b9b8c
RH
585 do
586 {
587 byte = (work & 0x7f);
588 /* arithmetic shift */
589 work >>= 7;
590 more = !((work == 0 && (byte & 0x40) == 0)
591 || (work == -1 && (byte & 0x40) != 0));
592 if (more)
593 byte |= 0x80;
594
301d03af
RS
595 if (byte_op)
596 {
597 fprintf (asm_out_file, "0x%x", byte);
598 if (more)
599 fputc (',', asm_out_file);
600 }
601 else
602 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
2e4b9b8c
RH
603 }
604 while (more);
605
606 if (flag_debug_asm)
607 {
90ff44cf
KG
608 fprintf (asm_out_file, "\t%s sleb128 " HOST_WIDE_INT_PRINT_DEC,
609 ASM_COMMENT_START, value);
2e4b9b8c
RH
610 if (comment)
611 {
612 fputs ("; ", asm_out_file);
613 vfprintf (asm_out_file, comment, ap);
614 }
615 }
616 }
617#endif
618 fputc ('\n', asm_out_file);
619
e34d07f2 620 va_end (ap);
2e4b9b8c
RH
621}
622
623void
e34d07f2
KG
624dw2_asm_output_delta_uleb128 (const char *lab1 ATTRIBUTE_UNUSED,
625 const char *lab2 ATTRIBUTE_UNUSED,
626 const char *comment, ...)
2e4b9b8c 627{
e34d07f2
KG
628 va_list ap;
629
630 va_start (ap, comment);
2e4b9b8c
RH
631
632#ifdef HAVE_AS_LEB128
da6af203 633 fputs ("\t.uleb128 ", asm_out_file);
2e4b9b8c
RH
634 assemble_name (asm_out_file, lab1);
635 fputc ('-', asm_out_file);
636 assemble_name (asm_out_file, lab2);
637#else
638 abort ();
639#endif
640
641 if (flag_debug_asm && comment)
642 {
643 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
644 vfprintf (asm_out_file, comment, ap);
645 }
646 fputc ('\n', asm_out_file);
647
e34d07f2 648 va_end (ap);
2e4b9b8c
RH
649}
650
651void
e34d07f2
KG
652dw2_asm_output_delta_sleb128 (const char *lab1 ATTRIBUTE_UNUSED,
653 const char *lab2 ATTRIBUTE_UNUSED,
654 const char *comment, ...)
2e4b9b8c 655{
e34d07f2 656 va_list ap;
7080f735 657
e34d07f2 658 va_start (ap, comment);
2e4b9b8c
RH
659
660#ifdef HAVE_AS_LEB128
da6af203 661 fputs ("\t.sleb128 ", asm_out_file);
2e4b9b8c
RH
662 assemble_name (asm_out_file, lab1);
663 fputc ('-', asm_out_file);
664 assemble_name (asm_out_file, lab2);
665#else
666 abort ();
667#endif
668
669 if (flag_debug_asm && comment)
670 {
671 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
672 vfprintf (asm_out_file, comment, ap);
673 }
674 fputc ('\n', asm_out_file);
675
e34d07f2 676 va_end (ap);
2e4b9b8c 677}
2a1ee410 678\f
7080f735
AJ
679static rtx dw2_force_const_mem (rtx);
680static int dw2_output_indirect_constant_1 (splay_tree_node, void *);
2a1ee410 681
17211ab5
GK
682static GTY((param1_is (char *), param2_is (tree))) splay_tree indirect_pool;
683
684static GTY(()) int dw2_const_labelno;
2a1ee410 685
d6d26764
JJ
686#if defined(HAVE_GAS_HIDDEN) && defined(SUPPORTS_ONE_ONLY)
687# define USE_LINKONCE_INDIRECT 1
688#else
689# define USE_LINKONCE_INDIRECT 0
690#endif
691
e1f9550a
RH
692/* Put X, a SYMBOL_REF, in memory. Return a SYMBOL_REF to the allocated
693 memory. Differs from force_const_mem in that a single pool is used for
694 the entire unit of translation, and the memory is not guaranteed to be
695 "near" the function in any interesting sense. */
696
2a1ee410 697static rtx
7080f735 698dw2_force_const_mem (rtx x)
2a1ee410
RH
699{
700 splay_tree_node node;
1ee9fb20 701 const char *str;
d6d26764 702 tree decl;
2a1ee410
RH
703
704 if (! indirect_pool)
17211ab5 705 indirect_pool = splay_tree_new_ggc (splay_tree_compare_pointers);
2a1ee410
RH
706
707 if (GET_CODE (x) != SYMBOL_REF)
708 abort ();
1ee9fb20 709
245f1bfa 710 str = targetm.strip_name_encoding (XSTR (x, 0));
1ee9fb20 711 node = splay_tree_lookup (indirect_pool, (splay_tree_key) str);
2a1ee410 712 if (node)
d6d26764 713 decl = (tree) node->value;
2a1ee410
RH
714 else
715 {
2a1ee410
RH
716 tree id;
717
d6d26764
JJ
718 if (USE_LINKONCE_INDIRECT)
719 {
1ee9fb20 720 char *ref_name = alloca (strlen (str) + sizeof "DW.ref.");
d6d26764 721
1ee9fb20 722 sprintf (ref_name, "DW.ref.%s", str);
d6d26764
JJ
723 id = get_identifier (ref_name);
724 decl = build_decl (VAR_DECL, id, ptr_type_node);
725 DECL_ARTIFICIAL (decl) = 1;
a8988448 726 TREE_PUBLIC (decl) = 1;
d6d26764
JJ
727 DECL_INITIAL (decl) = decl;
728 make_decl_one_only (decl);
729 }
730 else
731 {
d6d26764
JJ
732 char label[32];
733
17211ab5
GK
734 ASM_GENERATE_INTERNAL_LABEL (label, "LDFCM", dw2_const_labelno);
735 ++dw2_const_labelno;
d6d26764
JJ
736 id = get_identifier (label);
737 decl = build_decl (VAR_DECL, id, ptr_type_node);
738 DECL_ARTIFICIAL (decl) = 1;
a8988448 739 TREE_STATIC (decl) = 1;
d6d26764
JJ
740 DECL_INITIAL (decl) = decl;
741 }
2a1ee410 742
1ee9fb20 743 id = maybe_get_identifier (str);
2a1ee410
RH
744 if (id)
745 TREE_SYMBOL_REFERENCED (id) = 1;
746
1ee9fb20 747 splay_tree_insert (indirect_pool, (splay_tree_key) str,
d6d26764 748 (splay_tree_value) decl);
2a1ee410
RH
749 }
750
d6d26764 751 return XEXP (DECL_RTL (decl), 0);
2a1ee410
RH
752}
753
e1f9550a
RH
754/* A helper function for dw2_output_indirect_constants called through
755 splay_tree_foreach. Emit one queued constant to memory. */
756
2a1ee410 757static int
7080f735
AJ
758dw2_output_indirect_constant_1 (splay_tree_node node,
759 void *data ATTRIBUTE_UNUSED)
2a1ee410 760{
d6d26764 761 const char *sym;
2a1ee410
RH
762 rtx sym_ref;
763
2a1ee410
RH
764 sym = (const char *) node->key;
765 sym_ref = gen_rtx_SYMBOL_REF (Pmode, sym);
d6d26764 766 if (USE_LINKONCE_INDIRECT)
a5c414e0 767 fprintf (asm_out_file, "\t.hidden %sDW.ref.%s\n", user_label_prefix, sym);
d6d26764 768 assemble_variable ((tree) node->value, 1, 1, 1);
2919600a 769 assemble_integer (sym_ref, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
2a1ee410
RH
770
771 return 0;
772}
773
e1f9550a
RH
774/* Emit the constants queued through dw2_force_const_mem. */
775
2a1ee410 776void
7080f735 777dw2_output_indirect_constants (void)
2a1ee410 778{
d6d26764
JJ
779 if (indirect_pool)
780 splay_tree_foreach (indirect_pool, dw2_output_indirect_constant_1, NULL);
2a1ee410
RH
781}
782
e1f9550a
RH
783/* Like dw2_asm_output_addr_rtx, but encode the pointer as directed. */
784
2a1ee410 785void
e34d07f2
KG
786dw2_asm_output_encoded_addr_rtx (int encoding, rtx addr,
787 const char *comment, ...)
2a1ee410
RH
788{
789 int size;
e34d07f2 790 va_list ap;
7080f735 791
e34d07f2 792 va_start (ap, comment);
e1f9550a
RH
793
794 size = size_of_encoded_value (encoding);
2a1ee410 795
099c8b17
RH
796 if (encoding == DW_EH_PE_aligned)
797 {
798 assemble_align (POINTER_SIZE);
9f5cd0c5
RH
799 assemble_integer (addr, size, POINTER_SIZE, 1);
800 return;
099c8b17
RH
801 }
802
3248917b
RK
803 /* NULL is _always_ represented as a plain zero, as is 1 for Ada's
804 "all others". */
805 if (addr == const0_rtx || addr == const1_rtx)
c8af3574 806 assemble_integer (addr, size, BITS_PER_UNIT, 1);
e1f9550a 807 else
2a1ee410 808 {
e1f9550a
RH
809 restart:
810 /* Allow the target first crack at emitting this. Some of the
3a538a66 811 special relocations require special directives instead of
e1f9550a 812 just ".4byte" or whatever. */
2a1ee410 813#ifdef ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX
e1f9550a
RH
814 ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX (asm_out_file, encoding, size,
815 addr, done);
2a1ee410
RH
816#endif
817
e1f9550a
RH
818 /* Indirection is used to get dynamic relocations out of a
819 read-only section. */
820 if (encoding & DW_EH_PE_indirect)
821 {
822 /* It is very tempting to use force_const_mem so that we share data
823 with the normal constant pool. However, we've already emitted
824 the constant pool for this function. Moreover, we'd like to
825 share these constants across the entire unit of translation,
826 or better, across the entire application (or DSO). */
827 addr = dw2_force_const_mem (addr);
828 encoding &= ~DW_EH_PE_indirect;
829 goto restart;
830 }
2a1ee410 831
e1f9550a
RH
832 switch (encoding & 0xF0)
833 {
834 case DW_EH_PE_absptr:
301d03af 835 dw2_assemble_integer (size, addr);
e1f9550a 836 break;
2a1ee410 837
e1f9550a
RH
838 case DW_EH_PE_pcrel:
839 if (GET_CODE (addr) != SYMBOL_REF)
840 abort ();
2a1ee410 841#ifdef ASM_OUTPUT_DWARF_PCREL
e1f9550a 842 ASM_OUTPUT_DWARF_PCREL (asm_out_file, size, XSTR (addr, 0));
2a1ee410 843#else
301d03af 844 dw2_assemble_integer (size, gen_rtx_MINUS (Pmode, addr, pc_rtx));
2a1ee410 845#endif
e1f9550a 846 break;
2a1ee410 847
e1f9550a 848 default:
3a538a66 849 /* Other encodings should have been handled by
e1f9550a
RH
850 ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX. */
851 abort ();
852 }
2a1ee410
RH
853
854#ifdef ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX
e1f9550a 855 done:;
2a1ee410 856#endif
e1f9550a
RH
857 }
858
859 if (flag_debug_asm && comment)
860 {
861 fprintf (asm_out_file, "\t%s ", ASM_COMMENT_START);
862 vfprintf (asm_out_file, comment, ap);
863 }
2a1ee410 864 fputc ('\n', asm_out_file);
e1f9550a 865
e34d07f2 866 va_end (ap);
2a1ee410 867}
17211ab5
GK
868
869#include "gt-dwarf2asm.h"