6c08cfd7e6a4e79aa113b6cb9c8a33fc1ea4738b
[libfirm] / ir / tr / entity_t.h
1 /*
2 **  Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
3 **  All rights reserved.
4 **
5 **  Authors: Martin Trapp, Christian Schaefer,
6 **           Goetz Lindenmaier
7 **
8 **  entity.h:  entities represent all program known objects.
9 **
10 **  An entity is the representation of program known objects in Firm.
11 **  The primary concept of entities is to represent members of complex
12 **  types, i.e., fields and methods of classes.  As not all programming
13 **  language model all variables and methods as members of some class,
14 **  the concept of entities is extended to cover also local and global
15 **  variables, and arbitrary procedures.
16 **
17 **  An entity always specifies the type of the object it represents and
18 **  the type of the object it is a part of, the owner of the entity.
19 **  Originally this is the type of the class of which the entity is a
20 **  member.
21 **  The owner of local variables is the procedure they are defined in.
22 **  The owner of global variables and procedures visible in the whole
23 **  program is a universally defined class type "GlobalType".  The owner
24 **  of procedures defined in the scope of an other procedure is the
25 **  enclosing procedure.
26 **
27 */
28
29 # ifndef _ENTITY_T_H_
30 # define _ENTITY_T_H_
31
32 # include "entity.h"
33
34 #ifndef _IR_GRAPH_TYPEDEF_
35 #define _IR_GRAPH_TYPEDEF_
36 /* to resolve recursion between entity.h and irgraph.h */
37 typedef struct ir_graph ir_graph;
38 #endif
39
40 struct entity {
41   firm_kind kind;
42   ident *name;          /* name of this entity */
43   ident *ld_name;       /* Unique name of this entity, i.e., the mangled
44                            name.  E.g., for a class `A' with field `a' this
45                            is the ident for `A_a'. */
46   type *type;           /* The type of this entity, e.g., a method type, a
47                            basic type of the language or a class itself */
48   type *owner;          /* The class this entity belongs to.  In case of local variables
49                            the method they are defined in. */
50   /* for methods */
51   ir_graph *irg;        /* If (type == method_type) this is the corresponding irg.
52                            The ir_graph constructor automatically sets this field.
53                            @@@ Does this go here, or should it be in type_method,
54                            or should Call have an attribute ent?? */
55   /* Do we need to remember the initializer of fields? */
56   unsigned long visit;  /* visited counter for walks of the type information */
57 };
58
59
60 # endif /* _ENTITY_T_H_ */