allow several odd weak combinations
[libfirm] / ir / be / begnuas.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       Dumps global variables and constants as gas assembler.
23  * @author      Christian Wuerdig, Matthias Braun
24  * @date        04.11.2005
25  * @version     $Id$
26  */
27 #ifndef FIRM_BE_BEGNUAS_H
28 #define FIRM_BE_BEGNUAS_H
29
30 #include <stdbool.h>
31 #include "be.h"
32 #include "beemitter.h"
33
34 typedef enum section_t {
35         GAS_SECTION_TEXT,   /**< text section - contains program code */
36         GAS_SECTION_DATA,   /**< data section - contains arbitrary data */
37         GAS_SECTION_RODATA, /**< rodata section - contains read-only data */
38         GAS_SECTION_BSS,    /**< bss section - contains uninitialized data */
39         GAS_SECTION_TLS_DATA, /**< thread local storage section */
40         GAS_SECTION_TLS_BSS,  /**< thread local storage yero initialized */
41         GAS_SECTION_CONSTRUCTORS,   /**< ctors section */
42         GAS_SECTION_DESTRUCTORS,    /**< dtors section */
43         GAS_SECTION_CSTRING, /**< section for constant strings */
44         GAS_SECTION_PIC_TRAMPOLINES, /**< trampolines for pic codes */
45         GAS_SECTION_PIC_SYMBOLS,     /**< contains resolved pic symbols */
46         GAS_SECTION_LAST = GAS_SECTION_PIC_SYMBOLS
47 } be_gas_section_t;
48
49 typedef enum object_file_format_t {
50         OBJECT_FILE_FORMAT_ELF,    /**< Executable and Linkable Format (unixes) */
51         OBJECT_FILE_FORMAT_COFF,   /**< Common Object File Format (Windows) */
52         OBJECT_FILE_FORMAT_MACH_O, /**< Mach Object File Format (OS/X) */
53         OBJECT_FILE_FORMAT_LAST = OBJECT_FILE_FORMAT_MACH_O
54 } object_file_format_t;
55
56 /** The variable where the GAS dialect is stored. */
57 extern object_file_format_t be_gas_object_file_format;
58 extern bool                 be_gas_emit_types;
59 /**
60  * the .type directive needs to specify @function, #function or %function
61  * depending on the target architecture (yay)
62  */
63 extern char             be_gas_elf_type_char;
64
65 /**
66  * Generate all entities.
67  * @param main_env          the main backend environment
68  * @param emit_commons      if non-zero, emit commons (non-local uninitialized entities)
69  */
70 void be_gas_emit_decls(const be_main_env_t *main_env);
71
72 /**
73  * Switch the current output section to the given out.
74  *
75  * @param section  the new output section
76  */
77 void be_gas_emit_switch_section(be_gas_section_t section);
78
79 /**
80  * emit assembler instructions necessary before starting function code
81  */
82 void be_gas_emit_function_prolog(const ir_entity *entity,
83                                  unsigned po2alignment);
84
85 void be_gas_emit_function_epilog(const ir_entity *entity);
86
87 /**
88  * emit ld_ident of an entity and performs additional mangling if necessary.
89  * (mangling is necessary for ir_visibility_private for example).
90  * Emits a block label for type_code entities.
91  */
92 void be_gas_emit_entity(const ir_entity *entity);
93
94 /**
95  * Return the label prefix for labeled blocks.
96  */
97 const char *be_gas_block_label_prefix(void);
98
99 /**
100  * Return the label prefix for labeled instructions.
101  */
102 const char *be_gas_insn_label_prefix(void);
103
104 #endif