normalized various syntactic constructs for firm jni.
[libfirm] / ir / tr / type.h
index 88c2646..8d4f8f7 100644 (file)
-/* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-** All rights reserved.
-**
-** Authors: Martin Trapp, Christian Schaefer &
-**          Goetz Lindenmaier
-**
-** type.h: datastructures to hold type information.
-*/
+/****h* libfirm/type6 2002/03/19 13:08:33
+ *
+ * NAME
+ *   file type.h - datastructure to hold type information.
+ * COPYRIGHT
+ *  (C) 2001 by Universitaet Karlsruhe
+ * AUTHORS
+ *  Goetz Lindenmaier
+ *
+ * NOTES
+ *  This module supplies a datastructure to represent all types
+ *  known in the compiled program.  This includes types specified
+ *  in the program as well as types defined by the language.  In the
+ *  view of the intermediate representation there is no difference
+ *  between these types.
+ *
+ *  There exist several kinds of types, arranged by the structure of
+ *  the type.  A type is described by a set of attributes.  Some of
+ *  these attributes are common to all types, others depend on the
+ *  kind of the type.
+ *
+ *  Types are different from the modes defined in irmode:  Types are
+ *  on the level of the programming language, modes at the level of
+ *  the target processor.
+ *
+ * SEE ALSO
+ *   tpop.h
+ *****
+ */
+
+/* $Id$ */
 
 # ifndef _TYPE_H_
 # define _TYPE_H_
 
-# include "common.h"
+# include "tpop.h"
+# include "firm_common.h"
 # include "ident.h"
 # include "irmode.h"
-
-/* for recursive type definiton */
-typedef union type type;
-
-/* visited flag to traverse the type information */
+# include "bool.h"
+# include "dbginfo.h"
+
+
+/* to resolve recursion between entity.h and type.h */
+#ifndef _ENTITY_TYPEDEF_
+#define _ENTITY_TYPEDEF_
+typedef struct entity entity;
+#endif
+
+#ifndef _IR_NODE_TYPEDEF_
+#define _IR_NODE_TYPEDEF_
+typedef struct ir_node ir_node;
+#endif
+
+/****s* type/type
+ *
+ * NAME
+ *   type - An abstract data type to represent types.
+ * NOTE
+ *  This is the abstract data type with which any type known in the
+ *  compiled program can be represented.  This includes types specified
+ *  in the program as well as types defined by the language.  In the
+ *  view of the intermediate representation there is no difference
+ *  between these types.
+ *
+ *  There exist several kinds of types, arranged by the structure of
+ *  the type.  These are distinguished by a type opcode.
+ *  A type is described by a set of attributes.  Some of these attributes
+ *  are common to all types, others depend on the kind of the type.
+ *
+ *  The following describes the common attributes.  They can only be
+ *  accessed by the functions given below.
+ *
+ * ATTRIBUTES
+ *  The common fields are:
+ *
+ *  firm_kind    A firm_kind tag containing k_type.  This is useful
+ *               for dynamically checking whether a node is a type node.
+ *  type_op      A tp_op specifying the kind of the type.
+ *  mode         The mode to be used to represent the type on a machine.
+ *               @@@ maybe not global field??
+ *  name         An identifier specifying the name of the type.  To be
+ *               set by the frontend.
+ *  size         The size of the type, i.e. an entity of this type will
+ *               occupy size bytes in memory.  In several cases this is
+ *               determined when fixing the layout of this type (class,
+ *               struct, union, array, enumeration).
+ *  state        The state of the type.  The state represents whether the
+ *               layout of the type is undefined or fixed (values: layout_undefined
+ *               or layout_fixed).  Compound types can have an undefined
+ *               layout.  The layout of the basic types primitive and pointer
+ *               is always layout_fixed.  If the layout of
+ *               compound types is fixed all entities must have an offset
+ *               and the size of the type must be set.
+ *               A fixed layout for enumeration types means that each enumeration
+ *               is associated with an implementation value.
+ *  visit        A counter for walks of the type information.
+ *  link         A void* to associate some additional information with the type.
+ *
+ *  These fields can only be accessed via access functions.
+ *
+ *  Depending on the value of type_op, i.e., depending on the kind of the
+ *  type the adt contains further attributes.  These are documented below.
+ * SEE ALSO
+ *   class, struct, method, union, array, enumeration, pointer, primitive
+ * SOURCE
+ */
+#ifndef _TYPE_TYPEDEF_
+#define _TYPE_TYPEDEF_
+typedef struct type type;
+#endif
+
+# include "type_or_entity.h"
+
+/* Frees the memory used by the type.   Does not free the entities
+   belonging to the type, except for the array element entity.  */
+void        free_type(type *tp);
+
+tp_op*      get_type_tpop(type *tp);
+ident*      get_type_tpop_nameid(type *tp);
+const char* get_type_tpop_name(type *tp);
+tp_opcode   get_type_tpop_code(type *tp);
+
+ident*      get_type_ident(type *tp);
+void        set_type_ident(type *tp, ident* id);
+const char* get_type_name(type *tp);
+
+typedef enum {
+  layout_undefined,    /* The layout of this type is not defined.
+                         Address computation to access fields is not
+                         possible, fields must be accessed by Sel
+                         nodes.  This is the default value except for
+                         pointer, primitive and method types. */
+  layout_fixed         /* The layout is fixed, all component/member entities
+                         have an offset assigned.  Size of the type is known.
+                         Arrays can be accessed by explicit address
+                         computation. Default for pointer, primitive ane method
+                         types.  */
+} type_state;
+type_state  get_type_state(type *tp);
+/* For primitives, pointer and method types the layout is always fixed.
+   This call is legal but has no effect. */
+void        set_type_state(type *tp, type_state state);
+
+/* Returns NULL for all non atomic types. */
+ir_mode*    get_type_mode(type *tp);
+/* Only has an effect on primitive and enumeration types */
+void        set_type_mode(type *tp, ir_mode* m);
+
+int         get_type_size(type *tp);
+/* For primitive, enumeration, pointer and method types the size
+   is always fixed. This call is legal but has no effect. */
+void        set_type_size(type *tp, int size);
+
+
+unsigned long get_type_visited(type *tp);
+void        set_type_visited(type *tp, unsigned long num);
+/* Sets visited field in type to type_visited. */
+void        mark_type_visited(type *tp);
+
+void*       get_type_link(type *tp);
+void        set_type_link(type *tp, void *l);
+/*****/
+
+/****v* type/visited
+ *
+ * NAME
+ *   type_visited -  visited flag to traverse the type information
+ * PURPOSE
+ *   Increase this flag by one before traversing the type information.
+ *   Mark type nodes as visited by set_type_visited(type, type_visited).
+ *   Check whether node was already visited by comparing get_type_visited(type)
+ *   and type_visited.
+ *   Or use the function to walk all types.
+ * SEE ALSO
+ *   typewalk
+ * SOURCE
+ */
 extern unsigned long type_visited;
-
-/*******************************************************************/
-/** TYPE_CLASS                                                    **/
-/*******************************************************************/
-
-typedef struct {
-  firm_kind kind;
-  ident *name;
-  /** needs list with it's entities -- does it really??
-      Entities can be added during their creation.
-  int n_members;
-  entity **member; **/
-  unsigned long visit;     /* visited counter for walks of the type information */
-} type_class;
-
-
-/* create a new type_class */
-type_class *new_type_class (ident *name);
-
-/* manipulate fields of type_class */
-char  *get_class_name  (type_class *clss);
-ident *get_class_ident (type_class *clss);
-/*
-void   set_class_name  (type_class *class, char *name);
-void   set_class_ident (type_class *class, ident* ident);
-*/
-
-/*******************************************************************/
-/** TYPE_STRCT                                                   **/
-/*******************************************************************/
-
-typedef struct {
-  firm_kind kind;
-  ident *name;
-  /** needs list with it's entities -- does it really??
-      Entities can be added during their creation.
-  int n_members;
-  entity **member; **/
-  unsigned long visit;     /* visited counter for walks of the type information */
-} type_strct;
-
-
-/* create a new type_strct */
-type_strct *new_type_strct (ident *name);
-
-/* manipulate fields of type_strct */
-char  *get_strct_name  (type_strct *strct);
-ident *get_strct_ident (type_strct *strct);
-/*
-void   set_strct_name  (type_strct *strct, char *name);
-void   set_strct_ident (type_strct *strct, ident* ident);
-*/
-
-
-/*******************************************************************/
-/** TYPE_METHOD                                                   **/
-/*******************************************************************/
-
-typedef struct {
-  firm_kind kind;
-  ident *name;     // do I need the name, or is the name in entity sufficient?
-  int arity;                   /* number of parameters, better n_params */
-  type **param_type;     /* code generation needs this information.
-                                  Should it be generated by the frontend,
-                                  or does this impose unnecessary work for
-                                  optimizatinos that change the parameters of
-                                  methods? */
-  int n_res;                   /* number of results */
-  type **res_type;
-  /** needs pointer to it's ir_graph ??
-  ir_graph *graph; **/
-  unsigned long visit;     /* visited counter for walks of the type information */
-} type_method;
-
-/* create a new type_method */
-type_method *new_type_method (ident *name, int arity, int n_res);
-
-/* manipulate fields of type_method */
-
-char  *get_method_name  (type_method *method);
-ident *get_method_ident (type_method *method);
-/* GL 9.2.2000: who commened these in?
-   I think it's not safe to have these methods.
-   Please add changes to Changes file.
-void   set_method_name  (type_method *method, char *name);
-void   set_method_ident (type_method *method, ident* ident); */
-
-inline int   get_method_arity (type_method *method);
-inline void  set_method_arity (type_method *method, int arity);
-inline type *get_method_param_type(type_method *method, int pos);
-inline void  set_method_param_type(type_method *method, int pos, type* type);
-
-inline int   get_method_n_res (type_method *method);
-inline void  set_method_n_res (type_method *method, int n_res);
-inline type *get_method_res_type(type_method *method, int pos);
-inline void  set_method_res_type(type_method *method, int pos, type* type);
-
-/*
-ir_graph *get_method_graph(type_method *method);
-void *get_method_graph(type_method *method, ir_graph* graph);
-*/
-
-/*******************************************************************/
-/** TYPE_UNION                                                    **/
-/*******************************************************************/
-
-typedef struct {
-  firm_kind kind;
-  ident *name;             // do I need a name?
-  int n_types;
-  /* type **unioned_type;    ... or something like that? */
-  unsigned long visit;     /* visited counter for walks of the type information */
-} type_union;
-
-/* create a new type_union -- set unioned types by hand. */
-type_union *new_type_union (ident *name, int n_types);
-
-/* manipulate fields of type_union */
-char  *get_union_name  (type_union *uni);
-ident *get_union_ident (type_union *uni);
-/*
-void   set_union_name  (type_union *union, char *name);
-void   set_union_ident (type_union *union, ident* ident);
-*/
-/*
-int    get_union_n_types (type_union *union);
-void   set_union_n_types (type_union *union, int n);
-type  *get_union_unioned_type (type_union *union, int pos);
-void   set_union_unioned_type (type_union *union, int pos, type *type);
+void set_master_type_visited(unsigned long val);
+unsigned long get_master_type_visited();
+void inc_master_type_visited();
+/*****/
+
+/****f* type/is_type
+ *
+ * NAME
+ *   is_type - Checks whether a pointer points to a type.
+ * SYNOPSIS
+ *   bool is_type            (void *thing);
+ * INPUTS
+ *   thing - a pointer
+ * RESULT
+ *   true if the thing is a type, else false
+ ***
+ */
+int is_type            (void *thing);
+
+/****f* type/equal_types
+ *
+ * NAME
+ *   equal_type - Checks whether two types are structural equal.
+ * SYNOPSIS
+ *   bool equal_types   (type *typ1, type *typ2);
+ * INPUTS
+ *   two pointer types
+ * RESULT
+ *   true if the types are equal, else false.
+ *   Types are equal if
+ *    - they are the same type kind
+ *    - they have the same name
+ *    - they have the same mode (if applicable)
+ *    - they have the same type_state and, ev., the same size
+ *    - they are class types and have
+ *      - the same members (see same_entity in entity.h)
+ *      - the same supertypes -- the C-pointers are compared --> no recursive call.
+ *      - the same number of subtypes.  Subtypes are not compared,
+ *        as this could cause a cyclic test.
+ *      - the same peculiarity
+ *    - they are structure types and have the same members
+ *    - they are method types and have
+ *      - the same parameter types
+ *      - the same result types
+ *    - they are union types and have the same members
+ *    - they are array types and have
+ *      - the same number of dimensions
+ *      - the same dimension bounds
+ *      - the same dimension order
+ *      - the same element type
+ *    - they are enumeration types and have the same enumerator names
+ *    - they are pointer types and have the identical points_to type
+ *      (i.e., the same C-struct to represent the type, type_id is skipped.
+ *       This is to avoid endless recursions; with pointer types circlic
+ *       type graphs are possible.)
+ *
+ ***
+ */
+bool equal_type(type *tpy1, type *typ2);
+
+/****f* type/smaller_type
+ *
+ * NAME
+ *   smaller_type - Checks whether two types are structural comparable.
+ * SYNOPSIS
+ *   bool smaller_type   (type *st, type *lt);
+ * INPUTS
+ *   two pointer type
+ * RESULT
+ *   true if type st is smaller than type lt, i.e. whenever
+ *   lt is expected a st can be used.
+ *   This is true if
+ *    - they are the same type kind
+ *    - mode(st) < mode (lt)  (if applicable)
+ *    - they are class types and st is (transitive) subtype of lt,
+ *    - they are structure types and
+ *       - the members of st have exactly one counterpart in lt with the same name,
+ *       - the counterpart has a bigger type.
+ *    - they are method types and have
+ *      - the same number of parameter and result types,
+ *      - the parameter types of st are smaller than those of lt,
+ *      - the result types of st are smaller than those of lt
+ *    - they are union types and have the members of st have exactly one
+ *      counterpart in lt and the type is smaller
+ *    - they are array types and have
+ *      - the same number of dimensions
+ *      - all bounds of lt are bound of st
+ *      - the same dimension order
+ *      - the same element type
+ *      or
+ *      - the element type of st is smaller than that of lt
+ *      - the element types have the same size and fixed layout.
+ *    - they are enumeration types and have the same enumerator names
+ *    - they are pointer types and have the points_to type of st is
+ *      smaller than the points_to type of lt.
+ ***
+ */
+bool smaller_type (type *st, type *lt);
+
+/****** type/class
+ * NAME
+ *  Representation of a class type.
+ * NOTE
+ *  If the type opcode is set to type_class the type represents class
+ *  types.  A list of fields and methods is associated with a class.
+ *  Further a class can inherit from and bequest to other classes.
+ *  @@@ value class???
+ * ATTRIBUTES
+ *  The following attributes are private to this type kind.
+ *  member     All entities belonging to this class.  This are methode entities
+ *             which have type_method or fields that can have any of the
+ *             following type kinds: type_class, type_struct, type_union,
+ *             type_array, type_enumeration, type_pointer, type_primitive.
+ *
+ *  subtypes   A list of direct subclasses.
+ *
+ *  supertypes A list of direct superclasses.
+ *
+ *  These are dynamic lists that can be grown with an "add_" function,
+ *  but not shrinked.
+ *
+ *  peculiarity The peculiarity of this class.  If the class is of peculiarity
+ *             "description" it only is a description of requirememts to a class,
+ *             as, e.g., a Java interface.  The class will never be allocated.
+ *             Peculiatity inherited is only possible for entities.  An entity
+ *             is of peculiarity inherited if the compiler generated the entity
+ *             to explicitly resolve inheritance.  An inherited method entity has
+ *             no value for irg.
+ *             Values: description, existent, inherited.  Default: existent.
+ *
+ * SOURCE
+ */
+/* create a new class type */
+type   *new_type_class (ident *name);
+type   *new_d_type_class (ident *name, dbg_info *db);
+
+/** manipulate private fields of class type  **/
+/* Adds the entity as member of the class.  */
+void    add_class_member   (type *clss, entity *member);
+/* Returns the number of members of this class. */
+int     get_class_n_members (type *clss);
+/* Returns the member at position pos, 0 <= pos < n_member */
+entity *get_class_member   (type *clss, int pos);
+/* Overwrites the member at position pos, 0 <= pos < n_member with
+   the passed entity. */
+void    set_class_member   (type *clss, entity *member, int pos);
+/* Replaces complete member list in class type by the list passed.  Copies the
+   list passed. This function is necessary to reduce the number of members.
+   members is an array of entities, num the size of this array.  Sets all
+   owners of the members passed to clss. */
+void    set_class_members  (type *clss, entity **members, int arity);
+/* Finds member in the list of members and removes it.
+   Shrinks the member list, so iterate from the end!!!
+   Does not deallocate the entity.  */
+void    remove_class_member(type *clss, entity *member);
+
+
+/* Adds subtype as subtype to clss.
+   Checks whether clss is a supertype of subtype.  If not
+   adds also clss as supertype to subtype.  */
+void    add_class_subtype   (type *clss, type *subtype);
+/* Returns the number of subtypes */
+int     get_class_n_subtypes (type *clss);
+/* Gets the subtype at position pos, 0 <= pos < n_subtype. */
+type   *get_class_subtype   (type *clss, int pos);
+/* Sets the subtype at positioin pos, 0 <= pos < n_subtype.  Does not
+   set the corresponding supertype relation for subtype: this might
+   be a different position! */
+void    set_class_subtype   (type *clss, type *subtype, int pos);
+/* Finds subtype in the list of subtypes and removes it  */
+void    remove_class_subtype(type *clss, type *subtype);
+
+
+/* Adds supertype as supertype to class.
+   Checks whether clss is a subtype of supertype.  If not
+   adds also clss as subtype to supertype.  */
+void    add_class_supertype   (type *clss, type *supertype);
+/* Returns the number of supertypes */
+int     get_class_n_supertypes (type *clss);
+/* Gets the supertype at position pos,  0 <= pos < n_supertype. */
+type   *get_class_supertype   (type *clss, int pos);
+/* Sets the supertype at postition pos, 0 <= pos < n_subtype.  Does not
+   set the corresponding subtype relation for supertype: this might
+   be a different position! */
+void    set_class_supertype   (type *clss, type *supertype, int pos);
+/* Finds supertype in the list of supertypes and removes it */
+void    remove_class_supertype(type *clss, type *supertype);
+
+/* This enumeration flags the peculiarity of entities and types. */
+typedef enum peculiarity {
+  description,     /* Represents only a description.  The entity/type is never
+                     allocated, no code/data exists for this entity/type. */
+  inherited,       /* Describes explicitly that other entities are
+                     inherited to the owner of this entity.
+                     Overwrites must refer to at least one other
+                     entity.  If this is a method entity there exists
+                     no irg for this entity, only for one of the
+                     overwritten ones. */
+  existent         /* The entity/type (can) exist. */
+} peculiarity;
+
+/* The peculiarity of the class.  The enumeration peculiarity is defined
+   in entity.h */
+INLINE peculiarity get_class_peculiarity (type *clss);
+INLINE void        set_class_peculiarity (type *clss, peculiarity pec);
+
+/* Set and get a class' dfn --
+   @@@ This is an undocumented field, subject to change! */
+void set_class_dfn (type *clss, int dfn);
+int  get_class_dfn (type *clss);
+
+/* typecheck */
+bool is_class_type(type *clss);
+/* Returns true if low is subclass of high. */
+bool is_subclass_of(type *low, type *high);
+/*****/
+
+/****** type/struct
+ * NAME
+ *  Representation of a struct type.
+ * NOTE
+ *  Type_strct represents aggregate types that consist of a list
+ *  of fields.
+ * ATTRIBUTES
+ *  member   All entities belonging to this class.  This are the fields
+ *           that can have any of the following types:  type_class,
+ *           type_struct, type_union, type_array, type_enumeration,
+ *          type_pointer, type_primitive.
+ *           This is a dynamic list that can be grown with an "add_" function,
+ *           but not shrinked.
+ *           This is a dynamic list that can be grown with an "add_" function,
+ *           but not shrinked.
+ * SOURCE
+ */
+/* create a new type struct */
+type   *new_type_struct (ident *name);
+type   *new_d_type_struct (ident *name, dbg_info* db);
+
+/* manipulate private fields of struct */
+void    add_struct_member   (type *strct, entity *member);
+int     get_struct_n_members (type *strct);
+entity *get_struct_member   (type *strct, int pos);
+void    set_struct_member   (type *strct, int pos, entity *member);
+/* Finds member in the list of memberss and removees it */
+void    remove_struct_member (type *strct, entity *member);
+
+/* typecheck */
+bool    is_struct_type(type *strct);
+/*****/
+
+/****** type/method
+ * NAME
+ *  Representation of a method type.
+ * NOTE
+ *  A method type represents a method, function or procedure type.
+ *  It contains a list of the parameter and result types, as these
+ *  are part of the type description.  These lists should not
+ *  be changed by a optimization, as a change creates a new method
+ *  type.  Therefore optimizations should allocated new method types.
+ *  The set_ routines are only for construction by a frontend.
+ * ATTRIBUTES
+ *  n_params    Number of parameters to the procedure.
+ *              A procedure in FIRM has only call by value parameters.
+ *
+ *  param_type  A list with the types of parameters.  This list is ordered.
+ *              The nth type in this list corresponds to the nth element
+ *              in the parameter tuple that is a result of the start node.
+ *             (See ircons.h for more information.)
+ *
+ *  n_res       The number of results of the method.  In general, procedures
+ *              have zero results, functions one.
+ *
+ *  res_type    A list with the types of parameters.  This list is ordered.
+ *              The nth type in this list corresponds to the nth input to
+ *             Return nodes.  (See ircons.h for more information.)
+ * SOURCE
+ */
+
+/* Create a new method type.
+   N_param is the number of parameters, n_res the number of results.
+   The arrays for the parameter and result types are not initialized by
+   the constructor. */
+type *new_type_method (ident *name, int n_param, int n_res);
+type *new_d_type_method (ident *name, int n_param, int n_res, dbg_info* db);
+
+/* manipulate private fields of method. */
+int   get_method_n_params  (type *method);
+type *get_method_param_type(type *method, int pos);
+void  set_method_param_type(type *method, int pos, type* tp);
+
+int   get_method_n_ress   (type *method);
+type *get_method_res_type(type *method, int pos);
+void  set_method_res_type(type *method, int pos, type* tp);
+
+/* typecheck */
+bool  is_method_type     (type *method);
+/*****/
+
+/****** type/union
+ * NAME
+ *   Representation of a union type.
+ * NOTE
+ *   The union type represents union types.
+ * ATTRIBUTES
+ *   n_types        Number of unioned types.
+ *   members        Entities for unioned types.  Fixed length array.
+ *                  This is a dynamic list that can be grown with an "add_" function,
+ *                  but not shrinked.
+ * SOURCE
+ */
+/* create a new type union  */
+type   *new_type_union (ident *name);
+type   *new_d_type_union (ident *name, dbg_info* db);
+
+/* manipulate private fields of struct */
+int     get_union_n_members      (type *uni);
+void    add_union_member (type *uni, entity *member);
+entity *get_union_member (type *uni, int pos);
+void    set_union_member (type *uni, int pos, entity *member);
+/* Finds member in the list of members and removes it. */
+void    remove_union_member (type *uni, entity *member);
+
+/* typecheck */
+bool    is_union_type          (type *uni);
+/*****/
+
+/****** type/array
+ * NAME
+ *   Representation of an array type.
+ * NOTE
+ *   The array type represents rectangular multi dimensional arrays.
+ *   The constants representing the bounds must be allocated to
+ *   get_const_code_irg() by setting current_ir_graph accordingly.
+ * ATTRIBUTES
+ *   n_dimensions     Number of array dimensions.
+ *   *lower_bound     Lower bounds of dimensions.  Usually all 0.
+ *   *upper_bound     Upper bounds or dimensions.
+ *   *element_type    The type of the array elements.
+ *   *element_ent     An entity for the array elements to be used for
+ *                    element selection with Sel.
+ *                    @@@ Do we need several entities?  One might want
+ *                    to select a dimension and not a single element in
+ *                    case of multidim arrays.
+ * SOURCE
+ */
+/* create a new type array --
+   Sets n_dimension to dimension and all dimension entries to NULL.
+   Initializes order to the order of the dimensions.
+   The entity for array elements is built automatically.
+   Set dimension sizes after call to constructor with set_* routines. */
+type *new_type_array         (ident *name, int n_dimensions,
+                             type *element_type);
+type *new_d_type_array         (ident *name, int n_dimensions,
+                             type *element_type, dbg_info* db);
+
+/* manipulate private fields of array type */
+int   get_array_n_dimensions (type *array);
+/* Allocates Const nodes of mode_I for the array dimensions */
+void  set_array_bounds_int   (type *array, int dimension, int lower_bound,
+                                                          int upper_bound);
+void  set_array_bounds       (type *array, int dimension, ir_node *lower_bound,
+                                                          ir_node *upper_bound);
+void  set_array_lower_bound  (type *array, int dimension, ir_node *lower_bound);
+void  set_array_lower_bound_int (type *array, int dimension, int lower_bound);
+void  set_array_upper_bound  (type *array, int dimension, ir_node *upper_bound);
+void  set_array_upper_bound_int (type *array, int dimension, int lower_bound);
+ir_node * get_array_lower_bound  (type *array, int dimension);
+ir_node * get_array_upper_bound  (type *array, int dimension);
+
+void set_array_order (type *array, int dimension, int order);
+int  get_array_order (type *array, int dimension);
+
+void  set_array_element_type (type *array, type *tp);
+type *get_array_element_type (type *array);
+
+void  set_array_element_entity (type *array, entity *ent);
+entity *get_array_element_entity (type *array);
+
+/* typecheck */
+bool   is_array_type         (type *array);
+/*****/
+
+/****** type/enumeration
+ * NAME
+ *  Representation of an enumeration type.
+ * NOTE
+ *  Enumeration types need not necessarily be represented explicitly
+ *  by Firm types, as the frontend can lower them to integer constants as
+ *  well.  For debugging purposes or similar tasks this information is useful.
+ * ATTRIBUTES
+ *   *enum           The target values representing the constants used to
+ *                   represent individual enumerations.
+ *   *enum_nameid    Idents containing the source program name of the enumeration
+ *                  constants
+ *
+*****
 */
-
-/*******************************************************************/
-/** TYPE_ARRAY                                                    **/
-/*******************************************************************/
-
-/* multidimensional, polyhedric arrays */
-typedef struct {
-  firm_kind kind;
-  ident *name;
-  int n_dimensions;   /* Extend Sel to select from multidimensional arrays.  This  */
-  int *lower_bound;   /* will allow to generate explicit array index computations  */
-  int *upper_bound;   /* by replacing a single FIRM node.  As long as this is not
-                         done create arrays with arrays as elements.  */
-                      /* Should I use tarval? */
-  type *element_type;
-  unsigned long visit;     /* visited counter for walks of the type information */
-} type_array;
-
-/* create a new type array -- set dimension sizes independently */
-type_array *new_type_array (ident *name, int n_dimensions);
-
-/* manipulate fields of type_array */
-char  *get_array_name  (type_array *array);
-ident *get_array_ident (type_array *array);
-/*
-void   set_array_name  (type_array *array, char *name);
-void   set_array_ident (type_array *array, ident* ident);
-*/
-void  set_array_n_dimensions  (type_array *array, int n);
-int   get_array_n_dimensions  (type_array *array);
-
-void  set_array_bounds      (type_array *array, int dimension, int lower_bound,
-                                                              int upper_bound);
-void  set_array_lower_bound (type_array *array, int dimension, int lower_bound);
-void  set_array_upper_bound (type_array *array, int dimension, int upper_bound);
-int   get_array_lower_bound (type_array *array, int dimension);
-int   get_array_upper_bound (type_array *array, int dimension);
-
-void  set_array_element_type (type_array *array, type *type);
-type *get_array_element_type (type_array *array);
-
-/*******************************************************************/
-/** TYPE_ENUMERATION                                              **/
-/*******************************************************************/
-/** Enums are needed to keep debugging information.  They can as well
-    be lowered to integers. **/
-
-typedef struct {
-  firm_kind kind;
-  ident *name;
-  /* int n_enums;
-  ir_node **enum    * Contains all constant nodes that represent a member
-                     of the enum -- enumerators. */
-                    // is ir_node the propper array member?
-  unsigned long visit;     /* visited counter for walks of the type information */
-} type_enumeration;
-
 /* create a new type enumeration -- set the enumerators independently */
-type_enumeration *new_type_enumeration (ident *name /* , int n_enums */);
-
-/* manipulate fields of type_enumeration */
-char  *get_enumeration_name  (type_enumeration *enumeration);
-ident *get_enumeration_ident (type_enumeration *enumeration);
-/*
-void   set_enumeration_name  (type_enumeration *enumeration, char *name);
-void   set_enumeration_ident (type_enumeration *enumeration, ident* ident);
-*/
-/*
-void     set_enumeration_n_enums (type_enumeration *enumeration, int n);
-int     *get_enumeration_n_enums (type_enumeration *enumeration);
-void     set_enumeration_enum    (type_enumeration *enumeration, int pos,
-                                 ir_node const);
-ir_node *get_enumeration_enum    (type_enumeration *enumeration, int pos);
-*/
-
-/*******************************************************************/
-/** TYPE_POINTER                                                  **/
-/*******************************************************************/
-
-typedef struct {
-  firm_kind kind;
-  ident *name;
-  /* ir_mode *mode;      * The mode to be used for this type.
-                            Not here as there might be several pointer types?
-                            A method get_pointer_mode should read a unique,
-                            global variable. */
-  type *points_to;
-  unsigned long visit;     /* visited counter for walks of the type information */
-} type_pointer;
-
-/* create a new type pointer */
-type_pointer *new_type_pointer (ident *name, type *points_to);
+type   *new_type_enumeration    (ident *name, int n_enums);
+type   *new_d_type_enumeration    (ident *name, int n_enums, dbg_info* db);
+
+/* manipulate fields of enumeration type. */
+int     get_enumeration_n_enums (type *enumeration);
+
+void    set_enumeration_enum    (type *enumeration, int pos, tarval *con);
+tarval *get_enumeration_enum    (type *enumeration, int pos);
+
+void    set_enumeration_nameid  (type *enumeration, int pos, ident *id);
+ident  *get_enumeration_nameid  (type *enumeration, int pos);
+const char *get_enumeration_name(type *enumeration, int pos);
+
+/* typecheck */
+bool    is_enumeration_type     (type *enumeration);
+/*****/
+
+/****** type/pointer
+ * NAME
+ *   Representation of a pointer type.
+ * NOTE
+ *   Pointer types.
+ * ATTRIBUTES
+ *   points_to       The type of the entity this pointer points to.
+ * SOURCE
+ */
+/* Create a new type pointer */
+type *new_type_pointer           (ident *name, type *points_to);
+type *new_d_type_pointer           (ident *name, type *points_to, dbg_info* db);
 
 /* manipulate fields of type_pointer */
-char  *get_pointer_name  (type_pointer *pointer);
-ident *get_pointer_ident (type_pointer *pointer);
-/*
-void   set_pointer_name  (type_pointer *pointer, char *name);
-void   set_pointer_ident (type_pointer *pointer, ident* ident);
+void  set_pointer_points_to_type (type *pointer, type *tp);
+type *get_pointer_points_to_type (type *pointer);
+
+/* typecheck */
+bool  is_pointer_type            (type *pointer);
+/*****/
+
+/****** type/primitive
+ * NAME
+ *   Representation of a primitive type.
+ * NOTE
+ *   Primitive types are types that represent indivisible data values that
+ *   map directly to modes.  They don't have a private attribute.  The
+ *   important information they carry is held in the common mode field.
+ * SOURCE
 */
-void  set_pointer_points_to_type (type_pointer *pointer, type *type);
-type *get_pointer_points_to_type (type_pointer *pointer);
-
-/*******************************************************************/
-/** TYPE_PRIMITIVE                                                **/
-/*******************************************************************/
-
-/* primitive, language-defined types */
-/* What is the type of an entity if it is atomic?  Are alle basic data
-   types classses in Sather? Else this is needed. */
-typedef struct {
-  firm_kind kind;
-  ident *name;
-  ir_mode *mode;       /* The mode to be used for this type */
-  unsigned long visit;     /* visited counter for walks of the type information */
-} type_primitive;
-
 /* create a new type primitive */
-type_primitive *new_type_primitive (ident *name, ir_mode *mode);
-
-/* manipulate fields of type_primitive */
-char  *get_primitive_name  (type_primitive *primitive);
-ident *get_primitive_ident (type_primitive *primitive);
-/*
-void   set_primitive_name  (type_primitive *primitive, char *name);
-void   set_primitive_ident (type_primitive *primitive, ident* ident);
-*/
-ir_mode *get_primitive_mode (type_primitive *primitive);
-void     set_primitive_mode (type_primitive *primitive, ir_mode *mode);
-
-
-
-
-/*******************************************************************/
-/**  To manage all different types the same                       **/
-/*******************************************************************/
-
-union type {
-  firm_kind kind;
-  type_class clss;
-  type_strct strct;
-  type_method method;
-  type_array array;
-  type_union uni;  /* union is keyword */
-  type_enumeration enumeration;
-  type_pointer pointer;
-  type_primitive primitive;
-};
-
-int is_type(void *thing);
-
-
-
+type *new_type_primitive (ident *name, ir_mode *mode);
+type *new_d_type_primitive (ident *name, ir_mode *mode, dbg_info* db);
+
+/* typecheck */
+bool  is_primitive_type  (type *primitive);
+/*****/
+
+
+
+/****f* type/is_atomic_type
+ *
+ * NAME
+ *   is_atomic_type - Checks whether a type is atomic.
+ * SYNOPSIS
+ *   int is_atomic_type(type *tp);
+ * INPUTS
+ *   tp - any type
+ * RESULT
+ *   true if type is primitive, pointer or enumeration
+ ***
+ */
+int is_atomic_type(type *tp);
+
+/****f* type/is_compound_type
+ *
+ * NAME
+ *   is_compound_type - Checks whether a type is compound.
+ * SYNOPSIS
+ *   int is_compound_type(type *tp)
+ * INPUTS
+ *   tp - any type
+ * RESULT
+ *   true if the type is class, structure, union or array type.
+ ***
+ */
+int is_compound_type(type *tp);
 
 # endif /* _TYPE_H_ */