X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Ftr%2Ftpop_t.h;h=0035215b2deea59381c84fb6688ba2ba6cd09798;hb=cb625e131029ac033685403fb87181533748a276;hp=29e7ae6164c7c5bca022ae1b04007db3e16f6d02;hpb=1ec30d95387eb392ba5a1adc7958ebd91383d59c;p=libfirm diff --git a/ir/tr/tpop_t.h b/ir/tr/tpop_t.h index 29e7ae616..0035215b2 100644 --- a/ir/tr/tpop_t.h +++ b/ir/tr/tpop_t.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2011 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -44,8 +44,8 @@ typedef void (*free_auto_entities_func)(ir_type *tp); /** A function called to set the mode of a type. */ typedef void (*set_type_mode_func)(ir_type *tp, ir_mode *m); -/** A function called to set the size of a type in bits */ -typedef void (*set_type_size_func)(ir_type *tp, int size); +/** A function called to set the size of a type in bytes. */ +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); @@ -61,15 +61,15 @@ typedef void (*insert_entity_func)(ir_type *tp, ir_entity *member); /** * tp_op operations. */ -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 */ - set_type_mode_func set_type_mode; /**< called to set a ir_mode of a type */ - set_type_size_func set_type_size; /**< called to set the bit size of a type */ - get_n_members_func get_n_members; /**< called to return the number of compound members */ - get_member_func get_member; /**< called to get the pos'th compound member */ - get_member_index_func get_member_index; /**< called to get the index of a compound member */ +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. */ + set_type_mode_func set_type_mode; /**< Called to set a ir_mode of a type. */ + set_type_size_func set_type_size; /**< Called to set the byte size of a type. */ + get_n_members_func get_n_members; /**< Called to return the number of compound members. */ + get_member_func get_member; /**< Called to get the pos'th compound member. */ + get_member_index_func get_member_index; /**< Called to get the index of a compound member. */ } tp_op_ops; /** possible flags for a type opcode */ @@ -77,13 +77,13 @@ enum tp_op_flags_t { TP_OP_FLAG_COMPOUND = 1 /**< is a compound type */ }; -/** The type opcode */ +/** The type opcode. */ struct tp_op { - tp_opcode code; /**< the tpop code */ - ident *name; /**< the name of the type opcode */ - size_t attr_size; /**< the attribute size for a type of this opcode */ - unsigned flags; /**< flags for this opcode */ - tp_op_ops ops; /**< tp_op operations */ + tp_opcode code; /**< The tpop code. */ + ident *name; /**< The name of the type opcode. */ + size_t attr_size; /**< The attribute size for a type of this opcode. */ + unsigned flags; /**< Flags for this opcode. */ + tp_op_ops ops; /**< tp_op operations. */ }; /** @@ -101,13 +101,12 @@ struct tp_op { * @param ops the tp_op operations for this type * @return A new type opcode. */ -tp_op *new_tpop (tp_opcode code, ident *name, unsigned flags, size_t attr_size, - const tp_op_ops *ops); +const tp_op *new_tpop (tp_opcode code, ident *name, unsigned flags, size_t attr_size, const tp_op_ops *ops); /** - * Free a tpop datastructure. + * Free a tpop data structure. */ -void free_tpop(tp_op *tpop); +void free_tpop(const tp_op *tpop); /** * Initialize the tpop module. @@ -118,7 +117,7 @@ void free_tpop(tp_op *tpop); * Allocates opcodes for classes, struct, method, union, array, * enumeration, pointer and primitive and sets the according values. */ -void init_tpop (void); +void init_tpop(void); /** * Finalize the tpop module. @@ -136,25 +135,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; }