Merge from vendor branch HEIMDAL:
[dragonfly.git] / contrib / gcc-3.4 / gcc / dwarf2asm.h
1 /* Dwarf2 assembler output helper routines.
2    Copyright (C) 2001, 2003 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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 2, or (at your option) any later
9 version.
10
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
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING.  If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.  */
20
21
22 extern void dw2_assemble_integer (int, rtx);
23
24 extern void dw2_asm_output_data (int, unsigned HOST_WIDE_INT,
25                                  const char *, ...)
26      ATTRIBUTE_NULL_PRINTF_3;
27
28 extern void dw2_asm_output_delta (int, const char *, const char *,
29                                   const char *, ...)
30      ATTRIBUTE_NULL_PRINTF_4;
31
32 extern void dw2_asm_output_offset (int, const char *, const char *, ...)
33      ATTRIBUTE_NULL_PRINTF_3;
34
35 extern void dw2_asm_output_pcrel (int, const char *, const char *, ...)
36      ATTRIBUTE_NULL_PRINTF_3;
37
38 extern void dw2_asm_output_addr (int, const char *, const char *, ...)
39      ATTRIBUTE_NULL_PRINTF_3;
40
41 extern void dw2_asm_output_addr_rtx (int, rtx, const char *, ...)
42      ATTRIBUTE_NULL_PRINTF_3;
43
44 extern void dw2_asm_output_encoded_addr_rtx (int, rtx,
45                                              const char *, ...)
46      ATTRIBUTE_NULL_PRINTF_3;
47
48 extern void dw2_asm_output_nstring (const char *, size_t,
49                                     const char *, ...)
50      ATTRIBUTE_NULL_PRINTF_3;
51
52 extern void dw2_asm_output_data_uleb128 (unsigned HOST_WIDE_INT,
53                                          const char *, ...)
54      ATTRIBUTE_NULL_PRINTF_2;
55
56 extern void dw2_asm_output_data_sleb128 (HOST_WIDE_INT,
57                                          const char *, ...)
58      ATTRIBUTE_NULL_PRINTF_2;
59
60 extern void dw2_asm_output_delta_uleb128 (const char *, const char *,
61                                           const char *, ...)
62      ATTRIBUTE_NULL_PRINTF_3;
63
64 extern void dw2_asm_output_delta_sleb128 (const char *, const char *,
65                                           const char *, ...)
66      ATTRIBUTE_NULL_PRINTF_3;
67
68 extern int size_of_uleb128 (unsigned HOST_WIDE_INT);
69 extern int size_of_sleb128 (HOST_WIDE_INT);
70 extern int size_of_encoded_value (int);
71 extern const char *eh_data_format_name (int);
72
73 extern void dw2_output_indirect_constants (void);