fixed doxygen output
[libfirm] / ir / tr / entity.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/tr/entity.h
4  * Purpose:     Representation of all program known entities.
5  * Author:      Martin Trapp, Christian Schaefer
6  * Modified by: Goetz Lindenmaier, Michael Beck
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2006 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 /**
14  * @file entity.h
15  *
16  * Entities represent all program known objects.
17  *
18  * @author Martin Trapp, Christian Schaefer
19  * @author Goetz Lindenmaier
20  *
21  * An entity is the representation of program known objects in Firm.
22  * The primary concept of entities is to represent members of complex
23  * types, i.e., fields and methods of classes.  As not all programming
24  * language model all variables and methods as members of some class,
25  * the concept of entities is extended to cover also local and global
26  * variables, and arbitrary procedures.
27  *
28  * An entity always specifies the type of the object it represents and
29  * the type of the object it is a part of, the owner of the entity.
30  * Originally this is the type of the class of which the entity is a
31  * member.
32  * The owner of local variables is the procedure they are defined in.
33  * The owner of global variables and procedures visible in the whole
34  * program is a universally defined class type "GlobalType".  The owner
35  * of procedures defined in the scope of an other procedure is the
36  * enclosing procedure.
37  *
38  * @link ir_entity
39  */
40 #ifndef _FIRM_TR_ENTITY_H_
41 #define _FIRM_TR_ENTITY_H_
42
43 #include "firm_types.h"
44 #include "dbginfo.h"
45
46 #include "tr_inheritance.h"
47
48 /*-----------------------------------------------------------------*/
49 /* ENTITY                                                          */
50 /*-----------------------------------------------------------------*/
51
52 /**
53  * @page ir_entity  Representation of an program entity.
54  *
55  * The type ir_entity is an abstract data type to represent program entities.
56  * If contains the following attributes:
57  *
58  *   - owner:      A compound type this entity is a part of.
59  *   - type:       The type of this entity.
60  *   - name:       The string that represents this entity in the source program.
61  *   - allocation: A flag saying whether the entity is dynamically or statically
62  *                 allocated (values: dynamic_allocated,  static_allocated,
63  *                 automatic_allocated).
64  *   - visibility: A flag indicating the visibility of this entity (values: local,
65  *                 external_visible,  external_allocated)
66  *   - variability: A flag indicating the variability of this entity (values:
67  *                  uninitialized, initialized, part_constant, constant)
68  *   - volatility: @@@
69  *   - offset:     The offset of the entity within the compound object in bytes.  Only set
70  *                 if the owner in the state "layout_fixed".
71  *   - offset_bits_remainder:   The offset bit remainder of a bitfield entity (in a compound)
72  *                 in bits.  Only set if the owner in the state "layout_fixed".
73  *   - overwrites: A list of entities overwritten by this entity.  This list is only
74  *                 existent if the owner of this entity is a class.  The members in
75  *                 this list must be entities of super classes.
76  *   - overwrittenby: A list of entities that overwrite this entity.  This list is only
77  *                 existent if the owner of this entity is a class.  The members in
78  *                 this list must be entities of sub classes.
79  *   - link:       A void* to associate some additional information with the entity.
80  *   - irg:        If the entity is a method this is the ir graph that represents the
81  *                 code of the method.
82  *   - peculiarity: The peculiarity of the entity.  If the entity is a method this
83  *                 indicates whether the entity represents
84  *                 a real method or whether it only exists to describe an interface.
85  *                 In that case there nowhere exists code for this entity and this entity
86  *                 is never dynamically used in the code.
87  *                 Values: description, existent.  Default: existent.
88  *   - visited:    visited flag.  Master flag is type_visited.
89  *
90  * These fields can only be accessed via access functions.
91  *
92  * @see  ir_type
93  */
94
95 /* to resolve recursion between entity.h and type.h */
96 /** the type of an entity */
97 #ifndef _ENTITY_TYPEDEF_
98 #define _ENTITY_TYPEDEF_
99 typedef struct ir_entity ir_entity, entity;
100 #endif
101
102 /**
103  * Creates a new entity.
104  *
105  * Automatically inserts the entity as a member of owner.
106  * Entity is automatic_allocated and uninitialized except if the type
107  * is type_method, then it is static_allocated and constant.  The constant
108  * value is a pointer to the method.
109  * Visibility is local, offset -1, and it is not volatile.
110  */
111 ir_entity     *new_entity(ir_type *owner, ident *name, ir_type *tp);
112
113 /**
114  * Creates a new entity.
115  *
116  * Automatically inserts the entity as a member of owner.
117  * The entity is automatic allocated and uninitialized except if the type
118  * is type_method, then it is static allocated and constant.  The constant
119  * value is a pointer to the method.
120  * Visibility is local, offset -1, and it is not volatile.
121  */
122 ir_entity     *new_d_entity(ir_type *owner, ident *name, ir_type *tp, dbg_info *db);
123
124 /**
125  * Copies the entity if the new_owner is different from the
126  * owner of the old entity,  else returns the old entity.
127  *
128  * Automatically inserts the new entity as a member of owner.
129  * Resets the overwrites/overwritten_by fields.
130  * Keeps the old atomic value.
131  *   @@@ Maybe we should change this.  If peculiarity of a method
132  *       is existent, we should add a new SymConst that points to
133  *       itself and not to the origin.  Right now we have to change
134  *       the peculiarity and then set a new atomic value by hand.
135  */
136 ir_entity     *copy_entity_own(ir_entity *old, ir_type *new_owner);
137
138 /**
139  * Copies the entity if the new_name is different from the
140  * name of the old entity, else returns the old entity.
141  *
142  * Automatically inserts the new entity as a member of owner.
143  * The mangled name ld_name is set to NULL.
144  * Overwrites relation is copied from old.
145  */
146 ir_entity     *copy_entity_name(ir_entity *old, ident *new_name);
147
148 /**
149  * Frees the entity.
150  *
151  * The owner will still contain the pointer to this
152  * entity, as well as all other references!
153  */
154 void        free_entity(ir_entity *ent);
155
156 /** Returns the name of an entity. */
157 const char *get_entity_name(const ir_entity *ent);
158
159 /** Returns the ident of an entity. */
160 ident      *get_entity_ident(const ir_entity *ent);
161
162 /** Sets the ident of the entity. */
163 void        set_entity_ident(ir_entity *ent, ident *id);
164
165 /** Returns the mangled name of the entity.
166  *
167  * If the mangled name is set it returns the existing name.
168  * Else it generates a name with mangle_entity()
169  * and remembers this new name internally.
170  */
171 ident      *get_entity_ld_ident(ir_entity *ent);
172
173 /** Sets the mangled name of the entity. */
174 void        set_entity_ld_ident(ir_entity *ent, ident *ld_ident);
175
176 /** Returns the mangled name of the entity as a string. */
177 const char *get_entity_ld_name(ir_entity *ent);
178
179 /** Returns the owner of the entity. */
180 ir_type    *get_entity_owner(ir_entity *ent);
181
182 /** Sets the owner field in entity to owner.  Don't forget to add
183    ent to owner!! */
184 void        set_entity_owner(ir_entity *ent, ir_type *owner);
185
186 /** Returns the type of an entity. */
187 ir_type  *get_entity_type(ir_entity *ent);
188
189 /** Sets the type of an entity. */
190 void      set_entity_type(ir_entity *ent, ir_type *tp);
191
192 /** The allocation type. */
193 typedef enum {
194   allocation_automatic, /**< The entity is allocated during runtime, implicitly
195                              as component of a compound type.   This is the default. */
196   allocation_parameter, /**< The entity is a parameter.  It is also automatic allocated.
197                              We distinguish the allocation of parameters from the allocation
198                              of local variables as their placement depends on the calling
199                              conventions. */
200   allocation_dynamic,   /**< The entity is allocated during runtime, explicitly
201                              by an Alloc node. */
202   allocation_static     /**< The entity is allocated statically.  We can use a
203                              Const as address of the entity.  This is the default for methods. */
204 } ir_allocation;
205
206 /** Returns the allocation type of an entity. */
207 ir_allocation get_entity_allocation(const ir_entity *ent);
208
209 /** Sets the allocation type of an entity. */
210 void           set_entity_allocation(ir_entity *ent, ir_allocation al);
211
212 /** Return the name of the allocation type. */
213 const char *get_allocation_name(ir_allocation vis);
214
215 /** Returns the visibility of an entity. */
216 ir_visibility get_entity_visibility(const ir_entity *ent);
217
218 /** Sets the visibility of an entity. */
219 void       set_entity_visibility(ir_entity *ent, ir_visibility vis);
220
221 /** Return the name of the visibility */
222 const char *get_visibility_name(ir_visibility vis);
223
224 /** This enumeration flags the variability of entities. */
225 typedef enum {
226   variability_uninitialized,    /**< The content of the entity is completely unknown. Default. */
227   variability_initialized,      /**< After allocation the entity is initialized with the
228                                      value given somewhere in the entity. */
229   variability_part_constant,    /**< For entities of compound types.
230                                      The members of the entity are mixed constant,
231                                      initialized or uninitialized. */
232   variability_constant          /**< The entity is constant. */
233 } ir_variability;
234
235 /** Returns the variability of an entity. */
236 ir_variability get_entity_variability(const ir_entity *ent);
237
238 /** Sets the variability of an entity. */
239 void           set_entity_variability(ir_entity *ent, ir_variability var);
240
241 /** Return the name of the variability. */
242 const char *get_variability_name(ir_variability var);
243
244 /** This enumeration flags the volatility of entities. */
245 typedef enum {
246   volatility_non_volatile,    /**< The entity is not volatile. Default. */
247   volatility_is_volatile      /**< The entity is volatile */
248 } ir_volatility;
249
250 /** Returns the volatility of an entity. */
251 ir_volatility get_entity_volatility(const ir_entity *ent);
252
253 /** Sets the volatility of an entity. */
254 void          set_entity_volatility(ir_entity *ent, ir_volatility vol);
255
256 /** Return the name of the volatility. */
257 const char *get_volatility_name(ir_volatility var);
258
259 /** This enumeration flags the stickyness of an entity. */
260 typedef enum {
261   stickyness_unsticky,          /**< The entity can be removed from
262                                    the program, unless contraindicated
263                                    by other attributes. Default. */
264   stickyness_sticky             /**< The entity must remain in the
265                                    program in any case. */
266 } ir_stickyness;
267
268 /** Get the entity's stickyness. */
269 ir_stickyness get_entity_stickyness(const ir_entity *ent);
270
271 /** Set the entity's stickyness. */
272 void          set_entity_stickyness(ir_entity *ent, ir_stickyness stickyness);
273
274 /** Returns the offset of an entity (in a compound) in bytes. Only set if layout = fixed. */
275 int       get_entity_offset(const ir_entity *ent);
276
277 /** Sets the offset of an entity (in a compound) in bytes. */
278 void      set_entity_offset(ir_entity *ent, int offset);
279
280 /** Returns the offset bit remainder of a bitfield entity (in a compound) in bits. Only set if layout = fixed. */
281 unsigned char get_entity_offset_bits_remainder(const ir_entity *ent);
282
283 /** Sets the offset bit remainder of a bitfield entity (in a compound) in bits. */
284 void      set_entity_offset_bits_remainder(ir_entity *ent, unsigned char offset);
285
286 /** Returns the stored intermediate information. */
287 void *get_entity_link(const ir_entity *ent);
288
289 /** Stores new intermediate information. */
290 void set_entity_link(ir_entity *ent, void *l);
291
292 /* -- Fields of method entities -- */
293 /** The entity knows the corresponding irg if the entity is a method.
294    This allows to get from a Call to the called irg.
295    Only entities of peculiarity "existent" can have a corresponding irg,
296    else the field is fixed to NULL.  (Get returns NULL, set asserts.) */
297 ir_graph *get_entity_irg(const ir_entity *ent);
298 void      set_entity_irg(ir_entity *ent, ir_graph *irg);
299
300 /** Gets the entity vtable number. */
301 unsigned get_entity_vtable_number(const ir_entity *ent);
302
303 /** Sets the entity vtable number. */
304 void     set_entity_vtable_number(ir_entity *ent, unsigned vtable_number);
305
306 /** Return the peculiarity of an entity. */
307 ir_peculiarity get_entity_peculiarity(const ir_entity *ent);
308
309 /** Sets the peculiarity of an entity. */
310 void           set_entity_peculiarity(ir_entity *ent, ir_peculiarity pec);
311
312 /** Checks if an entity cannot be overridden anymore. */
313 int       get_entity_final(const ir_entity *ent);
314
315 /** Sets/resets the final flag of an entity. */
316 void      set_entity_final(ir_entity *ent, int final);
317
318 /** Checks if an entity is compiler generated. */
319 int is_entity_compiler_generated(const ir_entity *ent);
320
321 /** Sets/resets the compiler generated flag. */
322 void set_entity_compiler_generated(ir_entity *ent, int flag);
323
324 /* -- Representation of constant values of entities -- */
325 /** Returns true if the the node is representable as code on
326  *  const_code_irg. */
327 int      is_irn_const_expression(ir_node *n);
328 /* Set current_ir_graph to get_const_code_irg() to generate a constant
329    expression. */
330
331 /**
332  * Copies a firm subgraph that complies to the restrictions for
333  * constant expressions to current_block in current_ir_graph.
334  */
335 ir_node *copy_const_value(dbg_info *dbg, ir_node *n);
336
337 /* Set has no effect for existent entities of type method. */
338 ir_node *get_atomic_ent_value(ir_entity *ent);
339 void     set_atomic_ent_value(ir_entity *ent, ir_node *val);
340
341 /**
342  * The following type describes a path to a leave in the compound graph.
343  * Node 0 in the path must be an entity of type tp given in the constructor.  If
344  * the type of this element is compound, the path node 1 is an element of the type
345  * of node 0 an so forth, until an entity of atomic type is reached.
346  */
347 #ifndef _COMPOUND_GRAPH_PATH_TYPEDEF_
348 #define _COMPOUND_GRAPH_PATH_TYPEDEF_
349 typedef struct compound_graph_path compound_graph_path;
350 #endif /* _COMPOUND_GRAPH_PATH_TYPEDEF_ */
351
352 /** Creates a new compound graph path. */
353 compound_graph_path *new_compound_graph_path(ir_type *tp, int length);
354
355 /** Returns non-zero if an object is a compound graph path */
356 int     is_compound_graph_path(const void *thing);
357
358 /** Frees a graph path object */
359 void    free_compound_graph_path (compound_graph_path *gr);
360
361 /** Returns the length of a graph path */
362 int     get_compound_graph_path_length(const compound_graph_path *gr);
363
364 ir_entity *get_compound_graph_path_node(const compound_graph_path *gr, int pos);
365 void    set_compound_graph_path_node(compound_graph_path *gr, int pos, ir_entity *node);
366 int     get_compound_graph_path_array_index(const compound_graph_path *gr, int pos);
367 void    set_compound_graph_path_array_index(compound_graph_path *gr, int pos, int index);
368
369 /** Checks whether the path up to pos is correct. If the path contains a NULL,
370  *  assumes the path is not complete and returns non-zero. */
371 int is_proper_compound_graph_path(compound_graph_path *gr, int pos);
372
373 /* A value of a compound entity is a pair of a value and the description of the
374    corresponding access path to the member of the compound.  */
375 void     add_compound_ent_value_w_path(ir_entity *ent, ir_node *val, compound_graph_path *path);
376 void     set_compound_ent_value_w_path(ir_entity *ent, ir_node *val, compound_graph_path *path, int pos);
377 /** Returns the number of constant values needed to initialize the entity.
378  *
379  *  Asserts if the entity has variability_uninitialized.
380  * */
381 int      get_compound_ent_n_values(ir_entity *ent);
382 /** Returns a constant value given the position. */
383 ir_node *get_compound_ent_value(ir_entity *ent, int pos);
384 /** Returns the access path for value at position pos. */
385 compound_graph_path *get_compound_ent_value_path(ir_entity *ent, int pos);
386 /** Returns the position of a value with the given path.
387  *  The path must contain array indices for all array element entities. */
388 int get_compound_ent_pos_by_path(ir_entity *ent, compound_graph_path *path);
389 /** Returns a constant value given the access path.
390  *  The path must contain array indices for all array element entities. */
391 ir_node *get_compound_ent_value_by_path(ir_entity *ent, compound_graph_path *path);
392
393 /** Removes all constant entries where the path ends at value_ent. Does not
394    free the memory of the paths.  (The same path might be used for several
395    constant entities. */
396 void     remove_compound_ent_value(ir_entity *ent, ir_entity *value_ent);
397
398 /* Some languages support only trivial access paths, i.e., the member is a
399    direct, atomic member of the constant entities type. In this case the
400    corresponding entity can be accessed directly.  The following functions
401    allow direct access. */
402
403 /** Generates a Path with length 1.
404     Beware: Has a bad runtime for array elements (O(|array|) and should be
405     avoided there. Use add_compound_ent_value_w_path() instead and create
406     the path manually. */
407 void     add_compound_ent_value(ir_entity *ent, ir_node *val, ir_entity *member);
408
409 /** Returns the last member in the path */
410 ir_entity  *get_compound_ent_value_member(ir_entity *ent, int pos);
411
412 /** Sets the path at pos 0 */
413 void     set_compound_ent_value(ir_entity *ent, ir_node *val, ir_entity *member, int pos);
414
415 /** Initializes the entity ent which must be of a one dimensional
416    array type with the values given in the values array.
417    The array must have a lower and an upper bound.  Keeps the
418    order of values. Does not test whether the number of values
419    fits into the given array size.  Does not test whether the
420    values have the proper mode for the array. */
421 void set_array_entity_values(ir_entity *ent, tarval **values, int num_vals);
422
423 /**
424  * Return the offset in bits from the last byte address.
425  *
426  * This requires that the layout of all concerned types is fixed.
427  *
428  * @param ent Any entity of compound type with at least pos initialization values.
429  * @param pos The position of the value for which the offset is requested.
430  */
431 int get_compound_ent_value_offset_bit_remainder(ir_entity *ent, int pos);
432
433 /** Return the overall offset of value at position pos in bytes.
434  *
435  * This requires that the layout of all concerned types is fixed.
436  * Asserts if bit offset is not byte aligned.
437  *
438  * @param ent Any entity of compound type with at least pos initialization values.
439  * @param pos The position of the value for which the offset is requested.
440  */
441 int  get_compound_ent_value_offset_bytes(ir_entity *ent, int pos);
442
443 /** Compute the array indices in compound graph paths of initialized entities.
444  *
445  * All arrays must have fixed lower and upper bounds.  One array can
446  * have an open upper bound.  If there are several open bounds, we do
447  * nothing.  There must be initializer elements for all array
448  * elements.  Uses the link field in the array element entities.  The
449  * array bounds must be representable as integers.
450  *
451  * @param ent Any entity.
452  * @return 0 in case of an error, 1 otherwise
453  */
454 int compute_compound_ent_array_indices(ir_entity *ent);
455
456 /* --- Fields of entities with a class type as owner --- */
457 /* Overwrites is a field that specifies that an access to the overwritten
458    entity in the supertype must use this entity.  It's a list as with
459    multiple inheritance several entities can be overwritten.  This field
460    is mostly useful for method entities.
461    If a Sel node selects an entity that is overwritten by other entities it
462    must return a pointer to the entity of the dynamic type of the pointer
463    that is passed to it.  Lowering of the Sel node must assure this.
464    Overwrittenby is the inverse of overwrites.  Both add routines add
465    both relations, they only differ in the order of arguments. */
466 void    add_entity_overwrites   (ir_entity *ent, ir_entity *overwritten);
467 int     get_entity_n_overwrites (ir_entity *ent);
468 int     get_entity_overwrites_index(ir_entity *ent, ir_entity *overwritten);
469 ir_entity *get_entity_overwrites   (ir_entity *ent, int pos);
470 void    set_entity_overwrites   (ir_entity *ent, int pos, ir_entity *overwritten);
471 void    remove_entity_overwrites(ir_entity *ent, ir_entity *overwritten);
472
473 void    add_entity_overwrittenby   (ir_entity *ent, ir_entity *overwrites);
474 int     get_entity_n_overwrittenby (ir_entity *ent);
475 int     get_entity_overwrittenby_index(ir_entity *ent, ir_entity *overwrites);
476 ir_entity *get_entity_overwrittenby   (ir_entity *ent, int pos);
477 void    set_entity_overwrittenby   (ir_entity *ent, int pos, ir_entity *overwrites);
478 void    remove_entity_overwrittenby(ir_entity *ent, ir_entity *overwrites);
479
480 /**
481  *   Checks whether a pointer points to an entity.
482  *
483  *   @param thing     an arbitrary pointer
484  *
485  *   @return
486  *       true if the thing is an entity, else false
487  */
488 int is_entity (const void *thing);
489
490 /** Returns true if the type of the entity is a primitive, pointer
491    enumeration or method type. */
492 int is_atomic_entity(ir_entity *ent);
493 /** Returns true if the type of the entity is a class, structure,
494    array or union type. */
495 int is_compound_entity(ir_entity *ent);
496 /** Returns true if the type of the entity is a Method type. */
497 int is_method_entity(ir_entity *ent);
498
499 /** Returns non-zero if ent1 and ent2 have are equal except for their owner.
500    Two entities are equal if
501     - they have the same type (the same C-struct)
502     - ...?
503 */
504 int equal_entity(ir_entity *ent1, ir_entity *ent2);
505
506 /** Outputs a unique number for this entity if libfirm is compiled for
507  *  debugging, (configure with --enable-debug) else returns the address
508  *  of the type cast to long.
509  */
510 long get_entity_nr(ir_entity *ent);
511
512 /** Returns the entities visited count. */
513 unsigned long get_entity_visited(ir_entity *ent);
514
515 /** Sets the entities visited count. */
516 void        set_entity_visited(ir_entity *ent, unsigned long num);
517
518 /** Sets visited field in entity to entity_visited. */
519 void        mark_entity_visited(ir_entity *ent);
520
521 /** Returns true if this entity was visited. */
522 int        entity_visited(ir_entity *ent);
523
524 /** Returns true if this entity was not visited. */
525 int        entity_not_visited(ir_entity *ent);
526
527 /**
528  * Returns the mask of the additional entity properties.
529  * The properties are automatically inherited from the irg if available
530  * or from the method type if they were not set using
531  * set_entity_additional_properties() or
532  * set_entity_additional_property().
533  */
534 unsigned get_entity_additional_properties(ir_entity *ent);
535
536 /** Sets the mask of the additional graph properties. */
537 void set_entity_additional_properties(ir_entity *ent, unsigned property_mask);
538
539 /** Sets one additional graph property. */
540 void set_entity_additional_property(ir_entity *ent, mtp_additional_property flag);
541
542 /** Returns the class type that this type info entity represents or NULL
543     if ent is no type info entity. */
544 ir_type *get_entity_repr_class(const ir_entity *ent);
545
546 /**
547  * @page unknown_entity  The Unknown entity
548  *
549  *  This entity is an auxiliary entity dedicated to support analyses.
550  *
551  *  The unknown entity represents that there could be an entity, but it is not
552  *  known.  This entity can be used to initialize fields before an analysis (not known
553  *  yet) or to represent the top of a lattice (could not be determined).  There exists
554  *  exactly one entity unknown. This entity has as owner and as type the unknown type. It is
555  *  allocated when initializing the entity module.
556  *
557  *  The entity can take the role of any entity, also methods.  It returns default
558  *  values in these cases.
559  *
560  *  The following values are set:
561  *
562  * - name          = "unknown_entity"
563  * - ld_name       = "unknown_entity"
564  * - owner         = unknown_type
565  * - type          = unknown_type
566  * - allocation    = allocation_automatic
567  * - visibility    = visibility_external_allocated
568  * - offset        = -1
569  * - variability   = variability_uninitialized
570  * - value         = SymConst(unknown_entity)
571  * - values        = NULL
572  * - val_paths     = NULL
573  * - peculiarity   = peculiarity_existent
574  * - volatility    = volatility_non_volatile
575  * - stickyness    = stickyness_unsticky
576  * - ld_name       = NULL
577  * - overwrites    = NULL
578  * - overwrittenby = NULL
579  * - irg           = NULL
580  * - link          = NULL
581  */
582 /* A variable that contains the only unknown entity. */
583 extern ir_entity *unknown_entity;
584
585 /** Returns the @link unknown_entity unknown entity @endlink. */
586 ir_entity *get_unknown_entity(void);
587
588 /** Encodes how a pointer parameter is accessed. */
589 typedef enum acc_bits {
590   ptr_access_none  = 0,                                 /**< no access */
591   ptr_access_read  = 1,                                 /**< read access */
592   ptr_access_write = 2,                                 /**< write access */
593   ptr_access_rw    = ptr_access_read|ptr_access_write,  /**< read AND write access */
594   ptr_access_store = 4,                                 /**< the pointer is stored */
595   ptr_access_all   = ptr_access_rw|ptr_access_store     /**< all possible access */
596 } ptr_access_kind;
597
598 #define IS_READ(a)     ((a) & ptr_access_read)
599 #define IS_WRITTEN(a)  ((a) & ptr_access_write)
600 #define IS_STORED(a)   ((a) & ptr_access_store)
601
602 /**
603  * Supported image sections.
604  * Currently only methods can be placed in different sections.
605  */
606 typedef enum {
607   section_text,           /**< The code segment. This is the default for methods. */
608   section_constructors    /**< The constructor section. */
609 } ir_img_section;
610
611 /** Returns the section of a method. */
612 ir_img_section get_method_img_section(const ir_entity *method);
613
614 /** Sets the section of a method. */
615 void set_method_img_section(ir_entity *method, ir_img_section section);
616
617 #endif /* _FIRM_TR_ENTITY_H_ */