Some access routines for visited flags in entity.h, irnode.h,
[libfirm] / ir / tr / tpop.c
1 /* Copyright (C) 2001 by Universitaet Karlsruhe
2 ** All rights reserved.
3 **
4 ** Authors: Goetz Lindenmaier
5 **
6 */
7
8 /* $Id$ */
9
10 #ifdef HAVE_CONFIG_H
11 # include <config.h>
12 #endif
13
14 # include "tpop_t.h"
15 # include "type_t.h"
16
17 tp_op *type_class;
18 tp_op *type_struct;
19 tp_op *type_method;
20 tp_op *type_union;
21 tp_op *type_array;
22 tp_op *type_enumeration;
23 tp_op *type_pointer;
24 tp_op *type_primitive;
25 tp_op *type_id;
26
27 tp_op *
28 new_tpop (tp_opcode code, ident *name, size_t attr_size)
29 {
30   tp_op *res;
31
32   res = (tp_op *) xmalloc (sizeof (tp_op));
33   res->code = code;
34   res->name = name;
35   res->attr_size = attr_size;
36   return res;
37 }
38
39 void
40 init_tpop(void)
41 {
42   type_class       = new_tpop (tpo_class      , id_from_str("class"      , 5), sizeof (cls_attr));
43   type_struct      = new_tpop (tpo_struct     , id_from_str("struct"     , 6), sizeof (stc_attr));
44   type_method      = new_tpop (tpo_method     , id_from_str("method"     , 6), sizeof (mtd_attr));
45   type_union       = new_tpop (tpo_union      , id_from_str("union"      , 5), sizeof (uni_attr));
46   type_array       = new_tpop (tpo_array      , id_from_str("array"      , 5), sizeof (arr_attr));
47   type_enumeration = new_tpop (tpo_enumeration, id_from_str("enumeration",11), sizeof (enm_attr));
48   type_pointer     = new_tpop (tpo_pointer    , id_from_str("pointer"    , 7), sizeof (ptr_attr));
49   type_primitive   = new_tpop (tpo_primitive  , id_from_str("primitive"  , 9), /* sizeof (pri_attr) */ 0);
50   type_id          = new_tpop (tpo_id         , id_from_str("type_id"    , 7), /* sizeof (id_attr)  */ 0);
51 }
52
53 /* Returns the string for the tp_opcode. */
54 const char  *get_tpop_name      (tp_op *op) {
55   return id_to_str(op->name);
56 }
57
58 tp_opcode get_tpop_code (tp_op *op){
59   return op->code;
60 }
61
62 ident *get_tpop_ident(tp_op *op){
63   return op->name;
64 }
65
66 /* returns the attribute size of the operator. */
67 int get_tpop_attr_size (tp_op *op) {
68   return op->attr_size;
69 }