X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2FTEMPLATE%2FTEMPLATE_new_nodes.h;h=e99f482ef3db58fbc2d428abf08617f0dbd7dc83;hb=1209ae49db1b42e9d39269eb3a86b187f0c263d9;hp=05cfe6a18982e9acaddfe5609be322f8058fa628;hpb=232b108d326a2db9d6fb4c78e2fcf86d4c36a937;p=libfirm diff --git a/ir/be/TEMPLATE/TEMPLATE_new_nodes.h b/ir/be/TEMPLATE/TEMPLATE_new_nodes.h index 05cfe6a18..e99f482ef 100644 --- a/ir/be/TEMPLATE/TEMPLATE_new_nodes.h +++ b/ir/be/TEMPLATE/TEMPLATE_new_nodes.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -20,99 +20,18 @@ /** * @file * @brief Function prototypes for the assembler ir node constructors. - * @version $Id$ */ #ifndef FIRM_BE_TEMPALTE_TEMPLATE_NEW_NODES_H #define FIRM_BE_TEMPLATE_TEMPLATE_NEW_NODES_H #include "TEMPLATE_nodes_attr.h" -/*************************************************************************************************** - * _ _ _ __ _ _ _ _ - * | | | | | | / / | | | | | | | | - * __ _| |_| |_ _ __ ___ ___| |_ / /_ _ ___| |_ _ __ ___ ___| |_| |__ ___ __| |___ - * / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __| - * | (_| | |_| |_| | \__ \ __/ |_ / / (_| | __/ |_ | | | | | | __/ |_| | | | (_) | (_| \__ \ - * \__,_|\__|\__|_| |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/ - * __/ | - * |___/ - ***************************************************************************************************/ - /** * Returns the attributes of an TEMPLATE node. */ -TEMPLATE_attr_t *get_TEMPLATE_attr(const ir_node *node); - -/** - * Returns the argument register requirements of an TEMPLATE node. - */ -const arch_register_req_t **get_TEMPLATE_in_req_all(const ir_node *node); - -/** - * Returns the result register requirements of an TEMPLATE node. - */ -const arch_register_req_t **get_TEMPLATE_out_req_all(const ir_node *node); - -/** - * Returns the argument register requirements of an TEMPLATE node. - */ -const arch_register_req_t *get_TEMPLATE_in_req(const ir_node *node, int pos); - -/** - * Returns the result register requirements of an TEMPLATE node. - */ -const arch_register_req_t *get_TEMPLATE_out_req(const ir_node *node, int pos); - -/** - * Sets the OUT register requirements at position pos. - */ -void set_TEMPLATE_req_out(ir_node *node, const arch_register_req_t *req, int pos); - -/** - * Sets the IN register requirements at position pos. - */ -void set_TEMPLATE_req_in(ir_node *node, const arch_register_req_t *req, int pos); - -/** - * Returns the register flag of an TEMPLATE node. - */ -arch_irn_flags_t get_TEMPLATE_flags(const ir_node *node); - -/** - * Sets the register flag of an TEMPLATE node. - */ -void set_TEMPLATE_flags(const ir_node *node, arch_irn_flags_t flags); - -/** - * Returns the result register slots of an TEMPLATE node. - */ -const arch_register_t **get_TEMPLATE_slots(const ir_node *node); - -/** - * Returns the name of the OUT register at position pos. - */ -const char *get_TEMPLATE_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_TEMPLATE_out_regnr(const ir_node *node, int pos); - -/** - * Returns the OUT register at position pos. - */ -const arch_register_t *get_TEMPLATE_out_reg(const ir_node *node, int pos); - -/** - * Sets the number of results. - */ -void set_TEMPLATE_n_res(ir_node *node, int n_res); - -/** - * Returns the number of results. - */ -int get_TEMPLATE_n_res(const ir_node *node); +TEMPLATE_attr_t *get_TEMPLATE_attr(ir_node *node); +const TEMPLATE_attr_t *get_TEMPLATE_attr_const(const ir_node *node); /* Include the generated headers */ #include "gen_TEMPLATE_new_nodes.h"