* Makefile.in (rtlanal.o): Depend on $(TM_P_H).
[official-gcc.git] / gcc / dwarf2asm.h
blob63d55e59ef4cf96a6c2429b9a97c6a2630edae3d
1 /* Dwarf2 assembler output helper routines.
2 Copyright (C) 2001 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 2, or (at your option) any later
9 version.
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.
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. */
22 /* ??? Format checking yields "null format string" warnings, which is
23 the way these routines are signaled that there is no associated
24 debug information. So the attributes are commented out. */
26 extern void dw2_asm_output_data PARAMS ((int, unsigned HOST_WIDE_INT,
27 const char *, ...))
28 /* ATTRIBUTE_PRINTF_3 */;
30 extern void dw2_asm_output_delta PARAMS ((int, const char *,
31 const char *,
32 const char *, ...))
33 /* ATTRIBUTE_PRINTF_4 */;
35 extern void dw2_asm_output_offset PARAMS ((int, const char *,
36 const char *, ...))
37 /* ATTRIBUTE_PRINTF_3 */;
39 extern void dw2_asm_output_pcrel PARAMS ((int, const char *,
40 const char *, ...))
41 /* ATTRIBUTE_PRINTF_3 */;
43 extern void dw2_asm_output_addr PARAMS ((int, const char *,
44 const char *, ...))
45 /* ATTRIBUTE_PRINTF_3 */;
47 extern void dw2_asm_output_addr_rtx PARAMS ((int, rtx,
48 const char *, ...))
49 /* ATTRIBUTE_PRINTF_3 */;
51 extern void dw2_asm_output_encoded_addr_rtx PARAMS ((int, rtx,
52 const char *, ...))
53 /* ATTRIBUTE_PRINTF_3 */;
55 extern void dw2_asm_output_nstring PARAMS ((const char *, size_t,
56 const char *, ...))
57 /* ATTRIBUTE_PRINTF_3 */;
59 extern void dw2_asm_output_data_uleb128 PARAMS ((unsigned HOST_WIDE_INT,
60 const char *, ...))
61 /* ATTRIBUTE_PRINTF_2 */;
63 extern void dw2_asm_output_data_sleb128 PARAMS ((HOST_WIDE_INT,
64 const char *, ...))
65 /* ATTRIBUTE_PRINTF_2 */;
67 extern void dw2_asm_output_delta_uleb128 PARAMS ((const char *, const char *,
68 const char *, ...))
69 /* ATTRIBUTE_PRINTF_3 */;
71 extern void dw2_asm_output_delta_sleb128 PARAMS ((const char *, const char *,
72 const char *, ...))
73 /* ATTRIBUTE_PRINTF_3 */;
75 extern int size_of_uleb128 PARAMS ((unsigned HOST_WIDE_INT));
76 extern int size_of_sleb128 PARAMS ((HOST_WIDE_INT));
77 extern int size_of_encoded_value PARAMS ((int));
78 extern const char *eh_data_format_name PARAMS ((int));
80 extern void dw2_output_indirect_constants PARAMS ((void));