X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Ftr%2Ftpop_t.h;h=91c4829a06d94f7de9550a5d48f8f63d2e6df3a9;hb=f274dcf35aa0d3f4748387dbddfe50e8d7d44951;hp=87b8718eb8439e2d9b70cf8d0f24023bea2c1d4d;hpb=4895378968a1305157fac4390df20ddcd9a2091b;p=libfirm diff --git a/ir/tr/tpop_t.h b/ir/tr/tpop_t.h index 87b8718eb..91c4829a0 100644 --- a/ir/tr/tpop_t.h +++ b/ir/tr/tpop_t.h @@ -48,10 +48,11 @@ typedef int (*get_n_members_func)(const ir_type *tp); /** A function called to get the pos'th compound member */ typedef entity *(*get_member_func)(const ir_type *tp, int pos); +typedef int (*get_member_index_func)(const ir_type *tp, entity *member); + /** A function called to insert an entity into the type */ typedef void (*insert_entity_func)(ir_type *tp, entity *member); - /** * tp_op operations. */ @@ -63,6 +64,7 @@ typedef struct _tp_op_ops { 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 */ } tp_op_ops; /** possible flags for a type opcode */