X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Ftr%2Ftpop_t.h;h=1addd85180d17212275a21895e0daddfcec88ae8;hb=dcff73b2cc34378750e2cc1979a4b120e19767a9;hp=bd9d073059d659672858c354b8ccef2bad8311f1;hpb=f0fdd2bff7eebfaabb87252673a1c01ebfa813f7;p=libfirm diff --git a/ir/tr/tpop_t.h b/ir/tr/tpop_t.h index bd9d07305..1addd8518 100644 --- a/ir/tr/tpop_t.h +++ b/ir/tr/tpop_t.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2011 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -21,7 +21,6 @@ * @file * @brief Opcode of types -- private header. * @author Goetz Lindenmaier, Michael Beck - * @version $Id$ */ #ifndef FIRM_TR_TPOP_T_H #define FIRM_TR_TPOP_T_H @@ -48,12 +47,12 @@ typedef void (*set_type_mode_func)(ir_type *tp, ir_mode *m); typedef void (*set_type_size_func)(ir_type *tp, unsigned size); /** A function called to get the number of compound members */ -typedef int (*get_n_members_func)(const ir_type *tp); +typedef size_t (*get_n_members_func)(const ir_type *tp); /** A function called to get the pos'th compound member */ -typedef ir_entity *(*get_member_func)(const ir_type *tp, int pos); +typedef ir_entity *(*get_member_func)(const ir_type *tp, size_t pos); -typedef int (*get_member_index_func)(const ir_type *tp, ir_entity *member); +typedef size_t (*get_member_index_func)(const ir_type *tp, ir_entity *member); /** A function called to insert an entity into the type */ typedef void (*insert_entity_func)(ir_type *tp, ir_entity *member); @@ -61,7 +60,7 @@ typedef void (*insert_entity_func)(ir_type *tp, ir_entity *member); /** * tp_op operations. */ -typedef struct _tp_op_ops { +typedef struct tp_op_ops { free_attrs_func free_attrs; /**< Called to free the attributes of a type. */ free_entities_func free_entities; /**< Called to free the owned entities of a type. */ free_auto_entities_func free_auto_entities; /**< Called to free the automatic allocated entities of a type. */ @@ -89,7 +88,7 @@ struct tp_op { /** * Returns a new type opcode. * - * Allocates a new tp_op struct and initializes it's fields with + * Allocates a new tp_op struct and initializes its fields with * the passed values. This function is only to be used during * initialization of the library. * @@ -135,25 +134,25 @@ void finish_tpop(void); * @param op The type opcode to get the size for. * @return The size of the attribute of types with this opcode. */ -int get_tpop_attr_size (const tp_op *op); +size_t get_tpop_attr_size(const tp_op *op); /* ---------------- * * inline functions * * -----------------*/ -static inline tp_opcode -_get_tpop_code(const tp_op *op) { +static inline tp_opcode _get_tpop_code(const tp_op *op) +{ return op->code; } -static inline ident * -_get_tpop_ident(const tp_op *op){ +static inline ident *_get_tpop_ident(const tp_op *op) +{ return op->name; } -static inline size_t -_get_tpop_attr_size(const tp_op *op) { +static inline size_t _get_tpop_attr_size(const tp_op *op) +{ return op->attr_size; }