c063997417ecf0268d69df0dd4f30fa7c96d6cc0
[libfirm] / ir / be / arm / arm_emitter.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 #ifndef _ARM_EMITTER_H_
21 #define _ARM_EMITTER_H_
22
23 #include "firm_types.h"
24 #include "irargs_t.h"
25 #include "debug.h"
26
27 #include "../bearch_t.h"
28
29 #include "bearch_arm_t.h"
30
31 /**
32  * A SymConst entry.
33  */
34 typedef struct _SymConstEntry {
35         unsigned label;              /**< a label number for this label */
36         ir_node  *symconst;          /**< the node holding this label */
37         struct _SymConstEntry *next; /**< links all entries */
38 } SymConstEntry;
39
40 /**
41  * The ARM emitter environment.
42  */
43 typedef struct _arm_emit_env_t {
44         FILE                      *out;      /**< the output stream */
45         const arch_env_t          *arch_env; /**< the architecture environment */
46         const arm_code_gen_t      *cg;       /**< the code generator object */
47         struct obstack            obst;      /**< an temporary store for SymConstEntries */
48         SymConstEntry             *symbols;  /**< list containing all SymConstEntries */
49         DEBUG_ONLY(firm_dbg_module_t *mod;)
50 } arm_emit_env_t;
51
52 const lc_arg_env_t *arm_get_arg_env(void);
53
54 void equalize_dest_src(FILE *F, ir_node *n);
55
56 int get_arm_reg_nr(ir_node *irn, int posi, int in_out);
57 const char *get_arm_in_reg_name(ir_node *irn, int pos);
58
59 void arm_gen_routine(FILE *F, ir_graph *irg, const arm_code_gen_t *cg);
60
61 /**
62  * Sections.
63  */
64 typedef enum sections {
65         NO_SECTION,      /**< no section selected yet. */
66         SECTION_TEXT,    /**< text section */
67         SECTION_DATA,    /**< data section */
68         SECTION_RODATA,  /**< rodata section */
69         SECTION_COMMON,  /**< common section */
70 } sections;
71
72 /**
73  * Switch to a new section
74  */
75 void arm_switch_section(FILE *f, sections sec);
76
77 #endif /* _ARM_EMITTER_H_ */