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