X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fmips%2Fmips_new_nodes.h;h=38d1b88d45efdc443a02dfe3bb33220b17b1a53f;hb=39cb52264857d7c21c7141ba82bb55adaa78064d;hp=06d66d0f5d7609e110f8985d190c597fc65e6dc5;hpb=11dd35912fd6ad1f7637137c4c3f9e0628b8387f;p=libfirm diff --git a/ir/be/mips/mips_new_nodes.h b/ir/be/mips/mips_new_nodes.h index 06d66d0f5..38d1b88d4 100644 --- a/ir/be/mips/mips_new_nodes.h +++ b/ir/be/mips/mips_new_nodes.h @@ -1,10 +1,30 @@ -#ifndef _mips_NEW_NODES_H_ -#define _mips_NEW_NODES_H_ - -/** - * Function prototypes for the assembler ir node constructors. - * $Id$ - */ +/* + * 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. + */ + +/** + * @file + * @brief Function prototypes for the assembler ir node constructors. + * @author Matthias Braun, Mehdi + * @version $Id$ + */ +#ifndef FIRM_BE_MIPS_MIPS_NEW_NODES_H +#define FIRM_BE_MIPS_MIPS_NEW_NODES_H #include "mips_nodes_attr.h" @@ -22,92 +42,43 @@ /** * Returns the attributes of an mips node. */ -mips_attr_t *get_mips_attr(const ir_node *node); +mips_attr_t *get_mips_attr(ir_node *node); +const mips_attr_t *get_mips_attr_const(const ir_node *node); +const mips_immediate_attr_t *get_mips_immediate_attr_const(const ir_node *node); +const mips_load_store_attr_t *get_mips_load_store_attr_const( + const ir_node *node); /** * Returns the argument register requirements of an mips node. */ -const mips_register_req_t **get_mips_in_req_all(const ir_node *node); +const arch_register_req_t **get_mips_in_req_all(const ir_node *node); /** * Returns the result register requirements of an mips node. */ -const mips_register_req_t **get_mips_out_req_all(const ir_node *node); +const arch_register_req_t **get_mips_out_req_all(const ir_node *node); /** * Returns the argument register requirements of an mips node. */ -const mips_register_req_t *get_mips_in_req(const ir_node *node, int pos); +const arch_register_req_t *get_mips_in_req(const ir_node *node, int pos); /** * Returns the result register requirements of an mips node. */ -const mips_register_req_t *get_mips_out_req(const ir_node *node, int pos); +const arch_register_req_t *get_mips_out_req(const ir_node *node, int pos); /** * Sets the OUT register requirements at position pos. */ -void set_mips_req_out(ir_node *node, const mips_register_req_t *req, int pos); +void set_mips_req_out(ir_node *node, const arch_register_req_t *req, int pos); /** * Sets the IN register requirements at position pos. */ -void set_mips_req_in(ir_node *node, const mips_register_req_t *req, int pos); - -/** - * Returns the register flag of an mips node. - */ -arch_irn_flags_t get_mips_flags(const ir_node *node); - -/** - * Sets the register flag of an mips node. - */ -void set_mips_flags(const ir_node *node, arch_irn_flags_t flags); - -/** - * Returns the result register slots of an mips node. - */ -const arch_register_t **get_mips_slots(const ir_node *node); - -/** - * Returns the name of the OUT register at position pos. - */ -const char *get_mips_out_reg_name(const ir_node *node, int pos); - -/** - * Returns the index of the OUT register at position pos within its register class. - */ -int get_mips_out_regnr(const ir_node *node, int pos); - -/** - * Returns the OUT register at position pos. - */ -const arch_register_t *get_mips_out_reg(const ir_node *node, int pos); - -/** - * Sets the number of results. - */ -void set_mips_n_res(ir_node *node, int n_res); - -/** - * Returns the number of results. - */ -int get_mips_n_res(const ir_node *node); - - -/** - * Initializes the nodes attributes. - */ -void init_mips_attributes(ir_node *node, arch_irn_flags_t flags, const mips_register_req_t **in_reqs, - const mips_register_req_t **out_reqs, int n_res, unsigned latency); - -/** - * Initialize transform ops for the mips opcodes - */ -void mips_init_opcode_transforms(void); - +void set_mips_req_in(ir_node *node, const arch_register_req_t *req, int pos); /* Include the generated headers */ #include "gen_mips_new_nodes.h" -#endif /* _mips_NEW_NODES_H_ */ +#endif