Correct error in bemit_ldtls(): the register index must be mapped to the machine...
[libfirm] / ir / be / ia32 / ia32_emitter.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       This file implements the ia32 node emitter.
23  * @author      Christian Wuerdig, Matthias Braun
24  * @version     $Id$
25  */
26 #ifndef FIRM_BE_IA32_IA32_EMITTER_H
27 #define FIRM_BE_IA32_IA32_EMITTER_H
28
29 #include "irnode.h"
30
31 #include "../bearch.h"
32
33 #include "bearch_ia32_t.h"
34
35 void ia32_emit_source_register(const ir_node *node, int pos);
36 void ia32_emit_dest_register(const ir_node *node, int pos);
37 void ia32_emit_dest_register_size(const ir_node *node, int pos);
38 void ia32_emit_8bit_dest_register(const ir_node *node, int pos);
39 void ia32_emit_x87_register(const ir_node *node, int pos);
40 void ia32_emit_source_register_or_immediate(const ir_node *node, int pos);
41 void ia32_emit_8bit_source_register_or_immediate(const ir_node *node, int pos);
42 void ia32_emit_8bit_high_source_register(const ir_node *node, int pos);
43 void ia32_emit_16bit_source_register_or_immediate(const ir_node *node, int pos);
44 void ia32_emit_mode_suffix(const ir_node *node);
45 void ia32_emit_x87_mode_suffix(const ir_node *node);
46 void ia32_emit_xmm_mode_suffix(const ir_node *node);
47 void ia32_emit_xmm_mode_suffix_s(const ir_node *node);
48 void ia32_emit_extend_suffix(const ir_node *node);
49 void ia32_emit_cmp_suffix_node(const ir_node *node, int flags_pos);
50 void ia32_emit_binop(const ir_node *node);
51 void ia32_emit_unop(const ir_node *node, int pos);
52 void ia32_emit_am(const ir_node *node);
53 void ia32_emit_x87_binop(const ir_node *node);
54
55 void ia32_gen_routine(ia32_code_gen_t *cg, ir_graph *irg);
56 void ia32_gen_binary_routine(ia32_code_gen_t *ia32_cg, ir_graph *irg);
57
58 /** Initializes the Emitter. */
59 void ia32_init_emitter(void);
60 #endif