X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fia32%2Fia32_emitter.h;h=ac4b18f7e2b25ef5c08f72d188052874ed2bad5d;hb=0ddf4c5ef7e5008703510e56fcdca3e9329050ad;hp=0a4ae0fb627913e9dc9b576261ef8cd2714fe69d;hpb=1c04590f91415461c3ded074a02f7ca869876a1b;p=libfirm diff --git a/ir/be/ia32/ia32_emitter.h b/ir/be/ia32/ia32_emitter.h index 0a4ae0fb6..ac4b18f7e 100644 --- a/ir/be/ia32/ia32_emitter.h +++ b/ir/be/ia32/ia32_emitter.h @@ -1,58 +1,55 @@ -#ifndef _IA32_EMITTER_H_ -#define _IA32_EMITTER_H_ - -#include "irargs_t.h" // this also inlucdes -#include "irnode.h" -#include "debug.h" - -#include "../bearch.h" - -#include "bearch_ia32_t.h" - -typedef struct _ia32_emit_env_t { - FILE *out; - const arch_env_t *arch_env; - const ia32_code_gen_t *cg; - ia32_isa_t *isa; - DEBUG_ONLY(firm_dbg_module_t *mod;) -} ia32_emit_env_t; - -const lc_arg_env_t *ia32_get_arg_env(void); - -char *ia32_emit_binop(const ir_node *irn, ia32_emit_env_t *env); -char *ia32_emit_unop(const ir_node *irn, ia32_emit_env_t *env); -char *ia32_emit_am(const ir_node *irn, ia32_emit_env_t *env); - -char *ia32_emit_x87_binop(const ir_node *n, ia32_emit_env_t *env); - -int get_ia32_reg_nr(ir_node *irn, int posi, int in_out); -const char *get_ia32_in_reg_name(ir_node *irn, int pos); - -void ia32_gen_routine(FILE *F, ir_graph *irg, const ia32_code_gen_t *cg); - -/** - * Sections. +/* + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * This file may be distributed and/or modified under the terms of the + * GNU General Public License version 2 as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL included in the + * packaging of this file. + * + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. + * + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -typedef enum section_t { - NO_SECTION = -1, /**< no section selected yet. */ - SECTION_TEXT = 0, /**< text section */ - SECTION_DATA = 1, /**< data section */ - SECTION_RODATA = 2, /**< rodata section */ - SECTION_COMMON = 3, /**< common section */ - SECTION_MAX = 4 -} section_t; /** - * Switch to a new section. + * @file + * @brief This file implements the ia32 node emitter. + * @author Christian Wuerdig, Matthias Braun + * @version $Id$ */ -void ia32_switch_section(FILE *f, section_t sec); +#ifndef FIRM_BE_IA32_IA32_EMITTER_H +#define FIRM_BE_IA32_IA32_EMITTER_H -typedef enum asm_flavour_t { - ASM_LINUX_GAS = 0, /**< Linux gas */ - ASM_MINGW_GAS = 1, /**< MinGW gas */ - ASM_MAX = 2 -} asm_flavour_t; +#include "irnode.h" + +#include "../bearch.h" -extern asm_flavour_t asm_flavour; +#include "bearch_ia32_t.h" -#endif /* _IA32_EMITTER_H_ */ +void ia32_emit_source_register(const ir_node *node, int pos); +void ia32_emit_dest_register(const ir_node *node, int pos); +void ia32_emit_8bit_dest_register(const ir_node *node, int pos); +void ia32_emit_x87_register(const ir_node *node, int pos); +void ia32_emit_source_register_or_immediate(const ir_node *node, int pos); +void ia32_emit_8bit_source_register_or_immediate(const ir_node *node, int pos); +void ia32_emit_mode_suffix(const ir_node *node); +void ia32_emit_x87_mode_suffix(const ir_node *node); +void ia32_emit_xmm_mode_suffix(const ir_node *node); +void ia32_emit_xmm_mode_suffix_s(const ir_node *node); +void ia32_emit_extend_suffix(const ir_mode *mode); +void ia32_emit_cmp_suffix_node(const ir_node *node, int flags_pos); +void ia32_emit_binop(const ir_node *node); +void ia32_emit_unop(const ir_node *node, int pos); +void ia32_emit_am(const ir_node *node); +void ia32_emit_x87_binop(const ir_node *node); + +void ia32_gen_routine(ia32_code_gen_t *cg, ir_graph *irg); +void ia32_emit_exc_label(const ir_node *node); + +#endif