aea33da8cf559a9e5224a1362ed49b8a4dd2405b
[libfirm] / Changes
1   21.12.2001 Goetz
2   Asserts in irvrfy that verify the mode of Proj nodes.  For Start,
3   Call, Return they check the corresponding function type!  Corrected
4   bugs in testprograms.
5
6   20.12.2001 Goetz
7   Some access routines for visited flags in entity.h, irnode.h,
8   bug in oo_program_example.
9
10   17.12.2001 Boris
11   Removed all obsolete Makefiles
12
13   10.12.2001 Goetz
14   Added support for constant entities.  A new example program illustrates
15   their use.  Extended dumper routines to dump constant values.
16
17   30.11.2001 Goetz
18   Extendend "comfortable" construction interface by some methods
19   serving as simple shortcuts.
20
21   30.11.2001 Goetz
22   Added a class type to irgs.  This class type is to be used as owner
23   for local entities of the procedure. This are all entities allocated
24   for each execution of the procedure.
25   The class type is allocated automatically by new_ir_graph().  Access
26   routines to get this type are in irgraph.h.
27   We chose a class type as this allows to represent "inner" procedures
28   as, e.g., in Pascal.
29   Adapted array-stack-example.
30
31   29.11.2001 Goetz
32   irdump outputs nodeids instead of pointers for labels of nodes.
33   With a preprocessor flag in common.h this can be turned off.
34
35   28.11.2001 Boris
36   Added an Id tag to every .c and .h file
37
38   20.11.2001 Goetz
39   Changed SSA constuction for exception control flow.
40   If PRECISE_EXC_CONTEXT is used Phi nodes will use the values
41   valid when the execption operation was allocated.  This increases
42   the memory consuption of the construction algorithm by
43   n_loc * #fragile_ops.
44
45   19.11.2001 Goetz
46   Added method to replace in array of a node in irnode.c/h
47   Added functionality to irgmod:
48    * collect all Phi nodes as link-list in the Blocks link field
49    * collect all Proj nodes as link-list in node producing the tuple.
50    * Seperate a Block into two
51   Added inlining transformation in irgopt.h
52   Improved output of dump_ir_block_graph.  Now also dumps nodes that
53   don't belong to a block.
54   Added flag opt_unreachable_code, opt_inline.
55   Changed irvrfy so that it accepts nodes with Bad predecessors.
56
57   19.10.2001 Boris
58   renamed get_type_nameid to get_type_ident
59
60   10.9.2001 Goetz
61   Bugfix: dead node elimination did not replace the hash table
62   for cse.
63
64   29.8.2001 Goetz
65   Added routine remove_irp_irg.
66   Changed comment to free_ir_graph.
67
68   29.8.2001 Goetz
69   Added routine to free irgraphs.
70
71   17.7.2001 Goetz
72   Improved add routines to sub, supertype in type.c
73
74   12.7.2001 Goetz
75   Added implementation of overwrites stuff.
76
77   11.7.2001 Goetz
78   Implemented stuff to change the type graph.  See
79   typegmod.h and tpop.h for basic documentation of the change.
80   There now exists a type of kind type_id.  If this appears
81   externally this is a bug.
82
83   9.7.2001 Goetz
84   Added some new access routines to types.
85   List of overwritten fields for entities.
86   Removed a bug in irnode.
87
88   4.7.2001 Goetz
89   Added a routine to set the mangled entity name.
90   Added two routines to copy entites.
91
92   3.7.2001 Goetz
93   Entities now have two more flags, for visibility and allocation mode.
94   Types that have a layout have a flag indicating whether the layout is
95   fixed.
96
97   25.6.2001 Goetz
98   We distinguish three kinds of Cond nodes.  These can be distinguished
99   by the mode of the selector operand and an internal flag of type cond_kind.
100   First we distinguish binary Conds and switch Conds.
101   A binary Cond has as selector a boolean value.  Proj(0) projects the control
102   flow for case "False", Proj(1) the control flow for "True".  A binary Cond
103   is recognized by the boolean selector.
104   The switch Cond has as selector an unsigned integer.  It produces as result
105   an n+1 Tuple (cf0, ... , cfn) of control flows.
106   We differ two flavours of this Cond.  The first, the dense Cond, passes
107   control along output i if the selector value is i, 0 <= i <= n.  If the
108   selector value is >n it passes control along output n.
109   The second Cond flavor differes in the treatment of cases not specified in
110   the source program.  It magically knows about the existence of Proj nodes.
111   It only passes control along output i, 0 <= i <= n, if a node Proj(Cond, i)
112   exists.  Else it passes control along output n (even if this Proj does not
113   exist.)  This Cond we call "fragmentary".  There is a special constructor
114   new_defaultProj that automatically sets the flavor.
115   The two switch flavors are distinguished by a flag of type cond_kind.
116   Default flavor is "dense"
117
118   20.6.2001 Goetz
119   Extended iropt, tv.
120   tv now implements Minus, Abs.
121   iropt now optimizes these and Div, Mod, Quot, DivMod.
122   Still missing: Shrs, Rot.
123   tarval_shr somtimes performs shrs, depending on the compiler/system!!
124   If the ArmRoq implementation is faulty there might appear errors.
125
126   20.6.2001 Goetz
127   Changed ircons: If undefined values are used the Phi construction
128   inserts a constant with value tarval_bad.
129
130   19.6.2001 Goetz
131   Changed array bounds in type.h to ir_node*.  This allows to
132   construct array bounds that are complex constant expressions
133   simpler.  Further dynamic array bounds can be displayed.
134   Comment in ircons.c extended: undefined values in start_block.
135
136   7.6.2001 Goetz
137   ifdef'ed all uses of gmp in tv.c away.  Optimizations for
138   mode_Z no more supported, as well as constants of that mode.
139
140   7.6.2001 Goetz
141   Dokumentation in ir_dump
142   Habe Routinen fuer einzelne Knoten/Kanten aus header entfernt:
143   Benutzen globale Variable die nicht oeffentlich zugaenglich ist.
144
145   28.5.2001 Goetz
146   We need an entity for the array elements for the Sel nodes.  This
147   entity should be stored in the array type.  Changed constructor
148   parameters: include array element type.  Entity for elements is built
149   automatically now.
150
151   28.5.2001 Goetz
152   Removed bug in tv.c.
153   Faulty use of va_arg, became visible with new, stricter gcc 2.96.
154
155   23.5.2001 Goetz
156   Added list of member entites to union.  unioned_types and delimiters
157   are superfluous now -- removed.
158   Rationale: we want to express selection of a union member as a Sel
159   node. for this we need to have entities.  The entities contain the
160   unioned type and have as name the delimiters...
161
162   17.4.2001 Boris
163   Changed Makefile/MakeTargets to install headers and libraries
164   seperately.
165
166   28.3.2001 Boris
167   Changed Makefile and Configure scripts to produce a proper tar file
168   for distribution (libfirm-VERSION.tar)
169   Use 'make distrib' instead of 'make dist'
170
171   14.3.2001 Goetz
172   Changed implementation of tr module.  With this I also changed the
173   interface!!  Type casts are unnecessary now, but some access funcions
174   differ.
175
176
177 ======================================================================
178 ==================== New version: 0.3.0 ==============================
179 ======================================================================
180
181   14.3.2001 Boris
182   added file TODO
183
184   14.3.2001 Boris
185   added creation of a tar archive for distribution
186   replaced ir/.dummy.in by ir/Makefile.in
187
188   13.3.2001 Goetz
189   Changed equivalent_node() and copy_preds() so that the end block
190   is not optimized away if it has no real predecessors.  This fixes
191   the problem with the while examples.
192   Added while_example in Makefile
193
194   12.3.2001 Goetz
195   Fooled around with if_while_example: Why does cse make it abort?
196   Cse removes path to End node, Bad remains as pred of Endblock.
197   The block walker can't deal with this.
198   Made new example with only loop:  while_example.
199
200   12.3.2001 Boris
201   added auto documentation in Makefiles, configure, etc
202   example in ir/ir/ircons.c - much must be added
203   creation of documentation by 'make autodoc' in architecture directory
204
205   5.3.2001 Boris
206   added lots of #ifdef HAVE_CONFIG_G #include "config.h" #endif
207   replaced some C++ style comments (//) by standard C comments /**/
208   added autoconf stuff
209   worked this night:
210         - configure (with some features, see --help for more)
211         - make [depend | tags | install]
212         - make [run] in testprograms
213   did not work:
214         - compilation on SunOS
215         - make dist
216         - automatic call of autoconf if required
217
218   5.3.2001 Goetz
219   More colours in vcg output.
220   Fixed bug:  cse found that start block equals it's
221   first successor as both have the Start block as predecessor.
222   This only happens for local_optimize_graph() as during construction
223   the Start block is not entered in the value table.
224   Changed implementation:  irgmod:  local_optimize_graph() did not
225   empty the hash table with the irnodes for cse.  This might cause that
226   cse turns up with a node that seems better but was removed from the
227   graph in an earlier optimization phase.
228   Removed old #if 1 from ircons.c
229   Commented in call of optimization for Block nodes in irgopt.c, copy_preds():
230   Optimizes blocks that had bad predecessors.
231   Same for Phi nodes.
232
233
234   27.2.2001 Goetz
235   Moved struct from irprog.h to irprog_t.h, same for irmode.h.
236   Added a module deb_info in debug.h.  Adapted makefile.  Added example
237   use in iropt.h.
238   Removed use of debug.h in ident.c. Now debug.c|h can be moved to
239   /adt/.
240   Removed inabled code for dead node elimination in irgopt.h.
241   Renamed some missnamed access routines (_of_).  Macros with old names
242   are in old_fctnames.h.
243   Edited makefiles to remove #* and *.flc.
244
245   ??.2.2001 Goetz
246   Some minor bugfixes...
247
248   25.1.2001 Goetz
249   After compacting of in arrays in dead_node_elimination
250   merge blocks and remove Phis with one pred.
251
252   24.1.2001 Goetz
253   Freeing of obstack in dead_node_elimination commented in.
254   Compacting in arrays of Block and Phi nodes in dead_node_
255   elimination.
256   Some more changes...
257
258   15.01.2001 Goetz
259   added set/get_SymConst_type_or_id in irnode.h
260   added field offset to entity in entity.h
261   added field size to type_class in type.h
262   include "gmp.h" in tv.h with "" instead <>
263
264   12.01.2001 Goetz
265   Some changes to make the lib better portable
266
267   29.12.2000 Goetz
268   Initialize max_node_nr in irprog.
269
270   27.12.2000 Goetz
271   Now outputs warning if faulty type in irdump, dump_type_info.
272   Explicit string termination in irdump, vcg_open.
273
274   20.12.2000 Goetz
275   Added external to declaration of irp.
276   Added typedef before pns and pnc_number.
277   irmode.c, init_mode(): We need to memset all new modes as
278   tarval_vrfy reads fields before they are initialized: It
279   compares to min/max when tarvals for min/max are allocated!
280
281   18.12.2000 Goetz
282   Changed parameter of Methods in type.h and type.c from
283   class to clss.  Class is a C++ keyword.
284
285   10.12.2000 Goetz
286   Changed some testprograms to accomodate Uebprakt.
287
288   7.9.2000 Goetz
289   Finished implementation of dump_all_types.
290   Added new testprogram inheritance_example.
291
292   6.9.2000 Chris
293   Added seven access routines in type.[hc]:
294   get_class_n_member, get_class_n_subtype, get_class_n_supertype,
295   get_strct_n_member, add_strct_member, get_strct_member and set_strct_member.
296   Fixed the type_walk_2 for those seven routines.
297
298   6.9.2000 Goetz
299   Added irdump routine dump_all_types.
300   Did changes to irprog, type, typewalk to achieve this.
301   typewalk needs to walk along members, sub and supertypes, this
302   is still missing!  irdump then needs to output these edges.
303
304 ======================================================================
305 ==================== New version: 0.2.5 ==============================
306 ======================================================================
307
308   3.9.2000 Goetz
309   Made new Version: 0.2.5
310
311   15.8.2000 Goetz until 3.9.00
312   Separated irnode.h and many others into two files: one public
313   one private.
314   Added funcionality to extract headers for lib.
315
316   23.8.2000 Goetz
317   type_dump also dumps irg->ent
318   if_example: corrected nr of locals
319
320   16.8.2000 Goetz
321   irgopt: Correct copy of self pointer in start block.
322   irgopt: Correct treatment of loops: pre function in walker
323     breaks all possible loops in Phi and Block nodes.
324   irr_loop_example: wrong Return statement
325   Now I fixed all but one error: in memory_example.
326   This error showed a conceptual problem, so I wrote
327   a slightly different algorithm.  This now runs for
328   all testprograms.
329   dead_node_example: cse is buggy!! merges start and the
330   following block!
331
332   15.8.2000 Goetz
333   looking at bug in dead_node_elimination.
334   Following fixes:
335   irnode:  all get_..._arr functions changed
336   ircons:  new_r_Block: set matured flag.
337   ircons:  new_r_SymConst: needs mode_p for linkage_ptr_info.
338   adapted call_str_example to new concepts.
339
340   2.8.2000 Goetz
341   Implemented simpler Phi construction algorithm that constructs
342   correct code for three_cfpred_example in ircons.  This algorithm
343   generates more Id nodes than the original algorithm and therefore
344   is less effective.
345   Also made some changes to optimizations of Not.
346
347   31.7.2000 Chris
348   Fixed a bug, caused by the recursive use in type.h and entity.h.
349   Deleted the _TYPE_TYPEDEF_ and inserted the _ENTITY_TYPEDEF_ instead.
350   Fixed a problem in if_while testprogram, so it now works.
351
352   20.7.2000 Goetz
353   Fixed bug in optimize(). Returned Null instead n if
354   get_optimize() == false.
355
356   19.7.2000 Christian
357   Added some access routines in type.[hc]. Solved a recursive definition
358   of type_class struct, entity struct and type union.
359
360   18.7.2000 Goetz
361   Separated entity header into pure functional header and header
362   with data types.
363
364   Goetz
365   ... a bunch small changes not documented
366
367   12.7.2000 Goetz
368   Changed output of oo_prog_example: now uses the internal list
369   of all irgs.  Had to implement some of the access routines for
370   that.  Also fixed a bug in irdump.  Main routines did not use
371   current_ir_graph properly.
372
373   12.7.2000 Goetz
374   Implemented some missing parts in irgopt.
375   Added field irg to entity. Only valid if entity is a method.
376   Had to resove a cyclic de[endency between irgraph.h and entity.h
377   for this.
378   Added fields sub and super to type_class for inheritance.
379   Added field main_irg to irprog.
380
381   7.7.2000 Chris
382   Fixed some bugs in irgopt.c
383   Added some missing 'get_new_node' methods, so the new obstack contains
384   the correct nodes.
385
386   6.7.2000 Chris
387   Renamed ir_vrfy to irn_vrfy and vrfy_graphg to irg_vrfy.
388   Solved some copy'n'paste problems. Deleted most debug-code!
389   Added comments to several files.
390
391   6.7.2000 Goetz
392   Fixed bug in _r_ constructors for all four Div operations.
393   Fixed bug in turn_into_tuple: didn't remember the block.
394   Tested transform_node.
395
396   5.7.2000 Goetz
397   Fixed some testprograms to new semantics of firm.
398   Added testprogram global_var_example.
399   Fixed a bug in irop:  Size of Sel node was (entity *) instead of
400   sel_attr.  Therefor array_heap_example aborted.
401   Also found a missing break in typewalk, case iro_Alloc.
402   Added a construct that unifies all things constructed by the lib
403   and needed to represent a program:  irprog.ch
404   This contains a list of all types as well as a list of all ir graphs.
405   I added calls to initialization and constructors so that this is constructed
406   automatically.  I changed firm.c, type.c, irgraph.c and ev. more.
407   Removed strange block struct and constructor from ircons.c.
408   Moved routines for automatic Phi construction from irgmod to ircons.
409   Sorted functions in ircons to reflect the different interfaces.
410   Renamed dataseg to globals to be conformant with documentation.
411   Added conservation of current_ir_graph to irgopt.c.
412   Corrected bug in Makefiles: wrong path to directory ./inlude.
413
414   4.7.2000 Goetz
415   Commented a whole bunch of stuff, e.g. in ircons.h  (Procedure to construct)
416   We should change the naming of the Block constructor.
417   Removed acces routines to attr. "closed" of Block.
418   Removed second implementation of new_ir_node from ircons and some comments
419   concerned with the now resolved cyclic dependency.
420   Fixed some bugs in irgopt so that the compilation goes through.
421
422   29.6.2000 Chris
423   Changed the irnode attribut 'visit' into 'visited'.
424   Added some access functions, like get/set_irn_visit etc.
425
426   28.6.2000 Chris
427   Renamed some access funtion in irgraph.*.
428   Deleted two global flags (ir_visited and block_visited) from irgraph.*.
429   Added two attributes to the irgraph struct. The visited flags belongs
430   to a ir graph, not to a whole program.
431
432   26.6.2000 Chris
433   A new optimization has been finished. The dead-node-elimination copies
434   the existing ir graph from one opstack to another. While walking the
435   graph, only the reachable nodes will be copied, so the "dead-nodes"
436   (unreachable in the controlflow) are removed.
437
438   19.6.2000 Chris
439   Solved some problems in the 'copy_node' function. The in array was not
440   as easy as it seamed.
441
442   16.6.2000 Chris
443   Wrote a new 'post' funtion, for future use in 'dead-node-elimination'
444   optimization, which is needed in the paramter list of 'irg_walk'.
445
446   14.6.2000 Chris
447   Moved 'optimze_in_place_wrapper' from iropt.* tothe new files irgopt.*.
448   New functions 'local_optimze_graph' and 'dead_node_elimination' are added,
449   but not finished.
450
451   31.5.2000 Chris
452   Removed some files from the archive, after dependencies and usage are
453   checked:
454   - 'ir/common/strerror.c'
455   was nowhere used;
456   - 'ir/ident/xx_ident.h'
457   an empty file, only included by 'ident.c', but never used;
458   - 'ir/tv/label.c' and
459   - 'ir/tv/label.h'
460   contained a numeric counter;
461   The files were included in 'tv.h' and implemented in 'tarval.c'. The two
462   functions 'tarval_label' and 'tarval_forall_labeled' were also never used.
463   In the old fiasco compiler, the label thing is used in the backend.
464   Search for 'babil' to see the usage.
465   Also removed the two attributes 'lab' and 'used' in the tarval struct.
466
467   26.5.2000 Chris
468   Moved the 'new_ir_node' constructor from ircons.* to irnode.* and fixed
469   afterwards some recursive includes, so libfirm works again.
470
471   2+3.2000 Goetz
472   Did a lot of changes, which I never commented until now (4.7.00).
473
474   * Added new result to Start node: Pointer to global data segment.
475   * Extended Semantics of SymConst node to represent information for the
476     linker.
477   * Added arithmeitc nodes (Shrs, Minus ...)
478
479   Rearranged the directory structure and adjusted the makefiles.
480   The directories contain:
481   ir:       everything for the intermediate representation (better: src?)
482     /ir:    the ir itself, and standard optimizations.
483     /tv:    the target value module
484     /tr:    the type and entity representation
485     /adt:   abstract data types
486     /common:  stuff needed by all other dirs
487     /debug: debugging Unterstuetzung
488     /ident:
489   include:  external files needen as includes
490   testprograms: examples to test the lib.
491
492   The makefiles generate files with extension .d that contain the dependencies
493   between the files.
494
495   15.2.2000 Goetz
496   Added access routine to attribute link of irnode in irnode.ch.
497   Added get_negated_pnc to irnode.ch.
498
499   14.2.2000 Goetz
500   Added an iterator in iropt that calls the optimization for all nodes.
501   Copied optimize's code to optimize_in_place and removed deallocations.
502   Made set_irn_n in irnode.c public.
503   Added Bad as possible cfg predecessor in is_cfg_node in irnode.  Bads
504   are allowded as cfgpredecessors to represent dead "incoming" control
505   flow.
506   Added call to optimize_in_place in mature_block. Is this useful?
507
508   10.2.2000 Goetz
509   Changed tests from comparing enums to comparing pointers. This is more
510   efficient (is it?) and reads better.  e.g., instead get_irn_opcode == irm_And
511   now get_irn_op == op_And
512
513   10.2.2000 Goetz
514   Compared equivalent_value to the one in the original fiasco.
515   Added a test in case iro_And.
516   Changed implementation of iro_Div. Added routines turn_into_tuple
517     and set_irn_op() in irgmod/irnode.
518   Changed implementation of irn_Minus (although commented out).
519   Now all features are ported or documented for this function.
520
521   10.2.2000 Goetz
522   Compared computed_value to the one in the original fiasco.
523   Added one further optimization in case iro_Proj.
524   Now all features are ported for this function.
525
526   9.2.2000 Goetz
527   Updated comments in ircons.h.
528
529   9.2.2000 Goetz
530   Changed possible attribute of SymConst from type_class to type.
531   SymConst size could be the size of a union, array, ...
532
533   9.2.2000 Goetz
534   Implemented two dumpers that dump type information and a graph with
535   type information.
536
537   9.2.2000 Goetz
538   Implemented a walker that walks over the type informatin that can
539   be reached from an ir node.
540   Added routine get_kind(firm_thing) in common.h, Added file common.c.
541   Added files typewalk.ch and routines to irdump.
542   Added visited flags and initialization to entity and all types.
543   Implemented some of the missing access routines in type.c, entity.c
544
545   9.2.2000 Goetz
546   Implemented constructor for ShrA.
547   Added type struct.
548   Added routine that iterates the graph and verifies all nodes.
549   Added Phi_in stack to irgraph.  This allows to build several
550     graphs at once with respect to the Phi building algorithm.
551
552   9.2.2000 Goetz
553   Implemented dumper for control flow graphs.  Changed irr_* and dead_*
554   examples to dump cfg.
555
556   8.2.2000 Goetz
557   Implemeted explicit stack for the Phi node generation.  See ircons.c.
558
559   8.2.2000 Goetz
560   added include string.h in xoprintf.c to get rid of warning:
561   implicit declaration of function `bcopy'
562
563   7.2.2000 Goetz
564   Worked on iropt.c:
565   Added more cases to equivalent_node.
566   Portet gigo, identify, identify_remember.
567   The set/pset library can not handle several hash tables.  At least,
568   compiling several procedures causes a segmentation fault during access
569   to the tables (oo_program_example).  Need to work on this.
570   transform_node still needs to be ported.
571   some cases in equivalent_node are still missing.
572
573   To get it running I had to remove the call to optimize in the
574   new_Block constructor. It can only be called when the Block is
575   mature.
576
577   7.2.2000 Goetz
578   Introduced a walker that walks only over blocks.  The asserts
579   might be too strict for general graphs, but so far it works.
580   For the walker I introduced an additional flag in the attribute
581   of Blocks, an a global block_visited variable (in irgraph.h).
582   Furhter I modularized dump_ir_node, implemented dump_ir_graph
583   with the existing walker, and added new routines to output a
584   basic block graph.
585   Changed the examples to call the new dump routine.
586
587   7.2.2000 Goetz
588   Added auxiliary routines to ir_node:
589   skip_Proj, skip_Nop, is_Bad ...
590   Changed access routines to use get_irn_n instead of explicit array
591   accesses. Changed get_irn_n to call skip_Id, so that the access routines
592   never will return Id nodes.
593
594   3.2.2000 Goetz
595   Repaired Phi computation, changed new_r_Phi_in.  Added test program to
596   test irregular controlflow.
597
598   2.2.2000 Goetz
599   Updated optimizations computed_value and equivalent_node to new
600   Syntax of FIRM nodes and to use access routines.
601   Added routine skip_Proj in irnode.
602
603   2.2.2000 Boris Boesler
604   Added files irgwalk.c and irgwalk.h. They include a simple function to
605   traverse an ir graph and execute pre and post functions to current node.
606
607   1.2.2000 Goetz
608   Added arrays with parameters and result types to the type informtion
609   of a procedure.  This is needed for the code generation.  Also added
610   the corresponding access routines.
611   Adapted the testprograms.
612
613   1.2.2000 Goetz
614   Found a bug / complication:  the call order
615     get_value   (makes Phi0, put's it into graph_arr)
616     set_value   (overwrites Phi0 in graph_arr)
617     mature_block (upgrades Phi0, puts it again into graph_arr, overwriting
618                   the proper value.)
619   fails.  Added test wether graph_arr is already set in phi_merge.
620
621   Added tons of comments to explain Phi generation -- the stack hack.
622
623
624   27.1.2000 Goetz
625   irdump now outputs the pnc_number for projs of Cmp nodes.
626   Added routine to access the pnc_string.
627
628   27.1.2000 Goetz
629   Added result "dataseg" to Start node, with all it's consequences.
630   We need this for the compiler lab to translate global variables.
631   Now they can be selected from the data segment, and the start
632   node supplies the pointer to this segment.
633   These changes are guarded by preprocessor variable UEBPRAKT in
634   common.h
635   Changed files: common.h, irgraph.ch, irnode.h
636
637   26.1.2000 Goetz
638   Testprograms:
639   removed array_example, added array-heap_example and
640   array-stack_example and adapted makefile.
641   ir_lib:
642   Entity now also allows type_method as owner. This is to model
643   the stack, Sel nodes that select a variable (array) from the
644   stack need an entity that describes what they select.  This
645   entity gets the type of the enclosing procedure as owner.
646
647   24.1.2000 Chris
648   Added future access routines in `irmode.[ch]' as comments,
649     that all attributes in the ir_mode struct can be user-defined.
650   Added access routines in `irgraph.[ch]', for all attributes.
651
652   22.1.2000 Chris
653   Moved verify routines from `irgraph.[ch]' to own files `irvrfy.[ch]'.
654   Added `irvrfy.[ch]' to MAKEFILE
655   Added "inline" before access routines in `irnode.h', that no warnings
656     will appear furthermore.
657   Added three more access routines in `irmode.[ch]':
658         struct tarval *get_min_of_mode (ir_mode *mode);
659         struct tarval *get_max_of_mode (ir_mode *mode);
660         struct tarval *get_null_of_mode (ir_mode *mode);
661
662   21.1.2000 Goetz
663   Adaption of Alloc, Sel and Entity to new types:
664     Changed array_example to use type instead of type_class.
665     Changed entity to allow all types as owner instead of
666       only type_class.  Added routine "assert_legal_owner_of_ent(type* type)".
667     Changed alloc to allow allocating variables of any type instead of
668       only type_class.
669     Adapted all testprograms to avoid warnings.
670
671   removed dtest ... from Makefile, replaced by test.
672
673   20.1.2000 Goetz
674   Added "run" to makefile, added array_example to makefile of testprograms.
675   Corrected testprogram array
676   Changed assert in irvrfy -- Conv.
677   Started Change log.
678   Started TODO log.