]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/dwarf2asm.h
fix PR68343: disable fuse-*.c tests for isl 0.14 or earlier
[thirdparty/gcc.git] / gcc / dwarf2asm.h
CommitLineData
2e4b9b8c 1/* Dwarf2 assembler output helper routines.
818ab71a 2 Copyright (C) 2001-2016 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
9dcd6f09 8Software Foundation; either version 3, or (at your option) any later
1322177d 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
9dcd6f09
NC
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
2e4b9b8c 19
f1717f8d
KC
20#ifndef GCC_DWARF2ASM_H
21#define GCC_DWARF2ASM_H
2e4b9b8c 22
f55ade6e 23extern void dw2_assemble_integer (int, rtx);
301d03af 24
d4ea4622
RH
25extern void dw2_asm_output_data_raw (int, unsigned HOST_WIDE_INT);
26
f55ade6e
AJ
27extern void dw2_asm_output_data (int, unsigned HOST_WIDE_INT,
28 const char *, ...)
d41c4351 29 ATTRIBUTE_NULL_PRINTF_3;
2e4b9b8c 30
f55ade6e
AJ
31extern void dw2_asm_output_delta (int, const char *, const char *,
32 const char *, ...)
d41c4351 33 ATTRIBUTE_NULL_PRINTF_4;
2e4b9b8c 34
67ad2ae7
DR
35extern void dw2_asm_output_vms_delta (int, const char *, const char *,
36 const char *, ...)
37 ATTRIBUTE_NULL_PRINTF_4;
38
b8698a0f 39extern void dw2_asm_output_offset (int, const char *, section *,
192d0f89
GK
40 const char *, ...)
41 ATTRIBUTE_NULL_PRINTF_4;
2e4b9b8c 42
f55ade6e 43extern void dw2_asm_output_addr (int, const char *, const char *, ...)
d41c4351 44 ATTRIBUTE_NULL_PRINTF_3;
8e7fa2c8 45
f55ade6e 46extern void dw2_asm_output_addr_rtx (int, rtx, const char *, ...)
d41c4351 47 ATTRIBUTE_NULL_PRINTF_3;
2e4b9b8c 48
b03e9863 49extern void dw2_asm_output_encoded_addr_rtx (int, rtx, bool,
f55ade6e 50 const char *, ...)
b03e9863 51 ATTRIBUTE_NULL_PRINTF_4;
2a1ee410 52
f55ade6e
AJ
53extern void dw2_asm_output_nstring (const char *, size_t,
54 const char *, ...)
d41c4351 55 ATTRIBUTE_NULL_PRINTF_3;
2e4b9b8c 56
d4ea4622
RH
57extern void dw2_asm_output_data_uleb128_raw (unsigned HOST_WIDE_INT);
58
f55ade6e
AJ
59extern void dw2_asm_output_data_uleb128 (unsigned HOST_WIDE_INT,
60 const char *, ...)
d41c4351 61 ATTRIBUTE_NULL_PRINTF_2;
2e4b9b8c 62
d4ea4622
RH
63extern void dw2_asm_output_data_sleb128_raw (HOST_WIDE_INT);
64
f55ade6e
AJ
65extern void dw2_asm_output_data_sleb128 (HOST_WIDE_INT,
66 const char *, ...)
d41c4351 67 ATTRIBUTE_NULL_PRINTF_2;
2e4b9b8c 68
f55ade6e
AJ
69extern void dw2_asm_output_delta_uleb128 (const char *, const char *,
70 const char *, ...)
d41c4351 71 ATTRIBUTE_NULL_PRINTF_3;
2e4b9b8c 72
f55ade6e
AJ
73extern int size_of_uleb128 (unsigned HOST_WIDE_INT);
74extern int size_of_sleb128 (HOST_WIDE_INT);
75extern int size_of_encoded_value (int);
76extern const char *eh_data_format_name (int);
2a1ee410 77
d4ea4622 78extern rtx dw2_force_const_mem (rtx, bool);
f55ade6e 79extern void dw2_output_indirect_constants (void);
c8f4fe99
BE
80
81/* These are currently unused. */
82
83#if 0
84extern void dw2_asm_output_pcrel (int, const char *, const char *, ...)
85 ATTRIBUTE_NULL_PRINTF_3;
86
87extern void dw2_asm_output_delta_sleb128 (const char *, const char *,
88 const char *, ...)
89 ATTRIBUTE_NULL_PRINTF_3;
90#endif
f1717f8d
KC
91
92#endif /* GCC_DWARF2ASM_H */