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