1638d13271c3265d7f4f322a1982e9f37887fcd9
[libfirm] / Changes
1   7.9.2000 Goetz
2   Finished implementation of dump_all_types.
3   Added new testprogram inheritance_example.
4
5   6.9.2000 Chris
6   Added seven access routines in type.[hc]:
7   get_class_n_member, get_class_n_subtype, get_class_n_supertype,
8   get_strct_n_member, add_strct_member, get_strct_member and set_strct_member.
9   Fixed the type_walk_2 for those seven routines.
10
11   6.9.2000 Goetz
12   Added irdump routine dump_all_types.
13   Did changes to irprog, type, typewalk to achieve this.
14   typewalk needs to walk along members, sub and supertypes, this
15   is still missing!  irdump then needs to output these edges.
16
17 ======================================================================
18 ==================== New version: 0.2.5 ==============================
19 ======================================================================
20
21   3.9.2000 Goetz
22   Made new Version: 0.2.5
23
24   15.8.2000 Goetz until 3.9.00
25   Separated irnode.h and many others into two files: one public
26   one private.
27   Added funcionality to extract headers for lib.
28
29   23.8.2000 Goetz
30   type_dump also dumps irg->ent
31   if_example: corrected nr of locals
32
33   16.8.2000 Goetz
34   irgopt: Correct copy of self pointer in start block.
35   irgopt: Correct treatment of loops: pre function in walker
36     breaks all possible loops in Phi and Block nodes.
37   irr_loop_example: wrong Return statement
38   Now I fixed all but one error: in memory_example.
39   This error showed a conceptual problem, so I wrote
40   a slightly different algorithm.  This now runs for
41   all testprograms.
42   dead_node_example: cse is buggy!! merges start and the
43   following block!
44
45   15.8.2000 Goetz
46   looking at bug in dead_node_elimination.
47   Following fixes:
48   irnode:  all get_..._arr functions changed
49   ircons:  new_r_Block: set matured flag.
50   ircons:  new_r_SymConst: needs mode_p for linkage_ptr_info.
51   adapted call_str_example to new concepts.
52
53   2.8.2000 Goetz
54   Implemented simpler Phi construction algorithm that constructs
55   correct code for three_cfpred_example in ircons.  This algorithm
56   generates more Id nodes than the original algorithm and therefore
57   is less effective.
58   Also made some changes to optimizations of Not.
59
60   31.7.2000 Chris
61   Fixed a bug, caused by the recursive use in type.h and entity.h.
62   Deleted the _TYPE_TYPEDEF_ and inserted the _ENTITY_TYPEDEF_ instead.
63   Fixed a problem in if_while testprogram, so it now works.
64
65   20.7.2000 Goetz
66   Fixed bug in optimize(). Returned Null instead n if
67   get_optimize() == false.
68
69   19.7.2000 Christian
70   Added some access routines in type.[hc]. Solved a recursive definition
71   of type_class struct, entity struct and type union.
72
73   18.7.2000 Goetz
74   Separated entity header into pure functional header and header
75   with data types.
76
77   Goetz
78   ... a bunch small changes not documented
79
80   12.7.2000 Goetz
81   Changed output of oo_prog_example: now uses the internal list
82   of all irgs.  Had to implement some of the access routines for
83   that.  Also fixed a bug in irdump.  Main routines did not use
84   current_ir_graph properly.
85
86   12.7.2000 Goetz
87   Implemented some missing parts in irgopt.
88   Added field irg to entity. Only valid if entity is a method.
89   Had to resove a cyclic de[endency between irgraph.h and entity.h
90   for this.
91   Added fields sub and super to type_class for inheritance.
92   Added field main_irg to irprog.
93
94   7.7.2000 Chris
95   Fixed some bugs in irgopt.c
96   Added some missing 'get_new_node' methods, so the new obstack contains
97   the correct nodes.
98
99   6.7.2000 Chris
100   Renamed ir_vrfy to irn_vrfy and vrfy_graphg to irg_vrfy.
101   Solved some copy'n'paste problems. Deleted most debug-code!
102   Added comments to several files.
103
104   6.7.2000 Goetz
105   Fixed bug in _r_ constructors for all four Div operations.
106   Fixed bug in turn_into_tuple: didn't remember the block.
107   Tested transform_node.
108
109   5.7.2000 Goetz
110   Fixed some testprograms to new semantics of firm.
111   Added testprogram global_var_example.
112   Fixed a bug in irop:  Size of Sel node was (entity *) instead of
113   sel_attr.  Therefor array_heap_example aborted.
114   Also found a missing break in typewalk, case iro_Alloc.
115   Added a construct that unifies all things constructed by the lib
116   and needed to represent a program:  irprog.ch
117   This contains a list of all types as well as a list of all ir graphs.
118   I added calls to initialization and constructors so that this is constructed
119   automatically.  I changed firm.c, type.c, irgraph.c and ev. more.
120   Removed strange block struct and constructor from ircons.c.
121   Moved routines for automatic Phi construction from irgmod to ircons.
122   Sorted functions in ircons to reflect the different interfaces.
123   Renamed dataseg to globals to be conformant with documentation.
124   Added conservation of current_ir_graph to irgopt.c.
125   Corrected bug in Makefiles: wrong path to directory ./inlude.
126
127   4.7.2000 Goetz
128   Commented a whole bunch of stuff, e.g. in ircons.h  (Procedure to construct)
129   We should change the naming of the Block constructor.
130   Removed acces routines to attr. "closed" of Block.
131   Removed second implementation of new_ir_node from ircons and some comments
132   concerned with the now resolved cyclic dependency.
133   Fixed some bugs in irgopt so that the compilation goes through.
134
135   29.6.2000 Chris
136   Changed the irnode attribut 'visit' into 'visited'.
137   Added some access functions, like get/set_irn_visit etc.
138
139   28.6.2000 Chris
140   Renamed some access funtion in irgraph.*.
141   Deleted two global flags (ir_visited and block_visited) from irgraph.*.
142   Added two attributes to the irgraph struct. The visited flags belongs
143   to a ir graph, not to a whole program.
144
145   26.6.2000 Chris
146   A new optimization has been finished. The dead-node-elimination copies
147   the existing ir graph from one opstack to another. While walking the
148   graph, only the reachable nodes will be copied, so the "dead-nodes"
149   (unreachable in the controlflow) are removed.
150
151   19.6.2000 Chris
152   Solved some problems in the 'copy_node' function. The in array was not
153   as easy as it seamed.
154
155   16.6.2000 Chris
156   Wrote a new 'post' funtion, for future use in 'dead-node-elimination'
157   optimization, which is needed in the paramter list of 'irg_walk'.
158
159   14.6.2000 Chris
160   Moved 'optimze_in_place_wrapper' from iropt.* tothe new files irgopt.*.
161   New functions 'local_optimze_graph' and 'dead_node_elimination' are added,
162   but not finished.
163
164   31.5.2000 Chris
165   Removed some files from the archive, after dependencies and usage are
166   checked:
167   - 'ir/common/strerror.c'
168   was nowhere used;
169   - 'ir/ident/xx_ident.h'
170   an empty file, only included by 'ident.c', but never used;
171   - 'ir/tv/label.c' and
172   - 'ir/tv/label.h'
173   contained a numeric counter;
174   The files were included in 'tv.h' and implemented in 'tarval.c'. The two
175   functions 'tarval_label' and 'tarval_forall_labeled' were also never used.
176   In the old fiasco compiler, the label thing is used in the backend.
177   Search for 'babil' to see the usage.
178   Also removed the two attributes 'lab' and 'used' in the tarval struct.
179
180   26.5.2000 Chris
181   Moved the 'new_ir_node' constructor from ircons.* to irnode.* and fixed
182   afterwards some recursive includes, so libfirm works again.
183
184   2+3.2000 Goetz
185   Did a lot of changes, which I never commented until now (4.7.00).
186
187   * Added new result to Start node: Pointer to global data segment.
188   * Extended Semantics of SymConst node to represent information for the
189     linker.
190   * Added arithmeitc nodes (Shrs, Minus ...)
191
192   Rearranged the directory structure and adjusted the makefiles.
193   The directories contain:
194   ir:       everything for the intermediate representation (better: src?)
195     /ir:    the ir itself, and standard optimizations.
196     /tv:    the target value module
197     /tr:    the type and entity representation
198     /adt:   abstract data types
199     /common:  stuff needed by all other dirs
200     /debug: debugging Unterstuetzung
201     /ident:
202   include:  external files needen as includes
203   testprograms: examples to test the lib.
204
205   The makefiles generate files with extension .d that contain the dependencies
206   between the files.
207
208   15.2.2000 Goetz
209   Added access routine to attribute link of irnode in irnode.ch.
210   Added get_negated_pnc to irnode.ch.
211
212   14.2.2000 Goetz
213   Added an iterator in iropt that calls the optimization for all nodes.
214   Copied optimize's code to optimize_in_place and removed deallocations.
215   Made set_irn_n in irnode.c public.
216   Added Bad as possible cfg predecessor in is_cfg_node in irnode.  Bads
217   are allowded as cfgpredecessors to represent dead "incoming" control
218   flow.
219   Added call to optimize_in_place in mature_block. Is this useful?
220
221   10.2.2000 Goetz
222   Changed tests from comparing enums to comparing pointers. This is more
223   efficient (is it?) and reads better.  e.g., instead get_irn_opcode == irm_And
224   now get_irn_op == op_And
225
226   10.2.2000 Goetz
227   Compared equivalent_value to the one in the original fiasco.
228   Added a test in case iro_And.
229   Changed implementation of iro_Div. Added routines turn_into_tuple
230     and set_irn_op() in irgmod/irnode.
231   Changed implementation of irn_Minus (although commented out).
232   Now all features are ported or documented for this function.
233
234   10.2.2000 Goetz
235   Compared computed_value to the one in the original fiasco.
236   Added one further optimization in case iro_Proj.
237   Now all features are ported for this function.
238
239   9.2.2000 Goetz
240   Updated comments in ircons.h.
241
242   9.2.2000 Goetz
243   Changed possible attribute of SymConst from type_class to type.
244   SymConst size could be the size of a union, array, ...
245
246   9.2.2000 Goetz
247   Implemented two dumpers that dump type information and a graph with
248   type information.
249
250   9.2.2000 Goetz
251   Implemented a walker that walks over the type informatin that can
252   be reached from an ir node.
253   Added routine get_kind(firm_thing) in common.h, Added file common.c.
254   Added files typewalk.ch and routines to irdump.
255   Added visited flags and initialization to entity and all types.
256   Implemented some of the missing access routines in type.c, entity.c
257
258   9.2.2000 Goetz
259   Implemented constructor for ShrA.
260   Added type struct.
261   Added routine that iterates the graph and verifies all nodes.
262   Added Phi_in stack to irgraph.  This allows to build several
263     graphs at once with respect to the Phi building algorithm.
264
265   9.2.2000 Goetz
266   Implemented dumper for control flow graphs.  Changed irr_* and dead_*
267   examples to dump cfg.
268
269   8.2.2000 Goetz
270   Implemeted explicit stack for the Phi node generation.  See ircons.c.
271
272   8.2.2000 Goetz
273   added include string.h in xoprintf.c to get rid of warning:
274   implicit declaration of function `bcopy'
275
276   7.2.2000 Goetz
277   Worked on iropt.c:
278   Added more cases to equivalent_node.
279   Portet gigo, identify, identify_remember.
280   The set/pset library can not handle several hash tables.  At least,
281   compiling several procedures causes a segmentation fault during access
282   to the tables (oo_program_example).  Need to work on this.
283   transform_node still needs to be ported.
284   some cases in equivalent_node are still missing.
285
286   To get it running I had to remove the call to optimize in the
287   new_Block constructor. It can only be called when the Block is
288   mature.
289
290   7.2.2000 Goetz
291   Introduced a walker that walks only over blocks.  The asserts
292   might be too strict for general graphs, but so far it works.
293   For the walker I introduced an additional flag in the attribute
294   of Blocks, an a global block_visited variable (in irgraph.h).
295   Furhter I modularized dump_ir_node, implemented dump_ir_graph
296   with the existing walker, and added new routines to output a
297   basic block graph.
298   Changed the examples to call the new dump routine.
299
300   7.2.2000 Goetz
301   Added auxiliary routines to ir_node:
302   skip_Proj, skip_Nop, is_Bad ...
303   Changed access routines to use get_irn_n instead of explicit array
304   accesses. Changed get_irn_n to call skip_Id, so that the access routines
305   never will return Id nodes.
306
307   3.2.2000 Goetz
308   Repaired Phi computation, changed new_r_Phi_in.  Added test program to
309   test irregular controlflow.
310
311   2.2.2000 Goetz
312   Updated optimizations computed_value and equivalent_node to new
313   Syntax of FIRM nodes and to use access routines.
314   Added routine skip_Proj in irnode.
315
316   2.2.2000 Boris Boesler
317   Added files irgwalk.c and irgwalk.h. They include a simple function to
318   traverse an ir graph and execute pre and post functions to current node.
319
320   1.2.2000 Goetz
321   Added arrays with parameters and result types to the type informtion
322   of a procedure.  This is needed for the code generation.  Also added
323   the corresponding access routines.
324   Adapted the testprograms.
325
326   1.2.2000 Goetz
327   Found a bug / complication:  the call order
328     get_value   (makes Phi0, put's it into graph_arr)
329     set_value   (overwrites Phi0 in graph_arr)
330     mature_block (upgrades Phi0, puts it again into graph_arr, overwriting
331                   the proper value.)
332   fails.  Added test wether graph_arr is already set in phi_merge.
333
334   Added tons of comments to explain Phi generation -- the stack hack.
335
336
337   27.1.2000 Goetz
338   irdump now outputs the pnc_number for projs of Cmp nodes.
339   Added routine to access the pnc_string.
340
341   27.1.2000 Goetz
342   Added result "dataseg" to Start node, with all it's consequences.
343   We need this for the compiler lab to translate global variables.
344   Now they can be selected from the data segment, and the start
345   node supplies the pointer to this segment.
346   These changes are guarded by preprocessor variable UEBPRAKT in
347   common.h
348   Changed files: common.h, irgraph.ch, irnode.h
349
350   26.1.2000 Goetz
351   Testprograms:
352   removed array_example, added array-heap_example and
353   array-stack_example and adapted makefile.
354   ir_lib:
355   Entity now also allows type_method as owner. This is to model
356   the stack, Sel nodes that select a variable (array) from the
357   stack need an entity that describes what they select.  This
358   entity gets the type of the enclosing procedure as owner.
359
360   24.1.2000 Chris
361   Added future access routines in `irmode.[ch]' as comments,
362     that all attributes in the ir_mode struct can be user-defined.
363   Added access routines in `irgraph.[ch]', for all attributes.
364
365   22.1.2000 Chris
366   Moved verify routines from `irgraph.[ch]' to own files `irvrfy.[ch]'.
367   Added `irvrfy.[ch]' to MAKEFILE
368   Added "inline" before access routines in `irnode.h', that no warnings
369     will appear furthermore.
370   Added three more access routines in `irmode.[ch]':
371         struct tarval *get_min_of_mode (ir_mode *mode);
372         struct tarval *get_max_of_mode (ir_mode *mode);
373         struct tarval *get_null_of_mode (ir_mode *mode);
374
375   21.1.2000 Goetz
376   Adaption of Alloc, Sel and Entity to new types:
377     Changed array_example to use type instead of type_class.
378     Changed entity to allow all types as owner instead of
379       only type_class.  Added routine "assert_legal_owner_of_ent(type* type)".
380     Changed alloc to allow allocating variables of any type instead of
381       only type_class.
382     Adapted all testprograms to avoid warnings.
383
384   removed dtest ... from Makefile, replaced by test.
385
386   20.1.2000 Goetz
387   Added "run" to makefile, added array_example to makefile of testprograms.
388   Corrected testprogram array
389   Changed assert in irvrfy -- Conv.
390   Started Change log.
391   Started TODO log.