2000-05-02 Jeff Sturm <jsturm@one-point.com>
[official-gcc.git] / gcc / dwarf2asm.h
blob7f3baed0816c2248d3342bec2de49cf902633d27
1 /* Dwarf2 assembler output helper routines.
2 Copyright (C) 2001 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 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));
53 extern void dw2_asm_output_nstring PARAMS ((const char *, size_t,
54 const char *, ...))
55 /* ATTRIBUTE_PRINTF_3 */;
57 extern void dw2_asm_output_data_uleb128 PARAMS ((unsigned HOST_WIDE_INT,
58 const char *, ...))
59 /* ATTRIBUTE_PRINTF_2 */;
61 extern void dw2_asm_output_data_sleb128 PARAMS ((HOST_WIDE_INT,
62 const char *, ...))
63 /* ATTRIBUTE_PRINTF_2 */;
65 extern void dw2_asm_output_delta_uleb128 PARAMS ((const char *, const char *,
66 const char *, ...))
67 /* ATTRIBUTE_PRINTF_3 */;
69 extern void dw2_asm_output_delta_sleb128 PARAMS ((const char *, const char *,
70 const char *, ...))
71 /* ATTRIBUTE_PRINTF_3 */;
73 extern int size_of_uleb128 PARAMS ((unsigned HOST_WIDE_INT));
74 extern int size_of_sleb128 PARAMS ((HOST_WIDE_INT));
75 extern int size_of_encoded_value PARAMS ((int));
77 extern void dw2_output_indirect_constants PARAMS ((void));