X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2FTEMPLATE%2FTEMPLATE_nodes_attr.h;h=3a01a232bc717a9608f8f60f00339196fcb9713b;hb=22eb6c0a72ad11e96469143d4764375f6d2c3ef9;hp=fee1621467b027d07b94d103e736450cd29c20a8;hpb=205396c4f4f5abe7abd6dc2350c8c398a7623afc;p=libfirm diff --git a/ir/be/TEMPLATE/TEMPLATE_nodes_attr.h b/ir/be/TEMPLATE/TEMPLATE_nodes_attr.h index fee162146..3a01a232b 100644 --- a/ir/be/TEMPLATE/TEMPLATE_nodes_attr.h +++ b/ir/be/TEMPLATE/TEMPLATE_nodes_attr.h @@ -1,17 +1,37 @@ -#ifndef _TEMPLATE_NODES_ATTR_H_ -#define _TEMPLATE_NODES_ATTR_H_ +/* + * 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. + */ -#include "../bearch_t.h" +/** + * @file + * @brief attributes attached to all TEMPLATE nodes + * @version $Id$ + */ +#ifndef FIRM_BE_TEMPLATE_TEMPLATE_NODES_ATTR_H +#define FIRM_BE_TEMPLATE_TEMPLATE_NODES_ATTR_H -typedef struct _TEMPLATE_attr_t { - arch_irn_flags_t flags; /**< indicating if spillable, rematerializeable ... etc. */ - int n_res; /**< number of results for this node */ +#include "../bearch.h" - const arch_register_req_t **in_req; /**< register requirements for arguments */ - const arch_register_req_t **out_req; /**< register requirements for results */ +typedef struct TEMPLATE_attr_t TEMPLATE_attr_t; - /* must be last, dynamically allocated */ - const arch_register_t *slots[1]; /**< register slots for assigned registers */ -} TEMPLATE_attr_t; +struct TEMPLATE_attr_t +{ + ir_tarval *value; +}; -#endif /* _TEMPLATE_NODES_ATTR_H_ */ +#endif