bedbgout, stabs: remove obsolete debug modules
[libfirm] / ir / be / bedwarf.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Dwarf debug output support.
23  * @author  Matthias Braun
24  */
25 #ifndef FIRM_BE_BEDWARF_H
26 #define FIRM_BE_BEDWARF_H
27
28 #include "beabi.h"
29
30 /** initialize and open debug handle */
31 void be_dwarf_open(void);
32
33 /** close a debug handler. */
34 void be_dwarf_close(void);
35
36 /** start a compilation unit */
37 void be_dwarf_unit_begin(const char *filename);
38
39 /** end compilation unit */
40 void be_dwarf_unit_end(void);
41
42 /** debug for a method begin */
43 void be_dwarf_method_begin(const ir_entity *ent);
44
45 /** debug for a method end */
46 void be_dwarf_method_end(void);
47
48 /** dump a variable in the global type */
49 void be_dwarf_variable(const ir_entity *ent);
50
51 /** Set "location" in the sourcefile corresponding to the following
52  * assembly instructions */
53 void be_dwarf_location(dbg_info *dbgi);
54
55 #endif