not needed
[libfirm] / ir / be / begnuas.h
1 /*
2  * Copyright (C) 1995-2007 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  * Header for ia32 assembler declarations dumper.
22  * @author Christian Wuerdig, Matthias Braun
23  * $Id$
24  */
25 #ifndef _BE_GEN_DECLS_H_
26 #define _BE_GEN_DECLS_H_
27
28 #include "be.h"
29 #include "beemitter.h"
30
31 /**
32  * Sections.
33  */
34 typedef enum section_t {
35         GAS_SECTION_TEXT   = 0,   /**< text section */
36         GAS_SECTION_DATA   = 1,   /**< data section */
37         GAS_SECTION_RODATA = 2,   /**< rodata section */
38         GAS_SECTION_COMMON = 3,   /**< common section */
39         GAS_SECTION_TLS    = 4,   /**< thread local storage section */
40         GAS_SECTION_CTOR   = 5,   /**< ctor section for instrumentation code init */
41         GAS_SECTION_MAX    = 6
42 } be_gas_section_t;
43
44 typedef enum asm_flavour_t {
45         GAS_FLAVOUR_NORMAL = 0,  /**< normal gas */
46         GAS_FLAVOUR_MINGW  = 1,  /**< MinGW variant */
47         GAS_FLAVOUR_MAX    = 2
48 } be_gas_flavour_t;
49
50 extern be_gas_flavour_t be_gas_flavour;
51
52
53 /**
54  * Generate all entities.
55  */
56 void be_gas_emit_decls(be_emit_env_t *env, const be_main_env_t *main_env,
57                        int only_emit_marked_entities);
58
59 void be_gas_emit_switch_section(be_emit_env_t *env, be_gas_section_t section);
60
61 #endif