* dw2gencfi.c (output_cfi_insn): Fix typo for negative offsets.
[deliverable/binutils-gdb.git] / gas / dw2gencfi.h
CommitLineData
54cfded0
AM
1/* dw2gencfi.h - Support for generating Dwarf2 CFI information.
2 Copyright 2003 Free Software Foundation, Inc.
3 Contributed by Michal Ludvig <mludvig@suse.cz>
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
21
22#ifndef DW2GENCFI_H
23#define DW2GENCFI_H
24
25#include "elf/dwarf2.h"
26
a4447b93 27struct symbol;
54cfded0
AM
28
29extern const pseudo_typeS cfi_pseudo_table[];
30
54cfded0
AM
31/* cfi_finish() is called at the end of file. It will complain if
32 the last CFI wasn't properly closed by .cfi_endproc. */
a4447b93
RH
33extern void cfi_finish (void);
34
35/* Entry points for backends to add unwind information. */
36extern void cfi_new_fde (struct symbol *);
37extern void cfi_end_fde (struct symbol *);
38extern void cfi_set_return_column (unsigned);
39extern void cfi_add_advance_loc (struct symbol *);
40extern void cfi_add_CFA_offset (unsigned, offsetT);
41extern void cfi_add_CFA_def_cfa (unsigned, offsetT);
42extern void cfi_add_CFA_register (unsigned, unsigned);
43extern void cfi_add_CFA_def_cfa_register (unsigned);
44extern void cfi_add_CFA_def_cfa_offset (offsetT);
54cfded0
AM
45
46#endif /* DW2GENCFI_H */
This page took 0.02752 seconds and 4 git commands to generate.