X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2FTEMPLATE%2FTEMPLATE_nodes_attr.h;h=a252ac1e146e2e84cd14c81264fa51cb33189c21;hb=c6571686bfbfb3c87ae24ae1dc568e685d6cd49a;hp=78b9227d50e9133f4a15b171bcfb586b54e937af;hpb=4d5c3365a58cba59993045a9e08e686d8ae079a7;p=libfirm diff --git a/ir/be/TEMPLATE/TEMPLATE_nodes_attr.h b/ir/be/TEMPLATE/TEMPLATE_nodes_attr.h index 78b9227d5..a252ac1e1 100644 --- a/ir/be/TEMPLATE/TEMPLATE_nodes_attr.h +++ b/ir/be/TEMPLATE/TEMPLATE_nodes_attr.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. * @@ -17,20 +17,20 @@ * PURPOSE. */ -#ifndef _TEMPLATE_NODES_ATTR_H_ -#define _TEMPLATE_NODES_ATTR_H_ - -#include "../bearch_t.h" +/** + * @file + * @brief attributes attached to all TEMPLATE nodes + */ +#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