SCM Repository
Diff of /sml/trunk/HISTORY
Parent Directory
|
Revision Log
|
Patch
revision 591, Mon Apr 3 01:19:20 2000 UTC | revision 1064, Thu Feb 14 03:40:24 2002 UTC | |
---|---|---|
# | Line 8 | Line 8 |
8 | The form of an entry should be: | The form of an entry should be: |
9 | ||
10 | Name: | Name: |
11 | Date: | Date: yyyy/mm/dd |
12 | Tag: <post-commit CVS tag> | Tag: <post-commit CVS tag> |
13 | Description: | Description: |
14 | ||
15 | ---------------------------------------------------------------------- | |
16 | Name: Matthias Blume | |
17 | Date: 2002/02/13 22:40:00 EST | |
18 | Tag: blume-20020213-fptr-rtti | |
19 | Description: | |
20 | ||
21 | Fixed a bug in ml-nlffigen that was introduced with one of the previous | |
22 | updates. | |
23 | ||
24 | ---------------------------------------------------------------------- | |
25 | Name: Matthias Blume | |
26 | Date: 2002/02/13 16:41:00 EST | |
27 | Tag: blume-20020213-cmlpq | |
28 | Description: | |
29 | ||
30 | Added new priority queue export symbols (which have just been added to | |
31 | smlnj-lib.cm) to CML's version of smlnj-lib.cm. (Otherwise CML would | |
32 | not compile and the installer would choke.) | |
33 | ||
34 | ---------------------------------------------------------------------- | |
35 | Name: Matthias Blume | |
36 | Date: 2002/02/13 16:15:00 EST | |
37 | Tag: blume-20020213-various | |
38 | Description: | |
39 | ||
40 | 1. More tweaks to ml-nlffigen: | |
41 | ||
42 | - better internal datastructures (resulting in slight speedup) | |
43 | - "-match" option requires exact match | |
44 | - "localized" gensym counters (untagged structs/unions nested within | |
45 | other structs/unions or within typedefs get a fresh counter; their | |
46 | tag will be prefixed by a concatenation of their parents' tags) | |
47 | - bug fixes (related to calculation of transitive closure of types | |
48 | to be included in the output) | |
49 | ||
50 | 2. Minor Basis updates: | |
51 | ||
52 | - added implementations for List.collate and Option.app | |
53 | ||
54 | ---------------------------------------------------------------------- | |
55 | Name: Matthias Blume | |
56 | Date: 2002/02/11 15:55:00 EST | |
57 | Tag: blume-20020211-gensym | |
58 | Description: | |
59 | ||
60 | Added a "-gensym" option to command line of ml-nlffigen. This can be | |
61 | used to specify a "stem" -- a string that is inserted in all "gensym'd" | |
62 | names (ML structure names that correspond to unnamed C structs, unions, | |
63 | and enums), so that separate runs of ml-nlffigen do not clash. | |
64 | ||
65 | ---------------------------------------------------------------------- | |
66 | Name: Matthias Blume | |
67 | Date: 2002/02/11 12:05:00 EST | |
68 | Tag: blume-20020211-gensml | |
69 | Description: | |
70 | ||
71 | A quick fix for a problem with GenSML (in the pgraph-util library): | |
72 | Make generation of toplevel "local" optional. (Strictly speaking, | |
73 | signature definitions within "local" are not legal SML.) | |
74 | ||
75 | Other than that: updates to INSTALL and cm/TODO. | |
76 | ||
77 | ---------------------------------------------------------------------- | |
78 | Name: Matthias Blume | |
79 | Date: 2002/02/08 15:00:00 EST | |
80 | Tag: blume-20020208-uniquepid | |
81 | Description: | |
82 | ||
83 | 0. Version number has been bumped to 110.38.1. NEW BOOTFILES!!! | |
84 | ||
85 | 1. The installer (config/install.sh) has gotten smarter: | |
86 | ||
87 | - Configuration options are a bit easier to specify now | |
88 | (in config/targets). | |
89 | - Bug in recognizing .tar.bz2 files fixed. | |
90 | - Installer automatically resolves dependencies between | |
91 | configuration options (e.g., if you ask for eXene, you will | |
92 | also get cml -- regardless whether you asked for it or not). | |
93 | - Installer can run in "quieter mode" by setting the environment | |
94 | variable INSTALL_QUIETLY to "true". "Quieter" does not mean | |
95 | "completely silent", though. | |
96 | - Build HashCons library as part of smlnj-lib. | |
97 | ||
98 | 2. A new scheme for assigning persistent identifiers to compilation | |
99 | units (and, by extension, to types etc.) has been put into place. | |
100 | This fixes a long-standing bug where types and even dynamic values | |
101 | can get internally confused, thereby compromising type safety | |
102 | (abstraction) and dynamic correctness. See | |
103 | ||
104 | http://cm.bell-labs.com/cm/cs/who/blume/pid-confusion.tgz | |
105 | ||
106 | for an example of how things could go wrong until now. | |
107 | ||
108 | The downside of the new scheme is that pids are not quite as | |
109 | persistent as they used to be: CM will generate a fresh pid | |
110 | for every compilation unit that it thinks it sees for the first | |
111 | time. That means that if you compile starting from a clean, fresh | |
112 | source tree at two different times, you end up with different | |
113 | binaries. | |
114 | ||
115 | Cutoff recompilation, however, has not been compromised because | |
116 | CM keeps pid information in special caches between runs. | |
117 | ||
118 | ---------------------------------------------------------------------- | |
119 | Name: Lal George | |
120 | Date: 2002/02/07 15:34:13 EST 2002 | |
121 | Tag: <none> | |
122 | Description: | |
123 | ||
124 | Compilers that generate assembly code may produce global labels | |
125 | whose value is resolved at link time. The various peephole optimization | |
126 | modules did not take this in account. | |
127 | ||
128 | TODO. The Labels.addrOf function should really return an option | |
129 | type so that clients are forced to deal with this issue, rather | |
130 | than an exception being raised. | |
131 | ||
132 | ---------------------------------------------------------------------- | |
133 | Name: Lal George | |
134 | Date: 2002/02/06 13:55:02 EST | |
135 | Tag: george-20020206-ra-breakup | |
136 | Description: | |
137 | ||
138 | 1. A bug fix from Allen. | |
139 | ||
140 | A typo causes extra fstp %st(0)'s to be generated at compensation | |
141 | edges, which might cause stack underflow traps at runtime. This | |
142 | occurs in fft where there are extraneous fstps right before the 'into' | |
143 | trap instruction (in this case they are harmless since none of the | |
144 | integers overflow.) | |
145 | ||
146 | 2. Pulled out various utility modules that were embedded in the modules | |
147 | of the register allocator. I need these modules for other purposes, but | |
148 | they are not complete enough to put into a library (just yet). | |
149 | ---------------------------------------------------------------------- | |
150 | Name: Matthias Blume | |
151 | Date: 2002/01/31 16:05:00 EST | |
152 | Tag: blume-20020131-sparc-ccalls | |
153 | Description: | |
154 | ||
155 | 1. C-calls on Sparc needlessly allocated a huge chunk (96 bytes) | |
156 | of extra stack space by mistake. Fixed. | |
157 | ||
158 | 2. Bug in logic of handling of command-line options in ml-nlffigen fixed. | |
159 | ||
160 | ---------------------------------------------------------------------- | |
161 | Name: Allen Leung | |
162 | Date: 2002/01/30 | |
163 | Tag: leunga-20020130-nowhere-bug-fix | |
164 | Description: | |
165 | ||
166 | MLRISC bug fixes: | |
167 | 1. Fixed a bindings computation bug in the 'nowhere' program generator tool. | |
168 | 2. MachineInt.fromString was negating its value. | |
169 | ||
170 | ---------------------------------------------------------------------- | |
171 | Name: Matthias Blume | |
172 | Date: 2002/01/29 | |
173 | Tag: blume-20020129-INSTALL | |
174 | Description: | |
175 | ||
176 | - Added somewhat detailed installation instructions (file INSTALL). | |
177 | - Fixed curl-detection bug in config/install.sh. | |
178 | - It is now possible to select the URL getter using the URLGETTER | |
179 | environment variable: | |
180 | ||
181 | not set / "unknown" --> automatic detection (script tries wget, | |
182 | curl, and lynx) | |
183 | "wget" / "curl" / "lynx" --> use the specified program (script "knows" | |
184 | how to properly invoke them) | |
185 | other --> use $URLGETTER directly, it must take | |
186 | precisely two command-line arguments | |
187 | (source URL and destination file name) | |
188 | ||
189 | ---------------------------------------------------------------------- | |
190 | Name: Matthias Blume | |
191 | Date: 2002/01/28 | |
192 | Tag: blume-20020128-sparc-ccalls | |
193 | Description: | |
194 | ||
195 | - Fixed problem with calculation of "used" registers in sparc-c-calls. | |
196 | - Make use of the allocParam argument in sparc-c-calls. | |
197 | ||
198 | ---------------------------------------------------------------------- | |
199 | Name: Matthias Blume | |
200 | Date: 2002/01/28 | |
201 | Tag: blume-20020128-allocParam | |
202 | Description: | |
203 | ||
204 | John Reppy: Changes c-calls API to accept client-callback for | |
205 | allocating extra stack space. | |
206 | me: Corresponding changes to mlriscGen (using a dummy argument that | |
207 | does not change the current behavior). | |
208 | ||
209 | ---------------------------------------------------------------------- | |
210 | Name: Matthias Blume | |
211 | Date: 2002/01/28 12:00:00 | |
212 | Tag: Release_110_38 | |
213 | Description: | |
214 | ||
215 | This time for real!!! | |
216 | ||
217 | ---------------------------------------------------------------------- | |
218 | Name: Matthias Blume | |
219 | Date: 2002/01/28 10:56:00 EST | |
220 | Tag: blume-20020128-retraction | |
221 | Description: | |
222 | ||
223 | 0. Retracted earlier 110.38. (The Release_110_38 tag has been replaced | |
224 | with blume-Release_110_38-retracted.) | |
225 | ||
226 | 1. Fixed a problem with incorrect rounding modes in real64.sml. | |
227 | (Thanks to Andrew Mccreight <andrew.mccreight@yale.edu>.) | |
228 | ||
229 | 2. A bug in ml-nlffigen related to the handling of unnamed structs, unions, | |
230 | and enums fixed. The naming of corresponding ML identifiers should | |
231 | now be consistent again. | |
232 | ||
233 | ---------------------------------------------------------------------- | |
234 | Name: Allen Leung | |
235 | Date: 2002/01/27 | |
236 | Tag: leunga-20020127-nowhere | |
237 | Description: | |
238 | ||
239 | Added a target called nowhere in the configuration scripts. | |
240 | Enabling this will build the MLRISC 'nowhere' tool (for translating | |
241 | programs with where-clauses into legal SML code) during installation. | |
242 | ||
243 | ---------------------------------------------------------------------- | |
244 | Name: Matthias Blume | |
245 | Date: 2002/01/25 21:27:00 EST | |
246 | Tag: blume-Release_110_38-retracted | |
247 | Description: | |
248 | ||
249 | Call it a (working) release! Version is 110.38. Bootfiles are ready. | |
250 | ||
251 | README will be added later. | |
252 | ||
253 | !!! NOTE: Re-tagged as blume-Release_110_38-retracted. Original tag | |
254 | (Release_110_38) removed. Reason: Last-minute bug fixes. | |
255 | ||
256 | ---------------------------------------------------------------------- | |
257 | Name: Matthias Blume | |
258 | Date: 2002/01/25 | |
259 | Tag: blume-20020125-ffi | |
260 | Description: | |
261 | ||
262 | A large number of tweaks and improvements to ml-nlffi-lib and | |
263 | ml-nlffigen: | |
264 | ||
265 | - ML represenation types have been streamlined | |
266 | - getter and setter functions work with concrete values, not abstract | |
267 | ones where possible | |
268 | - ml-nlffigen command line more flexible (see README file there) | |
269 | - some bugs have been fixed (hopefully) | |
270 | ||
271 | ---------------------------------------------------------------------- | |
272 | Name: Lal George | |
273 | Date: 2002/01/24 | |
274 | Tag: george-20020124-risc-ra-interface | |
275 | Description: | |
276 | ||
277 | There is a dramatic simplification in the interface to the | |
278 | register allocator for RISC architectures as a result of making | |
279 | parallel copy instructions explicit. | |
280 | ||
281 | ---------------------------------------------------------------------- | |
282 | Name: Matthias Blume | |
283 | Date: 2002/01/22 | |
284 | Tag: blume-20020122-x86-ccalls | |
285 | Description: | |
286 | ||
287 | Bug fix for c-calls on x86 (having to do with how char- and | |
288 | short-arguments are being handled). | |
289 | ||
290 | ---------------------------------------------------------------------- | |
291 | Name: Matthias Blume | |
292 | Date: 2002/01/21 | |
293 | Tag: blume-20020121-ff | |
294 | Description: | |
295 | ||
296 | Another day of fiddling with the FFI... | |
297 | ||
298 | 1. Bug fix/workaround: CKIT does not complain about negative array | |
299 | dimensions, so ml-nlffigen has to guard itself against this possibility. | |
300 | (Otherwise a negative dimension would send it into an infinite loop.) | |
301 | ||
302 | 2. Some of the abstract types (light objects, light pointers, most "base" | |
303 | types) in structure C are now eqtypes. | |
304 | ||
305 | 3. Added constructors and test functions for NULL function pointers. | |
306 | ||
307 | ---------------------------------------------------------------------- | |
308 | Name: Matthias Blume | |
309 | Date: 2002/01/18 | |
310 | Tag: blume-20020118-ready-for-new-release | |
311 | Description: | |
312 | ||
313 | Made config/srcarchiveurl point to a new place. (Will provide boot | |
314 | files shortly.) | |
315 | ||
316 | Maybe we christen this to be 110.38? | |
317 | ||
318 | ---------------------------------------------------------------------- | |
319 | Name: Matthias Blume | |
320 | Date: 2002/01/18 | |
321 | Tag: blume-20020118-more-ffifiddle | |
322 | Description: | |
323 | ||
324 | Today's FFI fiddling: | |
325 | ||
326 | - Provided a structure CGetSet with "convenient" versions of C.Get.* and | |
327 | C.Set.* that use concrete (MLRep.*) arguments and results instead | |
328 | of abstract ones. | |
329 | ||
330 | - Provided word-style bit operations etc. for "int" representation | |
331 | types in MLRep.S<Foo>Bitops where <Foo> ranges over Char, Int, Short, | |
332 | and Long. | |
333 | ||
334 | ---------------------------------------------------------------------- | |
335 | Name: Matthias Blume | |
336 | Date: 2002/01/18 | |
337 | Tag: blume-20020118-use-x86-fp | |
338 | Description: | |
339 | ||
340 | Now that x86-fast-fp seems to be working, I turned it back on again | |
341 | by default. (Seems to work fine now, even with the FFI.) | |
342 | ||
343 | Other than that, I added some documentation about the FFI to | |
344 | src/ml-nlffigen/README and updated the FFI test examples in | |
345 | src/ml-nlffi-lib/Tests/*. | |
346 | ||
347 | ---------------------------------------------------------------------- | |
348 | Name: Allen Leung | |
349 | Date: 2002/01/17 | |
350 | Tag: leunga-20020117-x86-fast-fp-call | |
351 | Description: | |
352 | ||
353 | 1. Fixed a problem with handling return fp values when x86's fast fp | |
354 | mode is turned on. | |
355 | ||
356 | 2. Minor pretty printing fix for cellset. Print %st(0) as %st(0) instead | |
357 | of %f32. | |
358 | ||
359 | 3. Added a constructor INT32lit to the ast of MLRISC tools. | |
360 | ||
361 | ---------------------------------------------------------------------- | |
362 | Name: Matthias Blume | |
363 | Date: 2002/01/16 | |
364 | Tag: blume-20020116-ffifiddle | |
365 | Description: | |
366 | ||
367 | More fiddling with the FFI interface: | |
368 | ||
369 | - Make constness 'c instead of rw wherever possible. This eliminates | |
370 | the need for certain explicit coercions. (However, due to ML's | |
371 | value polymorphism, there will still be many cases where explicit | |
372 | coercions are necessary. Phantom types are not the whole answer | |
373 | to modeling a subtyping relationship in ML.) | |
374 | ||
375 | - ro/rw coersions for pointers added. (Avoids the detour through */&.) | |
376 | ||
377 | - "printf" test example added to src/ml-nlffi-lib/Tests. (Demonstrates | |
378 | clumsy workaround for varargs problem.) | |
379 | ||
380 | ---------------------------------------------------------------------- | |
381 | Name: Lal George | |
382 | Date: 2002/01/15 | |
383 | Tag: <none> | |
384 | Description: | |
385 | ||
386 | 1. Since COPY instructions are no longer native to the architecture, | |
387 | a generic functor can be used to implement the expandCopies function. | |
388 | ||
389 | 2. Allowed EXPORT and IMPORT pseudo-op declarations to appear inside a | |
390 | TEXT segment. | |
391 | ||
392 | ---------------------------------------------------------------------- | |
393 | Name: Matthias Blume | |
394 | Date: 2002/01/15 | |
395 | Tag: blume-20020115-ffiupdates | |
396 | Description: | |
397 | ||
398 | 1. Fix for bug resulting in single-precision float values being returned | |
399 | incorrectly from FFI calls. | |
400 | ||
401 | 2. Small modifications to C FFI API: | |
402 | ||
403 | - memory-allocation routines return straight objects (no options) | |
404 | and raise an exception in out-of-memory situations | |
405 | - unsafe extensions to cast between function pointers and pointers | |
406 | from/to ints | |
407 | - added structure C_Debug as an alternative to structure C where | |
408 | pointer-dereferencing (|*| and |*!) always check for null-pointers | |
409 | - added open_lib' to DynLinkage; open_lib' works like open_lib | |
410 | but also takes a (possibly empty) list of existing library handles | |
411 | that the current library depends on | |
412 | ||
413 | ---------------------------------------------------------------------- | |
414 | Name: Matthias Blume | |
415 | Date: 2002/01/10 | |
416 | Tag: blume-20020110-newffigen | |
417 | Description: | |
418 | ||
419 | 1. Updates to portable graph code. | |
420 | ||
421 | 2. Major update to ml-nlffigen and ml-nlffi-lib. Things are much | |
422 | more scalable now so that even huge interfaces such as the one | |
423 | for GTK compile in finite time and space. :-) | |
424 | See src/ml-nlffigen/README for details on what's new. | |
425 | ||
426 | ---------------------------------------------------------------------- | |
427 | Name: Lal George | |
428 | Date: 2001/01/09 14:31:35 EST 2002 | |
429 | Tag: george-20011206-rm-native-copy | |
430 | Description: | |
431 | ||
432 | Removed the native COPY and FCOPY instructions | |
433 | from all the architectures and replaced it with the | |
434 | explicit COPY instruction from the previous commit. | |
435 | ||
436 | It is now possible to simplify many of the optimizations | |
437 | modules that manipulate copies. This has not been | |
438 | done in this change. | |
439 | ||
440 | ---------------------------------------------------------------------- | |
441 | Name: Lal George | |
442 | Date: 2001/12/06 16:50:13 EST 2001 | |
443 | Tag: george-20011206-mlrisc-instruction | |
444 | Description: | |
445 | ||
446 | Changed the representation of instructions from being fully abstract | |
447 | to being partially concrete. That is to say: | |
448 | ||
449 | from | |
450 | type instruction | |
451 | ||
452 | to | |
453 | type instr (* machine instruction *) | |
454 | ||
455 | datatype instruction = | |
456 | LIVE of {regs: C.cellset, spilled: C.cellset} | |
457 | | KILL of {regs: C.cellset, spilled: C.cellset} | |
458 | | COPYXXX of {k: CB.cellkind, dst: CB.cell list, src: CB.cell list} | |
459 | | ANNOTATION of {i: instruction, a: Annotations.annotation} | |
460 | | INSTR of instr | |
461 | ||
462 | This makes the handling of certain special instructions that appear on | |
463 | all architectures easier and uniform. | |
464 | ||
465 | LIVE and KILL say that a list of registers are live or killed at the | |
466 | program point where they appear. No spill code is generated when an | |
467 | element of the 'regs' field is spilled, but the register is moved to | |
468 | the 'spilled' (which is present, more for debugging than anything else). | |
469 | ||
470 | LIVE replaces the (now deprecated) DEFFREG instruction on the alpha. | |
471 | We used to generate: | |
472 | ||
473 | DEFFREG f1 | |
474 | f1 := f2 + f3 | |
475 | trapb | |
476 | ||
477 | but now generate: | |
478 | ||
479 | f1 := f2 + f3 | |
480 | trapb | |
481 | LIVE {regs=[f1,f2,f3], spilled=[]} | |
482 | ||
483 | Furthermore, the DEFFREG (hack) required that all floating point instruction | |
484 | use all registers mentioned in the instruction. Therefore f1 := f2 + f3, | |
485 | defines f1 and uses [f1,f2,f3]! This hack is no longer required resulting | |
486 | in a cleaner alpha implementation. (Hopefully, intel will not get rid of | |
487 | this architecture). | |
488 | ||
489 | COPYXXX is intended to replace the parallel COPY and FCOPY available on | |
490 | all the architectures. This will result in further simplification of the | |
491 | register allocator that must be aware of them for coalescing purposes, and | |
492 | will also simplify certain aspects of the machine description that provides | |
493 | callbacks related to parallel copies. | |
494 | ||
495 | ANNOTATION should be obvious, and now INSTR represents the honest to God | |
496 | machine instruction set! | |
497 | ||
498 | The <arch>/instructions/<arch>Instr.sml files define certain utility | |
499 | functions for making porting easier -- essentially converting upper case | |
500 | to lower case. All machine instructions (of type instr) are in upper case, | |
501 | and the lower case form generates an MLRISC instruction. For example on | |
502 | the alpha we have: | |
503 | ||
504 | datatype instr = | |
505 | LDA of {r:cell, b:cell, d:operand} | |
506 | | ... | |
507 | ||
508 | val lda : {r:cell, b:cell, d:operand} -> instruction | |
509 | ... | |
510 | ||
511 | where lda is just (INSTR o LDA), etc. | |
512 | ||
513 | ---------------------------------------------------------------------- | |
514 | Name: Matthias Blume | |
515 | Date: 2001/11/22 21:40:00 EST | |
516 | Tag: Release_110_37 | |
517 | Description: | |
518 | ||
519 | Release 110.37. This time for real. | |
520 | ||
521 | ---------------------------------------------------------------------- | |
522 | Name: Matthias Blume | |
523 | Date: 2001/11/21 16:35:00 EST | |
524 | Tag: blume-20011121-foot-in-mouth | |
525 | Description: | |
526 | ||
527 | Removed the "Release_110_37" tag because of a serious bug. | |
528 | This will be re-tagged once the bug is fixed. | |
529 | ||
530 | ---------------------------------------------------------------------- | |
531 | Name: Matthias Blume | |
532 | Date: 2001/11/21 16:14:00 EST | |
533 | Tag: blume-20011121-forgottenfile | |
534 | Description: | |
535 | ||
536 | Forgot to add a file. (Just a .tex-file -- part of | |
537 | the CM manual source.) | |
538 | ||
539 | ---------------------------------------------------------------------- | |
540 | Name: Matthias Blume | |
541 | Date: 2001/11/21 16:10:00 EST | |
542 | Tag: blume-20011121-invalid_110_37 | |
543 | Description: | |
544 | ||
545 | Note: I removed the original tag "Release_110_37" from this commit | |
546 | because we found a serious bug in all non-x86 backends. | |
547 | - Matthias | |
548 | ||
549 | 1. Modifications to the SML/NJ code generator and to the runtime system | |
550 | so that code object name strings are directly inserted into code | |
551 | objects at code generation time. The only business the runtime system | |
552 | has with this is now to read the name strings on occasions. | |
553 | (The encoding of the name string has also changed somewhat.) | |
554 | ||
555 | 2. CM now implements a simple "set calculus" for specifying export lists. | |
556 | In particular, it is now possible to refer to the export lists of | |
557 | other libraries/groups/sources and form unions as well as differences. | |
558 | See the latest CM manual for details. | |
559 | ||
560 | 3. An separate notion of "proxy" libraries has again be eliminated from | |
561 | CM's model. (Proxy libraries are now simply a special case of using | |
562 | the export list calculus.) | |
563 | ||
564 | 4. Some of the existing libraries now take advantage of the new set | |
565 | calculus. | |
566 | (Notice that not all libraries have been converted because some | |
567 | of the existing .cm-files are supposed to be backward compatible | |
568 | with 110.0.x.) | |
569 | ||
570 | 5. Some cleanup in stand-alone programs. (Don't use "exnMessage" -- use | |
571 | "General.exnMessage"! The former relies on a certain hook to be | |
572 | initialized, and that often does not happen in the stand-alone case.) | |
573 | ||
574 | ---------------------------------------------------------------------- | |
575 | Name: Lal George | |
576 | Date: 2001/11/21 13:56:18 EST | |
577 | Tag: george-2001121-pseudo-ops | |
578 | Description: | |
579 | ||
580 | Implemented a complete redesign of MLRISC pseudo-ops. Now there | |
581 | ought to never be any question of incompatabilities with | |
582 | pseudo-op syntax expected by host assemblers. | |
583 | ||
584 | For now, only modules supporting GAS syntax are implemented | |
585 | but more should follow, such as MASM, and vendor assembler | |
586 | syntax, e.g. IBM as, Sun as, etc. | |
587 | ||
588 | ---------------------------------------------------------------------- | |
589 | Name: Matthias Blume | |
590 | Date: 2001/11/14 11:52:00 EST | |
591 | Tag: blume-20011114-srcname | |
592 | Description: | |
593 | ||
594 | 1. Routed the name of the current source file to mlriscgen where it | |
595 | should be directly emitted into the code object. (This last part | |
596 | is yet to be done.) | |
597 | ||
598 | 2. Some cleanup of the pgraph code to make it match the proposal that | |
599 | I put out the other day. (The proposal notwithstanding, things are | |
600 | still in flux here.) | |
601 | ||
602 | ---------------------------------------------------------------------- | |
603 | Name: Lal George | |
604 | Date: 2001/11/14 09:44:04 EST | |
605 | Tag: | |
606 | Description: | |
607 | ||
608 | Fix for a backpatching bug reported by Allen. | |
609 | ||
610 | Because the boundary between short and long span-dependent | |
611 | instructions is +/- 128, there are an astounding number of | |
612 | span-dependent instructions whose size is over estimated. | |
613 | ||
614 | Allen came up with the idea of letting the size of span | |
615 | dependent instructions be non-monotonic, for a maxIter | |
616 | number of times, after which the size must be monotonically | |
617 | increasing. | |
618 | ||
619 | This table shows the number of span-dependent instructions | |
620 | whose size was over-estimated as a function of maxIter, for the | |
621 | file Parse/parse/ml.grm.sml: | |
622 | ||
623 | maxIter # of instructions: | |
624 | 10 687 | |
625 | 20 438 | |
626 | 30 198 | |
627 | 40 0 | |
628 | ||
629 | In compiling the compiler, there is no significant difference in | |
630 | compilation speed between maxIter=10 and maxIter=40. Actually, | |
631 | my measurements showed that maxIter=40 was a tad faster than | |
632 | maxIter=10! Also 96% of the files in the compiler reach a fix | |
633 | point within 13 iterations, so fixing maxIter at 40, while high, | |
634 | is okay. | |
635 | ||
636 | ---------------------------------------------------------------------- | |
637 | Name: Matthias Blume | |
638 | Date: 2001/10/31 15:25:00 EST | |
639 | Tag: blume-20011031-pgraph | |
640 | Description: | |
641 | ||
642 | CKIT: | |
643 | * Changed the "Function" constructor of type Ast.ctype to carry optional | |
644 | argument identifiers. | |
645 | * Changed the return type of TypeUtil.getFunction accordingly. | |
646 | * Type equality ignores the argument names. | |
647 | * TypeUtil.composite tries to preserve argument names but gives up quickly | |
648 | if there is a mismatch. | |
649 | ||
650 | installation script: | |
651 | * attempts to use "curl" if available (unless "wget" is available as well) | |
652 | ||
653 | CM: | |
654 | * has an experimental implementation of "portable graphs" which I will | |
655 | soon propose as an implementation-independent library format | |
656 | * there are also new libraries $/pgraph.cm and $/pgraph-util.cm | |
657 | ||
658 | NLFFI-LIB: | |
659 | * some cleanup (all cosmetic) | |
660 | ||
661 | NLFFIGEN: | |
662 | * temporarily disabled the mechanism that suppresses ML output for | |
663 | C definitions whose identifiers start with an underscore character | |
664 | * generate val bindings for enum constants | |
665 | * user can request that only one style (light or heavy) is being used; | |
666 | default is to use both (command-line arguments: -heavy and -light) | |
667 | * fixed bug in handling of function types involving incomplete pointers | |
668 | * generate ML entry points that take record arguments (i.e., using | |
669 | named arguments) for C functions that have a prototype with named | |
670 | arguments | |
671 | (see changes to CKIT) | |
672 | ||
673 | ---------------------------------------------------------------------- | |
674 | Name: Allen Leung | |
675 | Date: 2001/10/27 20:34:00 EDT | |
676 | Tag: leunga-20011027-x86-fast-fp-call | |
677 | Description: | |
678 | ||
679 | Fixed the bug described in blume-20010920-slowfp. | |
680 | ||
681 | The fix involves | |
682 | 1. generating FCOPYs in FSTP in ia32-svid | |
683 | 2. marking a CALL with the appropriate annotation | |
684 | ||
685 | ---------------------------------------------------------------------- | |
686 | Name: Matthias Blume | |
687 | Date: 2001/10/16 11:32:00 EDT | |
688 | Tag: blume-20011016-netbsd | |
689 | Description: | |
690 | ||
691 | Underscore patch from Chris Richards (fixing problem with compiling | |
692 | runtime system under recent NetBSD). | |
693 | ||
694 | ---------------------------------------------------------------------- | |
695 | Name: Allen Leung | |
696 | Date: 2001/10/12 17:18:32 EDT 2001 | |
697 | Tag: leung-20011012-x86-printflowgraph | |
698 | Description: | |
699 | ||
700 | X86RA now uses a valid (instead of dummy) PrintFlowgraph module. | |
701 | ||
702 | ---------------------------------------------------------------------- | |
703 | Name: Lal George | |
704 | Date: 2001/10/11 23:51:34 EDT | |
705 | Tag: george-20011011-too-many-instrs | |
706 | Description: | |
707 | ||
708 | The representation of a program point never expected to see more | |
709 | than 65536 instructions in a basic block! | |
710 | ||
711 | ---------------------------------------------------------------------- | |
712 | Name: Lal George | |
713 | Date: 2001/10/09 09:41:37 EDT | |
714 | Tag: george-20011008-mlrisc-labels | |
715 | Description: | |
716 | ||
717 | Changed the machine description files to support printing of | |
718 | local and global labels in assembly code, based on host assembler | |
719 | conventions. | |
720 | ||
721 | ---------------------------------------------------------------------- | |
722 | Name: Matthias Blume | |
723 | Date: 2001/09/25 15:25:00 EDT | |
724 | Tag: blume-20010925-exninfo | |
725 | Description: | |
726 | ||
727 | I provided a non-hook implementation of exnName (at the toplevel) and | |
728 | made the "dummy" implementation of exnMessage (at the toplevel) more | |
729 | useful: if nothing gets "hooked in", then at least you are going to | |
730 | see the exception name and a message indicating why you don't see more. | |
731 | ||
732 | [For the time being, programs that need exnMessage and want to use | |
733 | ml-build should either use General.exnMessage (strongly recommended) or | |
734 | refer to structure General at some other point so that CM sees a | |
735 | static dependency.] | |
736 | ||
737 | [Similar remarks go for "print" and "use": If you want to use their | |
738 | functionality in stand-alone programs generated by ml-build, then use | |
739 | TextIO.output and Backend.Interact.useFile (from $smlnj/compiler.cm).] | |
740 | ||
741 | ---------------------------------------------------------------------- | |
742 | Name: Matthias Blume | |
743 | Date: 2001/09/20 17:28:00 EDT | |
744 | Tag: blume-20010920-slowfp | |
745 | Description: | |
746 | ||
747 | Allen says that x86-fast-fp is not safe yet, so I turned it off again... | |
748 | ||
749 | ---------------------------------------------------------------------- | |
750 | Name: Matthias Blume | |
751 | Date: 2001/09/20 17:20:00 EDT | |
752 | Tag: blume-20010920-canonicalpaths | |
753 | Description: | |
754 | ||
755 | 0. Updated the BOOT file (something that I forgot to do earlier). | |
756 | ||
757 | 1. Small internal change to CM so that it avoids "/../" in filenames | |
758 | as much as possible (but only where it is safe). | |
759 | ||
760 | 2. Changed config/_run-sml (resulting in a changed bin/.run-sml) so | |
761 | that arguments that contain delimiters are passed through correctly. | |
762 | This change also means that all "special" arguments of the form | |
763 | @SMLxxx... must come first. | |
764 | ||
765 | 3. Changed install script to put relative anchor names for tool commands | |
766 | into pathconfig. | |
767 | ||
768 | ---------------------------------------------------------------------- | |
769 | Name: Matthias Blume | |
770 | Date: 2001/09/18 15:35:00 EDT | |
771 | Tag: blume-20010918-readme11036 | |
772 | Description: | |
773 | ||
774 | Added README files. | |
775 | ||
776 | ---------------------------------------------------------------------- | |
777 | Name: Matthias Blume | |
778 | Date: 2001/09/18 11:45:00 EDT | |
779 | Tag: Release_110_36 (retag) | |
780 | Description: | |
781 | ||
782 | Fixed mistake in config/preloads. Retagged as 110.36. | |
783 | ||
784 | ---------------------------------------------------------------------- | |
785 | Name: Matthias Blume | |
786 | Date: 2001/09/18 09:40:00 EDT | |
787 | Tag: Release_110_36_orig (tag changed) | |
788 | Description: | |
789 | ||
790 | New version (110.36). New bootfiles. | |
791 | ||
792 | ---------------------------------------------------------------------- | |
793 | Name: Matthias Blume | |
794 | Date: 2001/09/14 16:15:00 EDT | |
795 | Tag: blume-20010914-x86fastfp | |
796 | Description: | |
797 | ||
798 | John committed some changes that Allen made, in particular a (hopefully) | |
799 | correctly working version of the x86-fp module. | |
800 | ||
801 | I changed the default setting of the Control.MLRISC.getFlag "x86-fast-fp" | |
802 | flag to "true". Everything seems to compile to a fixpoint ok, and | |
803 | "mandelbrot" speeds up by about 15%. | |
804 | ||
805 | ---------------------------------------------------------------------- | |
806 | Name: Matthias Blume | |
807 | Date: 2001/09/13 11:20:00 EDT | |
808 | Tag: blume-20010913-minimal | |
809 | Description: | |
810 | ||
811 | 1. Stefan Monnier's patch to fix a miscompilation problem that | |
812 | was brought to light by John Reppy's work on Moby. | |
813 | ||
814 | 2. Implemented a minimal "structure Compiler" that contains just | |
815 | "version" and "architecture". The minimal version will be | |
816 | available when the full version is not. This is for backward- | |
817 | compatibility with code that wants to test Compiler.version. | |
818 | ||
819 | ---------------------------------------------------------------------- | |
820 | Name: Matthias Blume | |
821 | Date: 2001/08/28 14:03:00 EDT | |
822 | Tag: blume-20010828-ml-lex | |
823 | Description: | |
824 | ||
825 | Fix for bug 1581, received from Neophytos Michael. | |
826 | ||
827 | ---------------------------------------------------------------------- | |
828 | Name: Matthias Blume | |
829 | Date: 2001/08/27 11:20:00 EDT | |
830 | Tag: blume-20010827-readme11035 | |
831 | Description: | |
832 | ||
833 | Fleshed out the README file for 110.35. | |
834 | ||
835 | ---------------------------------------------------------------------- | |
836 | Name: Matthias Blume | |
837 | Date: 2001/08/24 17:10:00 EDT | |
838 | Tag: Release_110_35 | |
839 | Description: | |
840 | ||
841 | New version number (110.35). New bootfiles. | |
842 | ||
843 | ---------------------------------------------------------------------- | |
844 | Name: Lal George | |
845 | Date: 2001/08/24 13:47:18 EDT 2001 | |
846 | Tag: george-20010824-MLRISC-graphs | |
847 | Description: | |
848 | ||
849 | removed clusters from MLRISC completely and replaced with graphs. | |
850 | ||
851 | ---------------------------------------------------------------------- | |
852 | Name: Matthias Blume | |
853 | Date: 2001/08/23 17:50:00 EDT | |
854 | Tag: blume-20010823-toplevel | |
855 | Description: | |
856 | ||
857 | - some reorganization of the code that implements various kinds of | |
858 | environments in the compiler (static, dynamic, symbolic, combined) | |
859 | - re-implemented the EnvRef module so that evalStream works properly | |
860 | (if the stream contains references to "use", "CM.make", etc.) | |
861 | - cleaned up evalloop.sml and interact.sml (but they need more cleaning) | |
862 | ||
863 | ---------------------------------------------------------------------- | |
864 | Name: Matthias Blume | |
865 | Date: 2001/08/20 15:50 EDT | |
866 | Tag: blume20010820-slipup | |
867 | Description: | |
868 | ||
869 | I forgot to commit a few files. Here they are... | |
870 | ||
871 | ---------------------------------------------------------------------- | |
872 | Name: Matthias Blume | |
873 | Date: 2001/08/20 15:35:00 EDT | |
874 | Tag: blume-20010820-debugprof | |
875 | Description: | |
876 | ||
877 | !!!! NEW BOOTFILES !!!! | |
878 | ||
879 | This is another round of reorganizing the compiler sources. This | |
880 | time the main goal was to factor out all the "instrumentation" | |
881 | passes (for profiling and backtracing) into their own library. | |
882 | The difficulty was to do it in such a way that it does not depend | |
883 | on elaborate.cm but only on elabdata.cm. | |
884 | ||
885 | Therefore there have been further changes to both elaborate.cm and | |
886 | elabdata.cm -- more "generic" things have been moved from the former | |
887 | to the latter. As a result, I was forced to split the assignment | |
888 | of numbers indicating "primtyc"s into two portions: SML-generic and | |
889 | SML/NJ-specific. Since it would have been awkward to maintain, | |
890 | I bit the bullet and actually _changed_ the mapping between these | |
891 | numbers and primtycs. The bottom line of this is that you need | |
892 | a new set of bin- and bootfiles. | |
893 | ||
894 | I have built new bootfiles for all architectures, so doing a fresh | |
895 | checkout and config/install.sh should be all you need. | |
896 | ||
897 | The newly created library's name is | |
898 | ||
899 | $smlnj/viscomp/debugprof.cm | |
900 | ||
901 | and its sources live under | |
902 | ||
903 | src/compiler/DebugProf | |
904 | ||
905 | ---------------------------------------------------------------------- | |
906 | Name: Matthias Blume | |
907 | Date: 2001/08/15 17:15:00 EDT | |
908 | Tag: blume-20010815-compreorg | |
909 | Description: | |
910 | ||
911 | This is a first cut at reorganizing the CM libraries that make up the | |
912 | core of the compiler. The idea is to separate out pieces that could | |
913 | be used independently by tools, e.g., the parser, the typechecker, etc. | |
914 | ||
915 | The current status is a step in this direction, but it is not quite | |
916 | satisfactory yet. Expect more changes in the future. | |
917 | ||
918 | Here is the current (new) organization... | |
919 | ||
920 | What used to be $smlnj/viscomp/core.cm is now divided into | |
921 | six CM libraries: | |
922 | ||
923 | $smlnj/viscomp/basics.cm | |
924 | /parser.cm | |
925 | /elabdata.cm | |
926 | /elaborate.cm | |
927 | /execute.cm | |
928 | /core.cm | |
929 | ||
930 | The CM files for these libraries live under src/system/smlnj/viscomp. | |
931 | All these libraries are proxy libraries that contain precisely | |
932 | one CM library component. Here are the locations of the components | |
933 | (all within the src/compiler tree): | |
934 | ||
935 | Basics/basics.cm | |
936 | Parse/parser.cm | |
937 | ElabData/elabdata.cm | |
938 | Elaborator/elaborate.cm | |
939 | Execution/execute.cm | |
940 | core.cm | |
941 | ||
942 | [This organization is the same that has been used already | |
943 | for a while for the architecture-specific parts of the visible | |
944 | compiler and for the old version of core.cm.] | |
945 | ||
946 | As you will notice, many source files have been moved from their | |
947 | respective original locations to a new home in one of the above | |
948 | subtrees. | |
949 | ||
950 | The division of labor between the new libraries is the following: | |
951 | ||
952 | basics.cm: | |
953 | - Simple, basic definitions that pertain to many (or all) of | |
954 | the other libraries. | |
955 | parser.cm: | |
956 | - The SML parser, producing output of type Ast.dec. | |
957 | - The type family for Ast is also defined and exported here. | |
958 | elabdata.cm: | |
959 | - The datatypes that describe input and output of the elaborator. | |
960 | This includes types, absyn, and static environments. | |
961 | elaborator.cm: | |
962 | - The SML/NJ type checker and elaborator. | |
963 | This maps an Ast.dec (with a given static environment) to | |
964 | an Absyn.dec (with a new static environment). | |
965 | - This libraries implements certain modules that used to be | |
966 | structures as functors (to remove dependencies on FLINT). | |
967 | execute.cm: | |
968 | - Everything having to do with executing binary code objects. | |
969 | - Dynamic environments. | |
970 | core.cm: | |
971 | - SML/NJ-specific instantiations of the elaborator and MLRISC. | |
972 | - Top-level modules. | |
973 | - FLINT (this should eventually become its own library) | |
974 | ||
975 | Notes: | |
976 | ||
977 | I am not 100% happy with the way I separated the elaborator (and its | |
978 | data structures) from FLINT. Two instances of the same problem: | |
979 | ||
980 | 1. Data structures contain certain fields that carry FLINT-specific | |
981 | information. I hacked around this using exn and the property list | |
982 | module from smlnj-lib. But the fact that there are middle-end | |
983 | specific fields around at all is a bit annoying. | |
984 | ||
985 | 2. The elaborator calculates certain FLINT-related information. I tried | |
986 | to make this as abstract as I could using functorization, but, again, | |
987 | the fact that the elaborator has to perform calculations on behalf | |
988 | of the middle-end at all is not nice. | |
989 | ||
990 | 3. Having to used exn and property lists is unfortunate because it | |
991 | weakens type checking. The other alternative (parameterizing | |
992 | nearly *everything*) is not appealing, though. | |
993 | ||
994 | I removed the "rebinding =" warning hack because due to the new organization | |
995 | it was awkward to maintain it. As a result, the compiler now issues some of | |
996 | these warnings when compiling init.cmi during bootstrap compilation. On | |
997 | the plus side, you also get a warning when you do, for example: | |
998 | val op = = Int32.+ | |
999 | which was not the case up to now. | |
1000 | ||
1001 | I placed "assign" and "deref" into the _Core structure so that the | |
1002 | code that deals with the "lazy" keyword can find them there. This | |
1003 | removes the need for having access to the primitive environment | |
1004 | during elaboration. | |
1005 | ||
1006 | ---------------------------------------------------------------------- | |
1007 | Name: Matthias Blume | |
1008 | Date: 2001/08/13 | |
1009 | Tag: blume-20010813-closures | |
1010 | Description: | |
1011 | ||
1012 | This fix was sent to us by Zhong Shao. It is supposed to improve the | |
1013 | performance of certain loops by avoiding needless closure allocation. | |
1014 | ||
1015 | ---------------------------------------------------------------------- | |
1016 | Name: Lal George | |
1017 | Date: 2001/07/31 10:03:23 EDT 2001 | |
1018 | Tag: george-20010731-x86-fmalloc | |
1019 | Description: Fixed bug in x86 calls | |
1020 | ||
1021 | There was a bug where call instructions would mysteriously | |
1022 | vanish. The call instruction had to be one that returned | |
1023 | a floating point value. | |
1024 | ||
1025 | ---------------------------------------------------------------------- | |
1026 | Name: Lal George | |
1027 | Date: 2001/07/19 16:36:29 EDT 2001 | |
1028 | Tag: george-20010719-simple-cells | |
1029 | Description: | |
1030 | ||
1031 | I have dramatically simplified the interface for CELLS in MLRISC. | |
1032 | ||
1033 | In summary, the cells interface is broken up into three parts: | |
1034 | ||
1035 | 1. CellsBasis : CELLS_BASIS | |
1036 | ||
1037 | CellsBasis is a top level structure and common for all | |
1038 | architectures. it contains the definitions of basic datatypes | |
1039 | and utility functions over these types. | |
1040 | ||
1041 | 2. functor Cells() : CELLS | |
1042 | ||
1043 | Cells generates an interface for CELLS that incorporates the | |
1044 | specific resources on the target architecture, such as the | |
1045 | presence of special register classes, their number and size, | |
1046 | and various useful substructures. | |
1047 | ||
1048 | 3. <ARCH>CELLS | |
1049 | ||
1050 | e.g. SparcCells: SPARCCELLS | |
1051 | ||
1052 | <ARCH>CELLS usually contains additional bindings for special | |
1053 | registers on the architecture, such as: | |
1054 | ||
1055 | val r0 : cell (* register zero *) | |
1056 | val y : cell (* Y register *) | |
1057 | val psr : cell (* processor status register *) | |
1058 | ... | |
1059 | ||
1060 | The structure returned by applying the Cells functor is opened | |
1061 | in this interface. | |
1062 | ||
1063 | The main implication of all this is that the datatypes for cells is | |
1064 | split between CellsBasis and CELLS -- a fairly simple change for user | |
1065 | code. | |
1066 | ||
1067 | In the old scheme the CELLS interface had a definitional binding of | |
1068 | the form: | |
1069 | ||
1070 | signature CELLS = sig | |
1071 | ||
1072 | structure CellsBasis = CellsBasis | |
1073 | ||
1074 | ... | |
1075 | ||
1076 | end | |
1077 | ||
1078 | With all the sharing constraints that goes on in MLRISC, this old | |
1079 | design quickly leads to errors such as: | |
1080 | ||
1081 | "structure definition spec inside of sharing ... " | |
1082 | ||
1083 | ||
1084 | and appears to require an unacceptable amount of sharing and where | |
1085 | constraint hackery. | |
1086 | ||
1087 | I think this error message (the interaction of definitional specs and | |
1088 | sharing) requires more explanation on our web page. | |
1089 | ||
1090 | ---------------------------------------------------------------------- | |
1091 | Name: Matthias Blume | |
1092 | Date: 2001/07/19 15:00:00 EDT | |
1093 | Tag: blume-20010719-libreorg | |
1094 | Description: | |
1095 | ||
1096 | This update puts together a fairly extensive but straightforward change | |
1097 | to the way the libraries that implement the interactive system are | |
1098 | organized: | |
1099 | ||
1100 | The biggest change is the elimination of structure Compiler. As a | |
1101 | replacement for this structure, there is now a CM library | |
1102 | (known as $smlnj/compiler.cm or $smlnj/compiler/current.cm) | |
1103 | that exports all the substructures of the original structure Compiler | |
1104 | directly. So instead of saying Compiler.Foo.bar one now simply | |
1105 | says Foo.bar. (The CM libraries actually export a collection of | |
1106 | structures that is richer than the collection of substructures of | |
1107 | structure Compiler.) | |
1108 | ||
1109 | To make the transition smooth, there is a separate library called | |
1110 | $smlnj/compiler/compiler.cm which puts together and exports the | |
1111 | original structure Compiler (or at least something very close to it). | |
1112 | ||
1113 | There are five members of the original structure Compiler | |
1114 | that are not exported directly but which instead became members | |
1115 | of a new structure Backend (described by signature BACKEND). These are: | |
1116 | structure Profile (: PROFILE), structure Compile (: COMPILE), structure | |
1117 | Interact (: INTERACT), structure Machine (: MACHINE), and val | |
1118 | architecture (: string). | |
1119 | ||
1120 | Structure Compiler.Version has become structure CompilerVersion. | |
1121 | ||
1122 | Cross-compilers for alpha32, hppa, ppc, sparc, and x86 are provided | |
1123 | by $smlnj/compiler/<arch>.cm where <arch> is alpha32, hppa, ppc, sparc, | |
1124 | or x86, respectively. | |
1125 | Each of these exports the same frontend structures that | |
1126 | $smlnj/compiler.cm exports. But they do not have a structure Backend | |
1127 | and instead export some structure <Arch>Backend where <Arch> is Alpha32, | |
1128 | Hppa, PPC, Sparc, or X86, respectively. | |
1129 | ||
1130 | Library $smlnj/compiler/all.cm exports the union of the exports of | |
1131 | $smlnj/compiler/<arch>.cm | |
1132 | ||
1133 | There are no structures <Arch>Compiler anymore, use | |
1134 | $smlnj/compiler/<arch>.cm instead. | |
1135 | ||
1136 | Library host-compiler-0.cm is gone. Instead, the internal library | |
1137 | that instantiates CM is now called cm0.cm. Selection of the host | |
1138 | compiler (backend) is no longer done here but. (Responsibility for it | |
1139 | now lies with $smlnj/compiler/current.cm. This seems to be more | |
1140 | logical.) | |
1141 | ||
1142 | Many individual files have been moved or renamed. Some files have | |
1143 | been split into multiple files, and some "dead" files have been deleted. | |
1144 | ||
1145 | Aside from these changes to library organization, there are also changes | |
1146 | to the way the code itself is organized: | |
1147 | ||
1148 | Structure Binfile has been re-implemented in such a way that it no | |
1149 | longer needs any knowledge of the compiler. It exclusively deals | |
1150 | with the details of binfile layout. It no longer invokes the | |
1151 | compiler (for the purpose of creating new prospective binfile | |
1152 | content), and it no longer has any knowledge of how to interpret | |
1153 | pickles. | |
1154 | ||
1155 | Structure Compile (: COMPILE) has been stripped down to the bare | |
1156 | essentials of compilation. It no longer deals with linking/execution. | |
1157 | The interface has been cleaned up considerably. | |
1158 | ||
1159 | Utility routines for dealing with linking and execution have been | |
1160 | moved into their own substructures. | |
1161 | ||
1162 | (The ultimate goal of these changes is to provide a light-weight | |
1163 | binfile loader/linker (at least for, e.g., stable libraries) that | |
1164 | does not require CM or the compiler to be present.) | |
1165 | ||
1166 | CM documentation has been updated to reflect the changes to library | |
1167 | organization. | |
1168 | ||
1169 | ---------------------------------------------------------------------- | |
1170 | Name: Matthias Blume | |
1171 | Date: 2001/07/10 17:30:00 EDT | |
1172 | Tag: Release_110_34 | |
1173 | Description: | |
1174 | ||
1175 | Minor tweak to 110.34 (re-tagged): | |
1176 | ||
1177 | - README.html file added to CVS repository | |
1178 | - runtime compiles properly under FreeBSD 3.X and 4.X | |
1179 | ||
1180 | ---------------------------------------------------------------------- | |
1181 | Name: Matthias Blume | |
1182 | Date: 2001/07/10 17:30:00 EDT | |
1183 | Tag: Release_110_34 | |
1184 | Description: | |
1185 | ||
1186 | New version number (110.34). New bootfiles. | |
1187 | ||
1188 | ---------------------------------------------------------------------- | |
1189 | Name: Matthias Blume | |
1190 | Date: 2001/07/09 16:00:00 EDT | |
1191 | Tag: blume-20010709-more-varargs | |
1192 | Description: | |
1193 | ||
1194 | I changed the handling of varargs in ml-nlffigen again: | |
1195 | The ellipsis ... will now simply be ignored (with an accompanying warning). | |
1196 | ||
1197 | The immediate effect is that you can actually call a varargs function | |
1198 | from ML -- but you can't actually supply any arguments beyond the ones | |
1199 | specified explicitly. (For example, you can call printf with its format | |
1200 | string, but you cannot pass additional arguments.) | |
1201 | ||
1202 | This behavior is only marginally more useful than the one before, but | |
1203 | it has the advantage that a function or, more importantly, a function | |
1204 | type never gets dropped on the floor, thus avoiding follow-up problems with | |
1205 | other types that refer to the offending one. | |
1206 | ||
1207 | ---------------------------------------------------------------------- | |
1208 | Name: Matthias Blume | |
1209 | Date: 2001/07/09 11:25:00 EDT | |
1210 | Tag: blume-20010709-varargs | |
1211 | Description: | |
1212 | ||
1213 | 1. ckit-lib.cm now exports structure Error | |
1214 | 2. ml-nlffigen reports occurences of "..." (i.e., varargs function types) | |
1215 | with a warning accompanied by a source location. Moreover, it | |
1216 | merely skips the offending function or type and proceeds with the | |
1217 | rest of its work.u As a result, one can safely feed C code containing | |
1218 | "..." to ml-nlffigen. | |
1219 | 3. There are some internal improvements to CM, providing slightly | |
1220 | more general string substitutions in the tools subsystem. | |
1221 | ||
1222 | ---------------------------------------------------------------------- | |
1223 | Name: Matthias Blume | |
1224 | Date: 2001/06/27 15:10:00 EDT | |
1225 | Tag: blume-20010627-concur | |
1226 | Description: | |
1227 | ||
1228 | Fixed a small bug in CM's handling of parallel compilation. | |
1229 | (You could observe the bug by Control-C-interrupting an ordinary | |
1230 | CMB.make or CM.stabilize and then attaching some compile servers. | |
1231 | The result was that all of a sudden the previously interrupted | |
1232 | compilation would continue on its own. This was because of | |
1233 | an over-optimization: CM did not bother to clean out certain queues | |
1234 | when no servers were attached "anyway", resulting in the contents | |
1235 | of these queues to grab control when new servers did get attached.) | |
1236 | ||
1237 | There is also another minor update to the CM manual. | |
1238 | ||
1239 | ---------------------------------------------------------------------- | |
1240 | Name: Matthias Blume | |
1241 | Date: 2001/06/26 16:15:00 EDT | |
1242 | Tag: blume-20010626-cmdoc | |
1243 | Description: | |
1244 | ||
1245 | Minor typo fixed in CM manual (syntax diagram for libraries). | |
1246 | ||
1247 | ---------------------------------------------------------------------- | |
1248 | Name: Matthias Blume | |
1249 | Date: 2001/06/25 22:55:00 EDT | |
1250 | Tag: blume-20010625-x86pc | |
1251 | Description: | |
1252 | ||
1253 | Fixed a nasty bug in the X86 assembly code that caused signal | |
1254 | handlers to fail (crash) randomly. | |
1255 | ||
1256 | ---------------------------------------------------------------------- | |
1257 | Name: Matthias Blume | |
1258 | Date: 2001/06/25 12:05:00 EDT | |
1259 | Tag: blume-20010625-nlffigen | |
1260 | Description: | |
1261 | ||
1262 | This update fixes a number of minor bugs in ml-nlffigen as reported by | |
1263 | Nick Carter <nbc@andrew.cmu.edu>. | |
1264 | ||
1265 | 1. Silly but ok typedefs of the form "typedef void myvoid;" are now accepted. | |
1266 | 2. Default names for generated files are now derived from the name of | |
1267 | the C file *without its directory*. In particular, this causes generated | |
1268 | files to be placed locally even if the C file is in some system directory. | |
1269 | 3. Default names for generated signatures and structures are also derived | |
1270 | from the C file name without its directory. This avoids silly things | |
1271 | like "structure GL/GL". | |
1272 | (Other silly names are still possible because ml-nlffigen does not do | |
1273 | a thorough check of whether generated names are legal ML identifiers. | |
1274 | When in doubt, use command line arguments to force particular names.) | |
1275 | ||
1276 | ---------------------------------------------------------------------- | |
1277 | Name: Matthias Blume | |
1278 | Date: 2001/06/21 12:25:00 EDT | |
1279 | Tag: blume-20010621-eXene | |
1280 | Description: | |
1281 | ||
1282 | eXene now compiles and (sort of) works again. | |
1283 | ||
1284 | The library name (for version > 110.33) is $/eXene.cm. | |
1285 | ||
1286 | I also added an new example in src/eXene/examples/nbody. See the | |
1287 | README file there for details. | |
1288 | ||
1289 | ---------------------------------------------------------------------- | |
1290 | Name: Matthias Blume | |
1291 | Date: 2001/06/20 16:40:00 EDT | |
1292 | Tag: blume-20010620-cml | |
1293 | Description: | |
1294 | ||
1295 | CML now compiles and works again. | |
1296 | ||
1297 | Libraries (for version > 110.33): | |
1298 | ||
1299 | $cml/cml.cm Main CML library. | |
1300 | $cml/basis.cm CML's version of $/basis.cm. | |
1301 | $cml/cml-internal.cm Internal helper library. | |
1302 | $cml/core-cml.cm Internal helper library. | |
1303 | $cml-lib/trace-cml.cm Tracing facility. | |
1304 | $cml-lib/smlnj-lib.cm CML's version of $/smlnj-lib.cm | |
1305 | ||
1306 | The installer (config/install.sh) has been taught how to properly | |
1307 | install this stuff. | |
1308 | ||
1309 | ---------------------------------------------------------------------- | |
1310 | Name: Matthias Blume | |
1311 | Date: 2001/06/19 17:55:00 EDT | |
1312 | Tag: blume-20010619-instantiate | |
1313 | Description: | |
1314 | ||
1315 | This un-breaks the fix for bug 1432. | |
1316 | (The bug was originally fixed in 110.9 but I broke it again some | |
1317 | time after that.) | |
1318 | ||
1319 | ---------------------------------------------------------------------- | |
1320 | Name: Matthias Blume | |
1321 | Date: 2001/06/19 17:25:00 EDT | |
1322 | Tag: blume-20010619-signals | |
1323 | Description: | |
1324 | ||
1325 | This should (hopefully) fix the long-standing signal handling bug. | |
1326 | (The runtime system was constructing a continuation record with an | |
1327 | incorrect descriptor which would cause the GC to drop data on the floor...) | |
1328 | ||
1329 | ---------------------------------------------------------------------- | |
1330 | Name: Matthias Blume | |
1331 | Date: 2001/06/15 15:05:00 EDT | |
1332 | Tag: blume-20010615-moresparc | |
1333 | Description: | |
1334 | ||
1335 | Here is a short late-hour update related to Sparc c-calls: | |
1336 | ||
1337 | -- made handling of double-word arguments a bit smarter | |
1338 | ||
1339 | -- instruction selection phase tries to collapse certain clumsily | |
1340 | constructed ML-Trees; typical example: | |
1341 | ||
1342 | ADD(ty,ADD(_,e,LI d1),LI d2) -> ADD(ty,e,LI(d1+d2)) | |
1343 | ||
1344 | This currently has no further impact on SML/NJ since mlriscGen does | |
1345 | not seem to generate such patterns in the first place, and c-calls | |
1346 | (which did generate them in the beginning) has meanwhile been fixed | |
1347 | so as to avoid them as well. | |
1348 | ||
1349 | ---------------------------------------------------------------------- | |
1350 | Name: Matthias Blume | |
1351 | Date: 2001/06/15 15:05:00 EDT | |
1352 | Tag: blume-20010615-sparc | |
1353 | Description: | |
1354 | ||
1355 | The purpose of this update is to provide an implementation of NLFFI | |
1356 | on Sparc machines. | |
1357 | ||
1358 | Here are the changes in detail: | |
1359 | ||
1360 | * src/MLRISC/sparc/c-calls/sparc-c-calls.sml is a new file containing | |
1361 | the Sparc implementation of the c-calls API. | |
1362 | * The Sparc backend of SML/NJ has been modified to uniformely use %fp | |
1363 | for accessing the ML frame. Thus, we have a real frame pointer and | |
1364 | can freely modify %sp without need for an omit-frame-ptr phase. | |
1365 | The vfp logic in src/compiler/CodeGen/* has been changed to accomodate | |
1366 | this case. | |
1367 | * ml-nlffigen has been taught to produce code for different architectures | |
1368 | and calling conventions. | |
1369 | * In a way similar to what was done in the x86 case, the Sparc | |
1370 | backend uses its own specific extension to mltree. (For example, | |
1371 | it needs to be able to generate UNIMP instructions which are part | |
1372 | of the calling convention.) | |
1373 | * ml-nlffi-lib was reorganized to make it more modular (in particular, | |
1374 | to make it easier to plug in new machine- and os-dependent parts). | |
1375 | ||
1376 | There are some other fairly unrelated bug fixes and cleanups as well: | |
1377 | ||
1378 | * I further hacked the .cm files for MLRISC tools (like MDLGen) so | |
1379 | that they properly share their libraries with existing SML/NJ libraries. | |
1380 | * I fixed a minor cosmetic bug in CM, supressing certain spurious | |
1381 | follow-up error messages. | |
1382 | * Updates to CM/CMB documentation. | |
1383 | ||
1384 | TODO items: | |
1385 | ||
1386 | * MLRISC should use a different register as its asmTemp on the Sparc. | |
1387 | (The current %o2 is a really bad choice because it is part of the | |
1388 | calling conventions, so things might interfere in unexpected ways.) | |
1389 | ||
1390 | ---------------------------------------------------------------------- | |
1391 | Name: Matthias Blume | |
1392 | Date: 2001/06/07 | |
1393 | Tag: blume-20010607-calls | |
1394 | Description: | |
1395 | ||
1396 | A number of internal changes related to C calls and calling conventions: | |
1397 | ||
1398 | 1. ML-Tree CALL statements now carry a "pops" field. It indicates the | |
1399 | number of bytes popped implicitly (by the callee). In most cases | |
1400 | this field is 0 but on x86/win32 it is some non-zero value. This | |
1401 | is information provided for the benefit of the "omit-frameptr" pass. | |
1402 | 2. The CALL instruction on the x86 carries a similar "pops" field. | |
1403 | The instruction selection phase copies its value from the ML-Tree | |
1404 | CALL statement. | |
1405 | 3. On all other architectures, the instruction selection phase checks | |
1406 | whether "pops=0" and complains if not. | |
1407 | 4. The c-calls implementation for x86 now accepts two calling conventions: | |
1408 | "ccall" and "stdcall". When "ccall" is selected, the caller cleans | |
1409 | up after the call and pops is set to 0. For "stdcall", the caller | |
1410 | does nothing, leaving the cleanup to the callee; pops is set to | |
1411 | the number of bytes that were pushed onto the stack. | |
1412 | 5. The cproto decoder (compiler/Semant/types/cproto.sml) now can | |
1413 | distinguish between "ccall" and "stdcall". | |
1414 | 6. The UNIMP instruction has been added to the supported Sparc instruction | |
1415 | set. (This is needed for implementing the official C calling convention | |
1416 | on this architecture.) | |
1417 | 7. I fixed some of the .cm files under src/MLRISC/Tools to make them | |
1418 | work with the latest CM. | |
1419 | ||
1420 | ---------------------------------------------------------------------- | |
1421 | Name: Matthias Blume | |
1422 | Date: 2001/06/05 15:10:00 EDT | |
1423 | Tag: blume-20010605-cm-index | |
1424 | Description: | |
1425 | ||
1426 | 0. The "lambdasplit" parameter for class "sml" in CM has been documented. | |
1427 | ||
1428 | 1. CM can now generate "index files". These are human-readable files | |
1429 | that list on a per-.cm-file basis each toplevel symbol defined or | |
1430 | imported. The location of the index file for | |
1431 | <p>/<d>.cm is <p>/CM/INDEX/<d>.cm. | |
1432 | To enable index-file generation, set CM.Control.generate_index to true | |
1433 | or export an environment-symbol: export CM_GENERATE_INDEX=true. | |
1434 | ||
1435 | The CM manual has been updated accordingly. | |
1436 | ||
1437 | 2. I made some slight modifications to the c-calls API in MLRISC. | |
1438 | ||
1439 | a) There is now a callback to support saving/restoring of | |
1440 | dedicated but caller-save registers around the actual call | |
1441 | instruction. | |
1442 | b) One can optionally specify a comment-annotation for the | |
1443 | call instruction. | |
1444 | ||
1445 | 3. SML/NJ (mlriscGen.sml) uses this new API for the rawccall primop. | |
1446 | (For example, the comment annotation shows the C prototype of | |
1447 | the function being called.) | |
1448 | ||
1449 | ---------------------------------------------------------------------- | |
1450 | Name: Matthias Blume | |
1451 | Date: 2001/06/01 13:30:00 EDT | |
1452 | Tag: blume-20010601-nlffi-cleanup | |
1453 | Description: | |
1454 | ||
1455 | This is mostly a cleanup of MLFFI stuff: | |
1456 | ||
1457 | - some signature files have been put into a more exposed place | |
1458 | - the ugly 'f type parameter is gone (simplifies types tremendously!) | |
1459 | - ml-nlffigen changed accordingly | |
1460 | - tutorial updated | |
1461 | ||
1462 | Other changes: | |
1463 | ||
1464 | - author's affiliation in CM manual(s) updated | |
1465 | - some more recognized keywords added to Allen's sml.sty | |
1466 | ||
1467 | ---------------------------------------------------------------------- | |
1468 | Name: Matthias Blume | |
1469 | Date: 2001/05/25 15:30:00 EDT | |
1470 | Tag: blume-20010525-iptr | |
1471 | Description: | |
1472 | ||
1473 | - put the official 110.33-README (as it appears on the ftp server) under | |
1474 | CVS | |
1475 | - fixed a small bug related to incomplete pointer types in | |
1476 | ml-nlffigen | |
1477 | - small cosmetic change to the ml-nlffi-lib's "arr" type constructor | |
1478 | (it does not need the 'f type parameter) | |
1479 | ||
1480 | ---------------------------------------------------------------------- | |
1481 | Name: Matthias Blume | |
1482 | Date: 2001/05/23 14:30:00 EDT | |
1483 | Tag: Release_110_33 | |
1484 | Description: | |
1485 | ||
1486 | New version number (110.33). New bootfiles. | |
1487 | ||
1488 | ---------------------------------------------------------------------- | |
1489 | Name: Matthias Blume | |
1490 | Date: 2001/05/22 18:06:00 EDT | |
1491 | Tag: blume-20010522-targets | |
1492 | Description: | |
1493 | ||
1494 | Made install.sh use file config/targets.customized if it exists, falling | |
1495 | back to config/targets if it doesn't. This way one can have a customized | |
1496 | version of the targets file without touching the "real thing", thus | |
1497 | eliminating the constant fear of accidentally checking something bogus | |
1498 | back into the CVS repository... (File config/targets.customized must | |
1499 | not be added to the repository!) | |
1500 | ||
1501 | ---------------------------------------------------------------------- | |
1502 | Name: Matthias Blume | |
1503 | Date: 2001/05/22 16:30:00 EDT | |
1504 | Tag: blume-20010522-minitut | |
1505 | Description: | |
1506 | ||
1507 | 1. Bug fix in ml-nlffigen; now (hopefully) correctly handling | |
1508 | struct returns. | |
1509 | 2. Added src/ml-nlffi-lib/Doc/mini-tutorial.txt. This is some very | |
1510 | incomplete, preliminary documentation for NLFFI. | |
1511 | ||
1512 | ---------------------------------------------------------------------- | |
1513 | Name: Matthias Blume | |
1514 | Date: 2001/05/14 11:30:00 EDT | |
1515 | Tag: blume-20010514-script | |
1516 | Description: | |
1517 | ||
1518 | Some bugs in install script fixed. | |
1519 | ||
1520 | In addition to that I also made a slight change to the NLFFI API: | |
1521 | Functors generated by ml-nlffigen now take the dynamic library as a | |
1522 | straight functor argument, not as a suspended one. (The original | |
1523 | functor code used to force the suspension right away anyway, so there | |
1524 | was nothing gained by this complication of the interface.) | |
1525 | ||
1526 | ---------------------------------------------------------------------- | |
1527 | Name: Matthias Blume | |
1528 | Date: 2001/05/11 14:35:00 EDT | |
1529 | Tag: blume-20010511-ml-nlffi | |
1530 | Description: | |
1531 | ||
1532 | I finally took the plunge and added my new FFI code to the main | |
1533 | repository. For x86-linux it is now ready for prime-time. | |
1534 | ||
1535 | There are two new subdirectories of "src": | |
1536 | ||
1537 | - ml-nlffi-lib: | |
1538 | The utility library for programs using the FFI interface. | |
1539 | Here is the implementation of $/c.cm and its associated low-level | |
1540 | partners $/c-int.cm and $/memory.cm. | |
1541 | - ml-nlffigen: | |
1542 | A stand-alone program for generating ML glue code from C source | |
1543 | code. | |
1544 | ||
1545 | Building ml-nlffigen requires $/ckit-lib.cm. | |
1546 | ||
1547 | The config/install.sh script has been updates to do the Right Thing | |
1548 | (hopefully). | |
1549 | ||
1550 | Notice that the source tree for the C-Kit will not be put under "src" | |
1551 | but directly under the installation root directory. (This is the | |
1552 | structure that currently exists on the CVS server when you check out | |
1553 | module "sml".) Fortunately, config/install.sh knows about this oddity. | |
1554 | ||
1555 | Bugs: No documentation yet. | |
1556 | ||
1557 | ---------------------------------------------------------------------- | |
1558 | Name: Matthias Blume | |
1559 | Date: 2001/05/09 16:35:00 EDT | |
1560 | Tag: blume-20010509-cpscontract | |
1561 | Description: | |
1562 | ||
1563 | Fixed a bug in the accounting code in cpsopt/contract.sml. (The | |
1564 | wrapper/unwrapper elimination did not decrement usage counts and some | |
1565 | dead variables got overlooked by the dead-up logic.) | |
1566 | ||
1567 | ---------------------------------------------------------------------- | |
1568 | Name: Lal George | |
1569 | Date: 2001/05/08 17:26:09 EDT | |
1570 | Tag: george-20010508-omit-frameptr | |
1571 | Description: | |
1572 | ||
1573 | Changes to implement the omit-frame-pointer optimization to support | |
1574 | raw C calls. For now, there is only support on the Intel x86, but | |
1575 | other architectures will follow as more experience is gained with this. | |
1576 | ||
1577 | ||
1578 | ---------------------------------------------------------------------- | |
1579 | Name: Matthias Blume | |
1580 | Date: 2001/05/07 14:40:00 EDT | |
1581 | Tag: blume-20010507-proxies | |
1582 | Description: | |
1583 | ||
1584 | I made into "proxy libraries" all libraries that qualify for such a | |
1585 | change. (A qualifying library is a library that has another library or | |
1586 | groups as its sole member and repeats that member's export list | |
1587 | verbatim. A proxy library avoids this repetition by omitting its export | |
1588 | list, effectively inheriting the list that its (only) member exports. | |
1589 | See the CM manual for more explanation.) | |
1590 | The main effect is that explicit export lists for these libraries | |
1591 | do not have to be kepts in sync, making maintenance a bit easier. | |
1592 | ||
1593 | I also added copyright notices to many .cm-files. | |
1594 | ||
1595 | Last but not least, I made a new set of bootfiles. | |
1596 | ||
1597 | ---------------------------------------------------------------------- | |
1598 | Name: Matthias Blume | |
1599 | Date: 2001/05/04 17:00:00 EDT | |
1600 | Tag: blume-20010504-cm-lsplit | |
1601 | Description: | |
1602 | ||
1603 | 0. John merged pending changes to $/smlnj-lib.cm | |
1604 | ||
1605 | 1. Allen's previous change accidentally backed out of one of Lal's | |
1606 | earlier changes. I undid this mistake (re-introducing Lal's change). | |
1607 | ||
1608 | 2. I used the new topOrder' function from graph-scc.sml (from $/smlnj-lib.cm) | |
1609 | within the compiler where applicable. There is some code simplification | |
1610 | because of that. | |
1611 | ||
1612 | 3. The "split" phase (in FLINT) is now part of the default list of phases. | |
1613 | Compiler.Control.LambdaSplitting.* can be used to globally control the | |
1614 | lambda-splitting (cross-module-inlining) engine. In addition to that, | |
1615 | it can now also be controlled on a per-source basis: CM has been taught | |
1616 | a new tool parameter applicable to ML source files. | |
1617 | ||
1618 | - To turn lambda-splitting off completely: | |
1619 | local open Compiler.Control.LambdaSplitting in | |
1620 | val _ = set Off | |
1621 | end | |
1622 | - To make "no lambda-splitting" the global default (but allow per-source | |
1623 | overriding); this is the initial setting: | |
1624 | local open Compiler.Control.LambdaSplitting in | |
1625 | val _ = set (Default NONE) | |
1626 | end | |
1627 | - To make "lambda-splitting with aggressiveness a" the global default | |
1628 | (and allow per-source overriding): | |
1629 | local open Compiler.Control.LambdaSplitting in | |
1630 | val _ = set (Default (SOME a)) | |
1631 | end | |
1632 | ||
1633 | - To turn lambda-splitting off for a given ML souce file (say: a.sml) | |
1634 | write (in the respective .cm-file): | |
1635 | a.sml (lambdasplitting:off) | |
1636 | - To turn lambda-splitting for a.sml on with minimal aggressiveness: | |
1637 | a.sml (lambdasplitting:on) | |
1638 | - To turn lambda-splitting for a.sml on with aggressiveness <a> (where | |
1639 | <a> is a decimal non-negative integer): | |
1640 | a.sml (lambdasplitting:<a>) | |
1641 | - To turn lambda-splitting for a.sml on with maximal aggressiveness: | |
1642 | a.sml (lambdasplitting:infinity) | |
1643 | - To use the global default for a.sml: | |
1644 | a.sml (lambdasplitting:default) | |
1645 | or simply | |
1646 | a.sml | |
1647 | ||
1648 | ---------------------------------------------------------------------- | |
1649 | Name: Allen Leung | |
1650 | Date: 2001/05/04 01:57:00 EDT | |
1651 | Tag: leunga-20010504-sync | |
1652 | Description: | |
1653 | ||
1654 | MLRISC features. | |
1655 | ||
1656 | 1. Fix to CMPXCHG instructions. | |
1657 | 2. Changed RA interface to allow annotations in callbacks. | |
1658 | 3. Added a new method to the stream interface to allow annotations updates. | |
1659 | ||
1660 | ---------------------------------------------------------------------- | |
1661 | Name: Matthias Blume | |
1662 | Date: 2001/05/01 11:45:00 EDT | |
1663 | Tag: blume-20010501-pcedittmp | |
1664 | Description: | |
1665 | ||
1666 | Changed install.sh to use the current working directory instead of | |
1667 | /usr/tmp for a temporary file (pcedittmp). The previous choice | |
1668 | of /usr/tmp caused trouble with MacOS X because of file premission | |
1669 | problems. | |
1670 | ||
1671 | ---------------------------------------------------------------------- | |
1672 | Name: Matthias Blume | |
1673 | Date: 2001/04/20 11:10:00 EDT | |
1674 | Tag: blume-20010420-inMLflag | |
1675 | Description: | |
1676 | ||
1677 | - added vp_limitPtrMask to vproc-state.h | |
1678 | (for use by the raw-C-calls mechanism to implement proper interrupt | |
1679 | handling) | |
1680 | - made the ML compiler aware of various data-structure offsets so it | |
1681 | can generate code for accessing the vp_inML flag and vp_limitPtrMask | |
1682 | - tweaked mlriscGen.sml to have it emit interrupt-handling code for | |
1683 | raw C-calls | |
1684 | ||
1685 | ---------------------------------------------------------------------- | |
1686 | Name: Lal George | |
1687 | Date: 2001/04/20 09:15:28 EDT | |
1688 | Tag: george-20010420-macosX | |
1689 | Description: | |
1690 | ||
1691 | - Changes to port to Mac OS X; Darwin. | |
1692 | ||
1693 | - In the process I found that sqrt was broken on the PPC, because the | |
1694 | fsqrt instruction is not implemented. | |
1695 | ||
1696 | ---------------------------------------------------------------------- | |
1697 | Name: Matthias Blume | |
1698 | Date: 2001/04/18 12:45:00 EDT | |
1699 | Tag: blume-20010418-ccalls | |
1700 | Description: | |
1701 | ||
1702 | - fixed two off-by-4 errors in the x86-specific c-calls implementation | |
1703 | (this bug prevented structure arguments containing pointers from being | |
1704 | passed correctly) | |
1705 | - changed the raw-C-call code in mlriscGen.sml in such a way that | |
1706 | structure arguments are represented as a pointer to the beginning | |
1707 | of the structure (instead of having a series of synthesized arguments, | |
1708 | one for each structure member) | |
1709 | ||
1710 | - made makeml script's verbosity level configurable via environment | |
1711 | variable (MAKEML_VERBOSITY) | |
1712 | ||
1713 | - eliminated placeholder implementations for f32l, w16s, i16s, and f32s | |
1714 | in rawmem-x86.sml; we are now using the real thing | |
1715 | ||
1716 | ---------------------------------------------------------------------- | |
1717 | Name: Matthias Blume | |
1718 | Date: 2001/03/22 16:25:00 EST | |
1719 | Tag: blume-20010322-bootfiles | |
1720 | Description: | |
1721 | ||
1722 | Created a new set of bootfiles (for your automatic installation convenience). | |
1723 | ||
1724 | ---------------------------------------------------------------------- | |
1725 | Name: Matthias Blume | |
1726 | Date: 2001/03/22 15:10:00 EST | |
1727 | Tag: blume-20010322-rawmem-parcm | |
1728 | Description: | |
1729 | ||
1730 | 1. All "raw memory access" primitives for the new FFI are implemented now | |
1731 | (at least on the x86). | |
1732 | 2. Some further cleanup of CM's parallel make mechanism. | |
1733 | ||
1734 | ---------------------------------------------------------------------- | |
1735 | Name: Matthias Blume | |
1736 | Date: 2001/03/19 17:53:00 EST | |
1737 | Tag: blume-20010319-parallel | |
1738 | Description: | |
1739 | ||
1740 | Parallel make (using compile servers) now works again. | |
1741 | ||
1742 | To this end, CM.stabilize and CMB.make have been modified to work in | |
1743 | two passes when compile servers are attached: | |
1744 | 1. Compile everything, do not perform stabilization; this pass | |
1745 | uses compile servers | |
1746 | 2. Stabilize everything; this pass does not use compile servers | |
1747 | If there are no compile servers, the two passes are combined into one | |
1748 | (as before). Splitting the passes increases the inherent parallelism | |
1749 | in the dependency graph because the entire graph including all | |
1750 | libraries is available at the same time. This, in turn, improves | |
1751 | server utilization. The downside is that the master process will | |
1752 | have to do some extra work after compilation is done (because for | |
1753 | technical reasons it must re-read all the binfiles during stabilization). | |
1754 | ||
1755 | ---------------------------------------------------------------------- | |
1756 | Name: Matthias Blume | |
1757 | Date: 2001/03/16 12:22:00 EST | |
1758 | Tag: blume-20010316-bootfiles | |
1759 | Description: | |
1760 | ||
1761 | Created a new set of bootfiles (for your automatic installation convenience). | |
1762 | ||
1763 | ---------------------------------------------------------------------- | |
1764 | Name: Matthias Blume | |
1765 | Date: 2001/03/16 11:00:00 EST | |
1766 | Tag: blume-20010316-MLTREE-fixup | |
1767 | Description: | |
1768 | ||
1769 | This is a minor fixup for an (untagged) earlier commit by Allen. | |
1770 | (A file was missing). | |
1771 | ||
1772 | ---------------------------------------------------------------------- | |
1773 | Name: Allen Leung | |
1774 | Date: Mon Mar 5 18:54:57 EST 2001 | |
1775 | Tag: leunga-20010305-cut-support | |
1776 | ||
1777 | 1. New support for alternative control-flow in MLTREE. | |
1778 | Currently we support | |
1779 | ||
1780 | FLOW_TO(CALL ...., [k1,...,kn]) | |
1781 | ||
1782 | This is needed for 'cuts to' in C-- and try/handle-like constructs | |
1783 | in Moby | |
1784 | ||
1785 | New assembler flag "asm-show-cutsto" to turn on control-flow debugging. | |
1786 | ||
1787 | 2. Register Allocator | |
1788 | ||
1789 | Changes in interface [from Fermin, John] | |
1790 | ||
1791 | 3. Alpha 8-bit SLL support [Fermin] | |
1792 | ||
1793 | 4. All architectures | |
1794 | ||
1795 | A new module (ClusterExpandCopies) for expanding parallel copies. | |
1796 | ||
1797 | ---------------------------------------------------------------------- | |
1798 | Name: Allen Leung | |
1799 | Date: 2001/02/27 23:07:00 EST | |
1800 | Tag: leunga-20010227-minor-stuff | |
1801 | ||
1802 | 1. Alpha bug fix for CMOVNE | |
1803 | 2. Handle mltree COND(..,FCMP ...,...) | |
1804 | 3. Bug fix in simplifier | |
1805 | ||
1806 | ---------------------------------------------------------------------- | |
1807 | Name: Matthias Blume | |
1808 | Date: 2001/01/30 17:50:00 EST | |
1809 | Tag: blume-20010130-sync | |
1810 | Description: | |
1811 | ||
1812 | This is just a minor update to sync my devel branch with the main brach. | |
1813 | The only visible change is the addition of some README files. | |
1814 | ||
1815 | ---------------------------------------------------------------------- | |
1816 | Name: Matthias Blume | |
1817 | Date: 2001/01/12 23:30:00 JST | |
1818 | Tag: blume-20010112-bootfiles | |
1819 | Description: | |
1820 | ||
1821 | Made a new set of bootfiles that goes with the current state of the | |
1822 | repository. | |
1823 | ||
1824 | ---------------------------------------------------------------------- | |
1825 | Name: Matthias Blume | |
1826 | Date: 2001/01/12 21:20:00 JST | |
1827 | Tag: blume-20010112-sync | |
1828 | Description: | |
1829 | ||
1830 | I am just flushing out some minor changes that had accumulated in | |
1831 | my private branch in order to sync with the main tree. (This is | |
1832 | mainly because I had CVS trouble when trying to merge _into_ my | |
1833 | private branch.) | |
1834 | ||
1835 | Most people should be completely unaffected by this. | |
1836 | ||
1837 | ---------------------------------------------------------------------- | |
1838 | Name: Allen Leung | |
1839 | Date: Thu Jan 11 21:03:00 EST 2001 | |
1840 | Tag: leunga-20010111-labexp=mltree | |
1841 | Description: | |
1842 | ||
1843 | 1. Removed the type LabelExp and replace it by MLTree. | |
1844 | 2. Rewritten mltree-simplify with the pattern matcher tool. | |
1845 | 3. There were some bugs in alpha code generator which would break | |
1846 | 64-bit code generation. | |
1847 | 4. Redo the tools to generate code with the | |
1848 | 5. The CM files in MLRISC (and in src/system/smlnj/MLRISC) | |
1849 | are now generated by perl scripts. | |
1850 | ||
1851 | ---------------------------------------------------------------------- | |
1852 | Name: Matthias Blume | |
1853 | Date: 2001/01/10 21:55:00 JST | |
1854 | Tag: blume-20010110-rcc | |
1855 | Description: | |
1856 | ||
1857 | The RCC stuff now seems to work (but only on the x86). | |
1858 | This required hacking of the c-calls interface (and -implementation) in | |
1859 | MLRISC. | |
1860 | ||
1861 | Normal compiler users should be unaffected. | |
1862 | ||
1863 | ---------------------------------------------------------------------- | |
1864 | Name: Matthias Blume | |
1865 | Date: 2001/01/09 01:20:00 JST | |
1866 | Tag: blume-20010109-rcc | |
1867 | Description: | |
1868 | ||
1869 | This is a fairly big patch, flushing out a large number of pending | |
1870 | changes that I made to my development copy over the last couple of days. | |
1871 | ||
1872 | Of practical relevance at this moment is a workaround for a pickling | |
1873 | bug that Allen ran into the other day. The cause of the bug itself is | |
1874 | still unknown and it might be hard to fix it properly, but the | |
1875 | workaround has some merits of its own (namely somewhat reducing pickling | |
1876 | overhead for certain libraries). Therefore, I think this solution should | |
1877 | be satisfactory at this time. | |
1878 | ||
1879 | The rest of the changes (i.e., the vast majority) has to do with my | |
1880 | ongoing efforts of providing direct support for C function calls from | |
1881 | ML. At the moment there is a new primop "RAW_CCALL", typing magic | |
1882 | in types/cproto.sml (invoked from FLINT/trans/translate.sml), a new | |
1883 | case in the FLINT CPS datatype (RCC), changes to cps/convert.sml to | |
1884 | translate uses of RAW_CCALL into RCC, and changes to mlriscGen.sml to | |
1885 | handle RCC. | |
1886 | ||
1887 | The last part (the changes to mlriscGen.sml) are still known to be | |
1888 | wrong on the x86 and not implemented on all other architectures. But | |
1889 | the infrastructure is in place. I had to change a few functor | |
1890 | signatures in the backend to be able to route the CCalls interface | |
1891 | from MLRISC there, and I had to specialize the mltree type (on the | |
1892 | x86) to include the necessary extensions. (The extensions themselves | |
1893 | were already there and redy to go in MLRISC/x86). | |
1894 | ||
1895 | Everything should be very happy as soon as someone helps me with | |
1896 | mlriscGen.sml... | |
1897 | ||
1898 | In any case, nothing of this should matter to anyone as long as the | |
1899 | new primop is not being used (which is going to be the case unless you | |
1900 | find it where I hid it :). The rest of the compiler is completely | |
1901 | unaffected. | |
1902 | ||
1903 | ---------------------------------------------------------------------- | |
1904 | Name: Matthias Blume | |
1905 | Date: 2001/01/05 00:30:00 JST | |
1906 | Tag: blume-20010105-primops | |
1907 | Description: | |
1908 | ||
1909 | Added some experimental support for work that I am doing right now. | |
1910 | These changes mostly concern added primops, but there is also a new | |
1911 | experimental C library in the runtime system (but currently not enabled | |
1912 | anywhere except on Linux/X86). | |
1913 | ||
1914 | In the course of adding primops (and playing with them), I discovered that | |
1915 | Zhong's INL_PRIM hack (no type info for certain primops) was, in fact, badly | |
1916 | broken. (Zhong was very right he labeled this stuff as "major gross hack".) | |
1917 | To recover, I made type information in INL_PRIM mandatory and changed | |
1918 | prim.sml as well as built-in.sml accordingly. The InLine structure now | |
1919 | has complete, correct type information (i.e., no bottom types). | |
1920 | ||
1921 | Since all these changes mean that we need new binfiles, I also bumped the | |
1922 | version number to 110.32.1. | |
1923 | ||
1924 | ---------------------------------------------------------------------- | |
1925 | Name: Matthias Blume | |
1926 | Date: 2000/12/30 22:10:00 JST | |
1927 | Tag: blume-20001230-various | |
1928 | Description: | |
1929 | ||
1930 | Added proxy libraries for MLRISC and let MLRISC libraries refer | |
1931 | to each other using path anchors. (See CM manual for explanation.) | |
1932 | ||
1933 | Updated CM documentation. | |
1934 | ||
1935 | Fixed some bugs in CM. | |
1936 | ||
1937 | Implemented "proxy" libraries (= syntactic sugar for CM). | |
1938 | ||
1939 | Added "-quiet" option to makeml and changed runtime system accordingly. | |
1940 | ||
1941 | Added cleanup handler for exportML to reset timers and compiler stats. | |
1942 | ||
1943 | ---------------------------------------------------------------------- | |
1944 | Name: Lal George | |
1945 | Date: 2000/12/22 22:22:58 EST 2000 | |
1946 | Tag: Release_110_32 | |
1947 | Description: | |
1948 | ||
1949 | Infinite precision used throughout MLRISC. | |
1950 | see MLRISC/mltree/machine-int.sig | |
1951 | ||
1952 | ---------------------------------------------------------------------- | |
1953 | Name: Matthias Blume | |
1954 | Date: 2000/12/22 23:16:00 JST | |
1955 | Tag: blume-20001222-warn | |
1956 | Description: | |
1957 | ||
1958 | Corrected wording and formatting of some CM warning message which I | |
1959 | broke in my previous patch. | |
1960 | ||
1961 | ---------------------------------------------------------------------- | |
1962 | Name: Matthias Blume | |
1963 | Date: 2000/12/22 21:20:00 JST | |
1964 | Tag: blume-20001222-anchorenv | |
1965 | Description: | |
1966 | ||
1967 | Fixed CM's handling of anchor environments in connection with CMB.make. | |
1968 | ||
1969 | ---------------------------------------------------------------------- | |
1970 | Name: Matthias Blume | |
1971 | Date: 2000/12/22 13:15:00 JST | |
1972 | Tag: blume-20001222-cleanup | |
1973 | Description: | |
1974 | ||
1975 | Removed src/cm/ffi which does not (and did not) belong here. | |
1976 | ||
1977 | ---------------------------------------------------------------------- | |
1978 | Name: Matthias Blume | |
1979 | Date: 2000/12/21 23:55:00 JST | |
1980 | Tag: blume-20001221-exn | |
1981 | Description: | |
1982 | ||
1983 | Probably most important: CM no longer silently swallows all exceptions | |
1984 | in the compiler. | |
1985 | Plus: some other minor CM changes. For example, CM now reports some | |
1986 | sizes for generated binfiles (code, data, envpickle, lambdapickle). | |
1987 | ||
1988 | ---------------------------------------------------------------------- | |
1989 | Name: Matthias Blume | |
1990 | Date: 2000/12/15 00:01:05 JST | |
1991 | Tag: blume-20001215-dirtool | |
1992 | Description: | |
1993 | ||
1994 | - "dir" tool added. | |
1995 | - improvements and cleanup to Tools structure | |
1996 | - documentation updates | |
1997 | ||
1998 | ---------------------------------------------------------------------- | |
1999 | Name: Allen Leung | |
2000 | Date: Thu Dec 14 03:45:24 EST 2000 | |
2001 | Description: | |
2002 | Tag: leunga-20001214-int-inf | |
2003 | Description: | |
2004 | ||
2005 | In IntInf, added these standard functions, which are missing from our | |
2006 | implementation: | |
2007 | ||
2008 | andb : int * int -> int | |
2009 | xorb : int * int -> int | |
2010 | orb : int * int -> int | |
2011 | notb : int -> int | |
2012 | << : int * word -> int | |
2013 | ~>> : int * word -> int | |
2014 | ||
2015 | Not tested, I hope they are correct. | |
2016 | ||
2017 | ---------------------------------------------------------------------- | |
2018 | Name: Allen Leung | |
2019 | Date: Fri Dec 8 19:23:26 EST 2000 | |
2020 | Description: | |
2021 | Tag: leunga-20001208-nowhere | |
2022 | Description: | |
2023 | ||
2024 | Slight improvements to the 'nowhere' tool to handle OR-patterns, | |
2025 | to generate better error messages etc. Plus a brief manual. | |
2026 | ||
2027 | ---------------------------------------------------------------------- | |
2028 | Name: Lal George | |
2029 | Date: 2000/12/08 09:54:02 EST 2000 | |
2030 | Tag: Release_110_31 | |
2031 | Description: | |
2032 | ||
2033 | - Version 110.31 | |
2034 | ---------------------------------------------------------------------- | |
2035 | Name: Allen Leung | |
2036 | Date: Thu Dec 7 22:01:04 EST 2000 | |
2037 | Tag: leunga-20001207-cell-monster-hack | |
2038 | Description: | |
2039 | ||
2040 | Major MLRISC internal changes. Affect all clients. | |
2041 | Summary: | |
2042 | ||
2043 | 1. Type CELLS.cell = int is now replaced by a datatype. | |
2044 | As a result, the old regmap is now gone. Almost all interfaces | |
2045 | in MLRISC change as a consequence. | |
2046 | ||
2047 | 2. A new brand version of machine description tool (v3.0) that generates | |
2048 | modules expecting the new interface. The old version is removed. | |
2049 | ||
2050 | 3. The RA interface has been further abstracted into two new functors. | |
2051 | RISC_RA and X86RA. These functors have much simpler interfaces. | |
2052 | [See also directory MLRISC/demo.] | |
2053 | ||
2054 | 4. Some other new source->source code generation tools are available: | |
2055 | ||
2056 | a. MLRISC/Tools/RewriteGen -- generate rewriters from rules. | |
2057 | b. MLRISC/Tools/WhereGen -- expands conditional pattern matching rules. | |
2058 | I use this tool to generate the peephole optimizers---with the new | |
2059 | cell type changes, peephole rules are becoming difficult to write | |
2060 | without conditional pattern matching. | |
2061 | ||
2062 | 5. More Intmap -> IntHashTable change. Previous changes by Matthias didn't | |
2063 | cover the entire MLRISC source tree so many things broke. | |
2064 | ||
2065 | 6. CM files have been moved to the subdirectory MLRISC/cm. | |
2066 | They are moved because there are a lot of them and they clutter up the | |
2067 | root dir. | |
2068 | ||
2069 | 7. More detailed documentation to come... | |
2070 | ||
2071 | NOTE: To rebuild from 110.30 (ftp distribution), you'll have to do | |
2072 | a makeml -rebuild first. This is because of other other | |
2073 | changes that Matthias has made (see below). | |
2074 | ||
2075 | ||
2076 | ---------------------------------------------------------------------- | |
2077 | Name: Matthias Blume | |
2078 | Date: 2000/11/30 23:12:00 JST | |
2079 | Tag: blume-20001130-filereorg | |
2080 | Description: | |
2081 | ||
2082 | Some manual updates and some file reorganizations in CM. | |
2083 | ||
2084 | ---------------------------------------------------------------------- | |
2085 | Name: Matthias Blume | |
2086 | Date: 2000/11/24 17:45:00 JST | |
2087 | Tag: blume-20001124-link | |
2088 | Description: | |
2089 | ||
2090 | Drastically improved link traversal code for the case that the dynamic | |
2091 | value was already loaded at bootstrap time. As a result, CM and CMB | |
2092 | now both load blazingly fast -- even on a very slow machine. Also, | |
2093 | memory consumption has been further reduced by this. | |
2094 | ||
2095 | Warning: The format of the PIDMAP file has changed. THerefore, to | |
2096 | bootstrap you have to do this: | |
2097 | ||
2098 | 1. Run CMB.make | |
2099 | 2. Make a symbolic link for the boot directory: | |
2100 | ln -s sml.boot.ARCH-OS xxx | |
2101 | 3. "Rebuild" the boot directory: | |
2102 | ./makeml -boot xxx -rebuild sml ; rm xxx | |
2103 | 4. Boot normally: | |
2104 | ./makeml | |
2105 | ||
2106 | ---------------------------------------------------------------------- | |
2107 | Name: Matthias Blume | |
2108 | Date: 2000/11/21 21:20:00 JST | |
2109 | Tag: blume-20001121-tools | |
2110 | Description: | |
2111 | ||
2112 | Continued hacking on autoloading problem -- with success this time. | |
2113 | Also changed tool-plugin mechanism. See new CM manual. | |
2114 | ||
2115 | ---------------------------------------------------------------------- | |
2116 | Name: Matthias Blume | |
2117 | Date: 2000/11/19 14:30:00 JST | |
2118 | Tag: blume-20001119-autoload | |
2119 | Description: | |
2120 | ||
2121 | Some hacking to make autoloading faster. Success for CMB, no success | |
2122 | so far for CM. There is a reduced structure CM' that autoloads faster. | |
2123 | (This is a temporary, non-documented hack to be eliminated again when | |
2124 | the general problem is solved.) | |
2125 | ||
2126 | ---------------------------------------------------------------------- | |
2127 | Name: Matthias Blume | |
2128 | Date: 2000/11/17 14:10:00 JST | |
2129 | Tag: blume-20001117-pickle-lib | |
2130 | Description: | |
2131 | ||
2132 | 1. Eliminated comp-lib.cm | |
2133 | 2. Made pickle-lib.cm | |
2134 | 3. Eliminated all uses of intset.sml (from comp-lib.cm) | |
2135 | 4. Replaced all uses of intmap.{sig,sml} (from comp-lib.cm) with | |
2136 | equivalent constructs from smlnj-lib.cm (INtHashTable). | |
2137 | 5. Point 4. also goes for those uses of intmap.* in MLRISC. | |
2138 | Duplicated intmap modules thrown out. | |
2139 | 6. Hunted down all duplicated SCC code and replaced it with | |
2140 | equivalent stuff (GraphSCCFn from smlnj-lib.cm). | |
2141 | 7. Rewrote Feedback module. | |
2142 | 8. Moved sortedlist.sml into viscomp-lib.cm. Eventually it | |
2143 | should be thrown out and equivalent modules from smlnj-lib.cm | |
2144 | should be used (IntRedBlackSet, IntListSet, ...). | |
2145 | ||
2146 | Confirmed that compiler compiles to fixpoint. | |
2147 | ||
2148 | ---------------------------------------------------------------------- | |
2149 | Name: Allen Leung | |
2150 | Date: 2000/11/10 18:00:00 | |
2151 | Tag: leunga-20001110-new-x86-fp | |
2152 | ||
2153 | A new x86 floating point code generator has been added. | |
2154 | By default this is turned off. To turn this on, do: | |
2155 | ||
2156 | CM.autoload "$smlnj/compiler.cm"; | |
2157 | Compiler.Control.MLRISC.getFlag "x86-fast-fp" := true; | |
2158 | ||
2159 | Changes: | |
2160 | ||
2161 | 1. Changed FTAN to FPTAN so that the assembly output is correct. | |
2162 | 2. Changed the extension callback for FTANGENT to generate: | |
2163 | ||
2164 | fptan | |
2165 | fstp %st(0) | |
2166 | instead of | |
2167 | fptan | |
2168 | fstpl ftempmem | |
2169 | ||
2170 | 3. Numerous assembly fixes for x86. | |
2171 | ||
2172 | 5. Cleaned up the machine code output module x86/x86MC.sml and added | |
2173 | support for a whole bunch of instructions and addressing modes: | |
2174 | ||
2175 | fadd/fsub/fsubr/fmul/fdiv/fdivr %st, %st(n) | |
2176 | faddp/fsubp/fsubrp/fmulp/fdivp/fdivrp %st, %st(n) | |
2177 | fadd/fsub/fsubr/fmul/fdiv/fdivr %st(n), %st | |
2178 | fiadd/fisub/fisubr/fimul/fidiv/fidivr mem | |
2179 | fxch %st(n) | |
2180 | fld %st(n) | |
2181 | fst %st(n) | |
2182 | fst mem | |
2183 | fstp %st(n) | |
2184 | fucom %st(n) | |
2185 | fucomp %st(n) | |
2186 | ||
2187 | All these are now generated when the fast fp mode is turned on. | |
2188 | ||
2189 | 6. Removed the dedicated registers %st(0), ..., %st(7) from X86CpsRegs | |
2190 | ||
2191 | ---------------------------------------------------------------------- | |
2192 | Name: Matthias Blume | |
2193 | Date: 2000/11/09 11:20:00 JST | |
2194 | Tag: blume-20001109-scc | |
2195 | Description: | |
2196 | ||
2197 | Eliminated some code duplication: | |
2198 | ||
2199 | 1. Added "where" clause to GraphSCCFn in SML/NJ Library. | |
2200 | (Otherwise the functor is useless.) | |
2201 | 2. Used GraphSCCFn where SCCUtilFun was used previously. | |
2202 | 3. Got rid of SCCUtilFun (in comp-lib.cm). | |
2203 | ||
2204 | ---------------------------------------------------------------------- | |
2205 | Name: Lal George | |
2206 | Date: 2000/11/06 09:02:21 EST 2000 | |
2207 | Tag: Release_110_30 | |
2208 | Description: | |
2209 | ||
2210 | - Version 110.30 | |
2211 | ---------------------------------------------------------------------- | |
2212 | Name: Matthias Blume | |
2213 | Date: 2000/11/04 14:45:00 | |
2214 | Tag: blume-20001104-mlbuild | |
2215 | Description: | |
2216 | ||
2217 | - Made ml-build faster on startup. | |
2218 | - Documentation fixes. | |
2219 | ||
2220 | ---------------------------------------------------------------------- | |
2221 | Name: Matthias Blume | |
2222 | Date: 2000/11/02 17:00:00 JST | |
2223 | Tag: blume-20001102-condcomp | |
2224 | Description: | |
2225 | ||
2226 | - Small tweaks to pickler -- new BOOTFILES! | |
2227 | - Version bumped to 110.29.2. | |
2228 | - Added conditional compilation facility to init.cmi (see comment there). | |
2229 | ---------------------------------------------------------------------- | |
2230 | Name: Allen Leung | |
2231 | Date: 2000/10/23 19:31:00 | |
2232 | Tag: leunga-20001023-demo-ra | |
2233 | ||
2234 | 1. Minor RA changes that improves spilling on x86 (affects Moby and C-- only) | |
2235 | 2. Test programs for the graph library updated | |
2236 | 3. Some new MLRISC demo programs added | |
2237 | ||
2238 | ---------------------------------------------------------------------- | |
2239 | Name: Matthias Blume | |
2240 | Date: 2000/08/31 22:15:00 JST | |
2241 | Tag: blume-20001017-errmsg | |
2242 | Description: | |
2243 | ||
2244 | More error message grief: Where there used to be no messages, there | |
2245 | now were some that had bogus error regions. Fixed. | |
2246 | ||
2247 | ---------------------------------------------------------------------- | |
2248 | Name: Matthias Blume | |
2249 | Date: 2000/08/31 17:30:00 JST | |
2250 | Tag: blume-20001017-v110p29p1 | |
2251 | Description: | |
2252 | ||
2253 | I made a version 110.29.1 with new bootfiles. | |
2254 | ||
2255 | Changes: Modified pickler/unpickler for faster and leaner unpickling. | |
2256 | CM documentation changes and a small bugfix in CM's error reporting. | |
2257 | ||
2258 | ---------------------------------------------------------------------- | |
2259 | Name: Lal George | |
2260 | Date: 2000/09/27 14:42:35 EDT | |
2261 | Tag: george-20000927-nodestatus | |
2262 | Description: | |
2263 | ||
2264 | Changed the type of the nodestatus, so that: | |
2265 | ||
2266 | SPILLED(~1) is now SPILLED | |
2267 | SPILLED(m) where m>=0 is now MEMREG(m) | |
2268 | SPILLED(s) where s<~1 is now SPILL_LOC(~s) | |
2269 | ||
2270 | ---------------------------------------------------------------------- | |
2271 | Name: Matthias Blume | |
2272 | Date: 2000/09/07 14:45:00 JST | |
2273 | Tag: blume-20000907-cmerrmsg | |
2274 | Description: | |
2275 | ||
2276 | Small tweak to CM to avoid getting ML syntax error messages twice. | |
2277 | ||
2278 | ---------------------------------------------------------------------- | |
2279 | Name: Matthias Blume | |
2280 | Date: 2000/08/31 18:00:00 JST | |
2281 | Tag: blume-20000831-cvsbootfiles | |
2282 | Description: | |
2283 | ||
2284 | New URL for boot files (because the 110.29 files on the BL server do | |
2285 | now work correctly with my updated install scripts for yacc and lex). | |
2286 | ||
2287 | ---------------------------------------------------------------------- | |
2288 | Name: Matthias Blume | |
2289 | Date: 2000/08/08 12:33:00 JST | |
2290 | Tag: blume-20000808-manual | |
2291 | Description: | |
2292 | ||
2293 | Tiny update to CM manual. | |
2294 | ||
2295 | ---------------------------------------------------------------------- | |
2296 | Name: Allen Leung | |
2297 | Date: 2000/08/7 19:31:00 | |
2298 | Tag: leunga-20000807-a-whole-bunch-of-stuff | |
2299 | ||
2300 | Moby, C--, SSA, x86, machine descriptions etc. Should only affect C-- | |
2301 | and Mobdy. | |
2302 | ||
2303 | 1. x86 | |
2304 | ||
2305 | a. Fixes to peephole module by John and Dan. | |
2306 | b. Assembly fix to SETcc by Allen. | |
2307 | c. Fix to c-call by John. | |
2308 | d. Fix to spilling by John. (This one deals with the missing FSTPT case) | |
2309 | e. Instruction selection optimization to SETcc as suggested by John. | |
2310 | ||
2311 | For example, | |
2312 | ||
2313 | MV(32, x, COND(32, CMP(32, LT, a, b), LI 1, LI 0)) | |
2314 | ||
2315 | should generate: | |
2316 | ||
2317 | MOVL a, x | |
2318 | SUBL b, x | |
2319 | SHRL 31, x | |
2320 | ||
2321 | 2. IR stuff | |
2322 | ||
2323 | A bunch of new DJ-graph related algorithms added. These | |
2324 | speed up SSA construction. | |
2325 | ||
2326 | 3. SSA + Scheduling | |
2327 | ||
2328 | Added code for SSA and scheduling to the repository | |
2329 | ||
2330 | ---------------------------------------------------------------------- | |
2331 | Name: Lal George | |
2332 | Date: 2000/07/27 11:53:14 EDT | |
2333 | ||
2334 | Tag: lal-20000727-linux-ppc | |
2335 | Description: | |
2336 | ||
2337 | Made changes to support Linux PPC. | |
2338 | p.s. I have confirmation that the 110.29 boot files work fine. | |
2339 | ||
2340 | ---------------------------------------------------------------------- | |
2341 | Name: Matthias Blume | |
2342 | Date: 2000/07/27 17:40:00 JST | |
2343 | Tag: blume-20000727-scripts | |
2344 | Description: | |
2345 | ||
2346 | !!!! WARNING !!!! | |
2347 | You must recompile the runtime system! | |
2348 | !!!! WARNING !!!! | |
2349 | ||
2350 | This is basically another round of script-enhancements: | |
2351 | ||
2352 | 1. sml, ml-build, and ml-makedepend accept options -D and -U to define | |
2353 | and undefine CM preprocessor symbols. | |
2354 | ||
2355 | 2. ml-build avoids generating a new heap image if it finds that the | |
2356 | existing one is still ok. (The condition is that no ML file had to | |
2357 | be recompiled and all ML files are found to be older that the heap | |
2358 | file.) | |
2359 | ||
2360 | To make this work smoothly, I also hacked the runtime system as | |
2361 | well as SMLofNJ.SysInfo to get access to the heap image suffix | |
2362 | (.sparc-solaris, ...) that is currently being used. | |
2363 | ||
2364 | Moreover, the signature of CM.mk_standalone has changed. See the | |
2365 | CM manual. | |
2366 | ||
2367 | 3. ml-makedepend accepts additional options -n, -a, and -o. (See the | |
2368 | CM manual for details.) | |
2369 | ||
2370 | 4. More CM manual updates: | |
2371 | - all of the above has been documented. | |
2372 | - there is now a section describing the (CM-related) command line | |
2373 | arguments that are accepted by the "sml" command | |
2374 | ||
2375 | ---------------------------------------------------------------------- | |
2376 | Name: Matthias Blume | |
2377 | Date: 2000/07/25 16:20:00 JST | |
2378 | Tag: blume-20000725-makedepend | |
2379 | Description: | |
2380 | ||
2381 | Added a script called ml-makedepend. This can be used in makefiles | |
2382 | for Unix' make in a way very similar to the "makedepend" command for | |
2383 | C. | |
2384 | ||
2385 | The script internally uses function CM.sources. | |
2386 | ||
2387 | Synopsis: | |
2388 | ||
2389 | ml-makedepend [-f makefile] cmfile targetname | |
2390 | ||
2391 | The default for the makefile is "makefile" (or "Makefile" should | |
2392 | "makefile" not exist). | |
2393 | ||
2394 | ml-makedepend adds a cmfile/targetname-specific section to this | |
2395 | makefile (after removing the previous version of this section). The | |
2396 | section contains a single dependency specification with targetname on | |
2397 | the LHS (targetname is an arbitrary name), and a list of files derived | |
2398 | from the cmfile on the RHS. Some of the files on the RHS are | |
2399 | ARCH/OPSYS-specific. Therefore, ml-makedepend inserts references to | |
2400 | "make" variables $(ARCH) and $(OPSYS) in place of the corresponding | |
2401 | path names. The makefile writer is responsible for making sure that | |
2402 | these variables have correct at the time "make" is invoked. | |
2403 | ||
2404 | ---------------------------------------------------------------------- | |
2405 | Name: Matthias Blume | |
2406 | Date: 2000/07/22 23:30:00 JST | |
2407 | Tag: blume-20000722-urlupdate | |
2408 | Description: | |
2409 | ||
2410 | Changed BOOT and config/srcarchiveurl to point to BL server: | |
2411 | ||
2412 | ftp://ftp.research.bell-labs.com/dist/smlnj/working/110.29/ | |
2413 | ||
2414 | ---------------------------------------------------------------------- | |
2415 | Name: Matthias Blume | |
2416 | Date: 2000/07/18 18:00:00 JST | |
2417 | Tag: blume-20000718-Version_110_29 | |
2418 | Description: | |
2419 | ||
2420 | 1. Updated src/compiler/TopLevel/main/version.sml to version 110.29 | |
2421 | ||
2422 | 2. Updated config/version to 110.29 | |
2423 | ||
2424 | 3. Updated config/srcarchiveurl | |
2425 | ||
2426 | 3. New boot files! | |
2427 | ftp://ftp.cs.princeton.edu/pub/people/blume/sml/110.29-autofetch | |
2428 | ||
2429 | ---------------------------------------------------------------------- | |
2430 | Name: Matthias Blume | |
2431 | Date: 2000/07/11 13:58:00 JST | |
2432 | Tag: blume-20000711-doctypo | |
2433 | Description: | |
2434 | ||
2435 | Fixed a few typos in CM manual. | |
2436 | ||
2437 | ---------------------------------------------------------------------- | |
2438 | Name: Allen Leung | |
2439 | Date: 2000/06/15 00:38:00 | |
2440 | Tag: leunga-20000704-sparc-x86 | |
2441 | ||
2442 | 1. x86 peephole improvement sp += k; sp -= k => nop [from John] | |
2443 | 2. fix to x86 RET bug [found by Dan Grossman] | |
2444 | 3. sparc assembly bug fix for ticc instructions [found by Fermin] | |
2445 | ||
2446 | Affects c-- and moby only | |
2447 | ||
2448 | ---------------------------------------------------------------------- | |
2449 | Name: Matthias Blume | |
2450 | Date: 2000/07/04 15:26:00 | |
2451 | Tag: blume-20000704-trigger | |
2452 | Description: | |
2453 | ||
2454 | 1. Improvements to CM manual. | |
2455 | 2. SMLofNJ.Internals.BTrace.trigger reinstated as an alternative way | |
2456 | of getting a back-trace. The function, when called, raises an | |
2457 | internal exception which explicitly carries the full back-trace history, | |
2458 | so it is unaffected by any intervening handle-raise pairs ("trivial" | |
2459 | or not). The interactive loop will print that history once it arrives | |
2460 | at top level. | |
2461 | Short of having all exceptions implicitly carry the full history, the | |
2462 | recommended way of using this facility is: | |
2463 | - compile your program with instrumentation "on" | |
2464 | - run it, when it raises an exception, look at the history | |
2465 | - if the history is "cut off" because of some handler, go and modify | |
2466 | your program so that it explicitly calls BTrace.trigger | |
2467 | - recompile (still instrumented), and rerun; look at the full history | |
2468 | ||
2469 | ---------------------------------------------------------------------- | |
2470 | Name: Matthias Blume | |
2471 | Date: 2000/07/03 15:36:00 JST | |
2472 | Tag: blume-20000702-manual | |
2473 | Description: | |
2474 | ||
2475 | Small corrections and updates to CM manual. | |
2476 | ||
2477 | ---------------------------------------------------------------------- | |
2478 | Name: Matthias Blume | |
2479 | Date: 2000/06/29 16:04:00 JST | |
2480 | Tag: blume-20000629-yacctool | |
2481 | Description: | |
2482 | ||
2483 | Changes: | |
2484 | ||
2485 | 1. Class "mlyacc" now takes separate arguments to pass options to | |
2486 | generated .sml- and .sig-files independently. | |
2487 | 2. Corresponding CM manual updates. | |
2488 | 3. BTrace module now also reports call sites. (However, for loop clusters | |
2489 | it only shows from where the cluster was entered.) There are associated | |
2490 | modifications to core.sml, internals.{sig,sml}, btrace.sml, and btimp.sml. | |
2491 | ||
2492 | ---------------------------------------------------------------------- | |
2493 | Name: Matthias Blume | |
2494 | Date: 2000/06/27 16:51:00 JST | |
2495 | Tag: blume-20000627-noweb | |
2496 | Description: | |
2497 | ||
2498 | Changes: | |
2499 | ||
2500 | 1. Implemented "subdir" and "witness" options for noweb tool. | |
2501 | This caused some slight internal changes in CM's tool implementation. | |
2502 | 2. Fixed bug in "tool plugin" mechanism. This is essentially cleaning | |
2503 | some remaining issues from earlier path anchor changes. | |
2504 | 3. Updated CM manual accordingly. | |
2505 | ||
2506 | 4. Changed implementation of back-tracing so that I now consider it | |
2507 | ready for prime-time. | |
2508 | ||
2509 | In particular, you don't have to explicitly trigger the back-trace | |
2510 | anymore. Instead, if you are running BTrace-instrumented code and | |
2511 | there is an uncaught exception (regardless of whether or not it was | |
2512 | raised in instrumented code), the top-level evalloop will print | |
2513 | the back-trace. | |
2514 | ||
2515 | Features: | |
2516 | ||
2517 | - Instrumented and uninstrumented code work together seemlessly. | |
2518 | (Of course, uninstrumented code is never mentioned in actual | |
2519 | back-traces.) | |
2520 | ||
2521 | - Asymptotic time- and space-complexity of instrumented code is | |
2522 | equal to that of uninstrumented code. (This means that | |
2523 | tail-recursion is preserved by the instrumentation phase.) | |
2524 | ||
2525 | - Modules whose code has been instrumented in different sessions | |
2526 | work together without problem. | |
2527 | ||
2528 | - There is no penalty whatsoever on uninstrumented code. | |
2529 | ||
2530 | - There is no penalty on "raise" expressions, even in | |
2531 | instrumented code. | |
2532 | ||
2533 | A potential bug (or perhaps it is a feature, too): | |
2534 | ||
2535 | A back-trace reaches no further than the outermost instrumented | |
2536 | non-trivial "raise". Here, a "trivial" raise is one that is the | |
2537 | sole RHS of a "handle" rule. Thus, back-traces reach trough | |
2538 | ||
2539 | <exp> handle e => raise e | |
2540 | ||
2541 | and even | |
2542 | ||
2543 | <exp> handle Foo => raise Bar | |
2544 | ||
2545 | and, of course, through | |
2546 | ||
2547 | <exp> handle Foo => ... | |
2548 | ||
2549 | if the exception was not Foo. | |
2550 | ||
2551 | Back-traces always reach right through any un-instrumented code | |
2552 | including any of its "handle" expressions, trivial or not. | |
2553 | ||
2554 | To try this out, do the following: | |
2555 | ||
2556 | - Erase all existing binfiles for your program. | |
2557 | (You may keep binfiles for those modules where you think you | |
2558 | definitely don't need back-tracing.) | |
2559 | - Turn on back-trace instrumentation: | |
2560 | SMLofNJ.Internals.BTrace.mode (SOME true); | |
2561 | - Recompile your program. (I.e., run "CM.make" or "use".) | |
2562 | - You may now turn instrumentation off again (if you want): | |
2563 | SMLofNJ.Internals.BTrace.mode (SOME false); | |
2564 | - Run your program as usual. If it raises an exception that | |
2565 | reaches the interactive toplevel, then a back-trace will | |
2566 | automatically be printed. After that, the toplevel loop | |
2567 | will print the exception history as usual. | |
2568 | ||
2569 | ---------------------------------------------------------------------- | |
2570 | Name: Matthias Blume | |
2571 | Date: 2000/06/26 09:56:46 JST | |
2572 | Tag: blume-20000626-setup | |
2573 | Description: | |
2574 | ||
2575 | CM: - setup-parameter to "sml" added; this can be used to run arbitrary | |
2576 | ML code before and after compiling a file (e.g., to set compiler | |
2577 | flags) | |
2578 | ||
2579 | Compiler: - improved btrace API (in core.sml, internals.{sig,sml}) | |
2580 | - associated changes to btrace.sml (BTrace instrumentation pass) | |
2581 | - cleaner implementation of btimp.sml (BTrace tracing and report | |
2582 | module) | |
2583 | ||
2584 | CM manual: * new path encoding documented | |
2585 | * description of setup-parameter to "sml" added | |
2586 | ||
2587 | The biggest user-visible change to back-tracing is that it is no | |
2588 | longer necessary to compile all traced modules within the same | |
2589 | session. (This was a real limitation.) | |
2590 | ||
2591 | ---------------------------------------------------------------------- | |
2592 | Name: Matthias Blume | |
2593 | Date: 2000/06/24 12:40:00 JST | |
2594 | Tag: blume-20000624-startup | |
2595 | Description: | |
2596 | ||
2597 | Fixes startup slowdown problem. (I was calling SrcPath.sync a _tad_ | |
2598 | bit too often -- to put it mildly. :) | |
2599 | ||
2600 | ---------------------------------------------------------------------- | |
2601 | Name: Matthias Blume | |
2602 | Date: 2000/06/23 18:20:00 JST | |
2603 | Tag: blume-20000623-btrace | |
2604 | Description: | |
2605 | ||
2606 | This updates adds a backtrace facility to aid programmers in debugging | |
2607 | their programs. This involves the following changes: | |
2608 | ||
2609 | 1. Module system/smlnj/init/core.sml (structure _Core) now has hooks for | |
2610 | keeping track of the current call stack. When programs are compiled | |
2611 | in a special mode, the compiler will insert calls to these hooks | |
2612 | into the user program. | |
2613 | "Hook" means that it is possible for different implementations of | |
2614 | back-tracing to register themselves (at different times). | |
2615 | ||
2616 | 2. compiler/MiscUtil/profile/btrace.sml implements the annotation phase | |
2617 | as an Absyn.dec->Absyn.dec rewrite. Normally this phase is turned off. | |
2618 | It can be turned on using this call: | |
2619 | SMLofNJ.Internals.BTrace.mode (SOME true); | |
2620 | Turning it off again: | |
2621 | SMLofNJ.Internals.BTrace.mode (SOME false); | |
2622 | Querying the current status: | |
2623 | SMLofNJ.Internals.BTrace.mode NONE; | |
2624 | Annotated programs are about twice as big as normal ones, and they | |
2625 | run a factor of 2 to 4 slower with a dummy back-trace plugin (one | |
2626 | where all hooks do nothing). The slowdown with a plugin that is | |
2627 | actually useful (such as the one supplied by default) is even greater, | |
2628 | but in the case of the default plugin it is still only an constant | |
2629 | factor (amortized). | |
2630 | ||
2631 | 3. system/Basis/Implementation/NJ/internals.{sig,sml} have been augmented | |
2632 | with a sub-structure BTrace for controlling back-tracing. In particular, | |
2633 | the above-mentioned function "mode" controls whether the annotation | |
2634 | phase is invoked by the compiler. Another important function is | |
2635 | "trigger": when called it aborts the current execution and causes | |
2636 | the top-level loop to print a full back-trace. | |
2637 | ||
2638 | 4. compiler/MiscUtil/profile/btimp.sml is the current default plugin | |
2639 | for back-tracing. It keeps track of the dynamic call stack and in | |
2640 | addition to that it keeps a partial history at each "level" of that | |
2641 | stack. For example, if a tail-calls b, b tail-calls c, and c tail-calls | |
2642 | d and b (at separate times, dynamically), then the report will show: | |
2643 | ||
2644 | GOTO d | |
2645 | /c | |
2646 | GOTO \b | |
2647 | CALL a | |
2648 | ||
2649 | This shows that there was an initial non-tail call of a, then a | |
2650 | tail-call to b or c, looping behavior in a cluster of functions that | |
2651 | consist of b and c, and then a goto from that cluster (i.e., either from | |
2652 | b or from c) to d. | |
2653 | ||
2654 | Note that (depending on the user program) the amount of information | |
2655 | that the back-trace module has to keep track of at each level is bounded | |
2656 | by a constant. Thus, the whole implementation has the same asymptotical | |
2657 | complexity as the original program (both in space and in time). | |
2658 | ||
2659 | 5. compiler/TopLevel/interact/evalloop.sml has been modified to | |
2660 | handle the special exception SMLofNJ.Internals.BTrace.BTrace | |
2661 | which is raised by the "trigger" function mentioned above. | |
2662 | ||
2663 | Notes on usage: | |
2664 | ||
2665 | - Annotated code works well together with unannotated code: | |
2666 | Unannotated calls simply do not show up at all in the backtrace. | |
2667 | ||
2668 | - It is not a good idea to let modules that were annotated during | |
2669 | different sessions run at the same time. This is because the compiler | |
2670 | chooses small integers to identify individual functions, and there | |
2671 | will be clashes if different modules were compiled in separate sessions. | |
2672 | (Nothing will crash, and you will even be told about the clashes, but | |
2673 | back-trace information will in general not be useful.) | |
2674 | ||
2675 | - Back-tracing can be confused by callcc and capture. | |
2676 | ||
2677 | - The only way of getting a back-trace right now is to explicitly | |
2678 | invoke the "trigger" function from your user program. Eventually, we | |
2679 | should make every exception carry back-trace information (if | |
2680 | available). But since this creates more overhead at "raise"-time | |
2681 | (similar to the current exnHistory overhead), I have not yet | |
2682 | implemented this. (The implementation will be rather easy.) With | |
2683 | exceptions carrying back-trace information, this facility will be even | |
2684 | more useful because users don't need to modify their programs... | |
2685 | ||
2686 | - While it is possible to compile the compiler with back-trace | |
2687 | annotations turned on (I did it to get some confidence in | |
2688 | correctness), you must make absolutely sure that core.sml and | |
2689 | btimp.sml are compiled WITHOUT annotation! (core.sml cannot actually | |
2690 | be compiled with annotation because there is no core access yet, but | |
2691 | if you compile btimp.sml with annotation, then the system will go into | |
2692 | an infinite recursion and crash.) | |
2693 | Since CM currently does not know about BTrace, the only way to turn | |
2694 | annotations on and off for different modules of the compiler is to | |
2695 | interrupt CMB.make, change the settings, and re-invoke it. Of course, | |
2696 | this is awkward and clumsy. | |
2697 | ||
2698 | Sample sessions: | |
2699 | ||
2700 | Standard ML of New Jersey v110.28.1 [FLINT v1.5], June 5, 2000 | |
2701 | - SMLofNJ.Internals.BTrace.mode (SOME true); | |
2702 | [autoloading] | |
2703 | [autoloading done] | |
2704 | val it = false : bool | |
2705 | - structure X = struct | |
2706 | - fun main n = let | |
2707 | - fun a (x, 0) = d x | |
2708 | - | a (x, n) = b (x, n - 1) | |
2709 | - and b (x, n) = c (x, n) | |
2710 | - and c (x, n) = a (x, n) | |
2711 | - and d x = e (x, 3) | |
2712 | - and e (x, 0) = f x | |
2713 | - | e (x, n) = e (x, n - 1) | |
2714 | - and f 0 = SMLofNJ.Internals.BTrace.trigger () | |
2715 | - | f n = n * g (n - 1) | |
2716 | - and g n = a (n, 3) | |
2717 | - in | |
2718 | - f n | |
2719 | - end | |
2720 | - end; | |
2721 | structure X : sig val main : int -> int end | |
2722 | - X.main 3; | |
2723 | *** BACK-TRACE *** | |
2724 | GOTO stdIn:4.2-13.20: X.main[2].f | |
2725 | GOTO-( stdIn:4.2-13.20: X.main[2].e | |
2726 | GOTO stdIn:4.2-13.20: X.main[2].d | |
2727 | / stdIn:4.2-13.20: X.main[2].a | |
2728 | | stdIn:4.2-13.20: X.main[2].b | |
2729 | GOTO-\ stdIn:4.2-13.20: X.main[2].c | |
2730 | CALL stdIn:4.2-13.20: X.main[2].g | |
2731 | GOTO stdIn:4.2-13.20: X.main[2].f | |
2732 | GOTO-( stdIn:4.2-13.20: X.main[2].e | |
2733 | GOTO stdIn:4.2-13.20: X.main[2].d | |
2734 | / stdIn:4.2-13.20: X.main[2].a | |
2735 | | stdIn:4.2-13.20: X.main[2].b | |
2736 | GOTO-\ stdIn:4.2-13.20: X.main[2].c | |
2737 | CALL stdIn:4.2-13.20: X.main[2].g | |
2738 | GOTO stdIn:4.2-13.20: X.main[2].f | |
2739 | GOTO-( stdIn:4.2-13.20: X.main[2].e | |
2740 | GOTO stdIn:4.2-13.20: X.main[2].d | |
2741 | / stdIn:4.2-13.20: X.main[2].a | |
2742 | | stdIn:4.2-13.20: X.main[2].b | |
2743 | GOTO-\ stdIn:4.2-13.20: X.main[2].c | |
2744 | CALL stdIn:4.2-13.20: X.main[2].g | |
2745 | GOTO stdIn:4.2-13.20: X.main[2].f | |
2746 | CALL stdIn:2.15-17.4: X.main[2] | |
2747 | - | |
2748 | ||
2749 | (Note that because of a FLINt bug the above code currently does not | |
2750 | compile without BTrace turned on.) | |
2751 | ||
2752 | Here is another example, using my modified Tiger compiler: | |
2753 | ||
2754 | Standard ML of New Jersey v110.28.1 [FLINT v1.5], June 5, 2000 | |
2755 | - SMLofNJ.Internals.BTrace.mode (SOME true); | |
2756 | [autoloading] | |
2757 | [autoloading done] | |
2758 | val it = false : bool | |
2759 | - CM.make "sources.cm"; | |
2760 | [autoloading] | |
2761 | ... | |
2762 | [autoloading done] | |
2763 | [scanning sources.cm] | |
2764 | [parsing (sources.cm):parse.sml] | |
2765 | [creating directory CM/SKEL ...] | |
2766 | [parsing (sources.cm):tiger.lex.sml] | |
2767 | ... | |
2768 | [wrote CM/sparc-unix/semant.sml] | |
2769 | [compiling (sources.cm):main.sml] | |
2770 | [wrote CM/sparc-unix/main.sml] | |
2771 | [New bindings added.] | |
2772 | val it = true : bool | |
2773 | - Main.compile ("../testcases/merge.tig", "foo.out"); | |
2774 | *** BACK-TRACE *** | |
2775 | CALL lib/semant.sml:99.2-396.21: SemantFun[2].transExp.trvar | |
2776 | CALL lib/semant.sml:99.2-396.21: SemantFun[2].transExp.trexp | |
2777 | CALL lib/semant.sml:289.3-295.22: SemantFun[2].transExp.trexp.check[2] | |
2778 | GOTO lib/semant.sml:289.3-295.22: SemantFun[2].transExp.trexp.check[2] | |
2779 | CALL lib/semant.sml:99.2-396.21: SemantFun[2].transExp.trexp | |
2780 | CALL lib/semant.sml:99.2-396.21: SemantFun[2].transExp.trexp | |
2781 | CALL lib/semant.sml:488.3-505.6: SemantFun[2].transDec.trdec[2].transBody[2] | |
2782 | / lib/semant.sml:411.65-543.8: SemantFun[2].transDec | |
2783 | CALL-\ lib/semant.sml:413.2-540.9: SemantFun[2].transDec.trdec[2] | |
2784 | CALL lib/semant.sml:99.2-396.21: SemantFun[2].transExp.trexp | |
2785 | CALL lib/semant.sml:8.52-558.4: SemantFun[2].transProg[2] | |
2786 | CALL main.sml:1.18-118.4: Main.compile[2] | |
2787 | - | |
2788 | ||
2789 | ---------------------------------------------------------------------- | |
2790 | Name: Matthias Blumen | |
2791 | Date: 2000/06/21 18:00:00 JST | |
2792 | Tag: blume-20000621-manual | |
2793 | Description: | |
2794 | ||
2795 | CM manual update: Path environments documented. | |
2796 | ||
2797 | ---------------------------------------------------------------------- | |
2798 | Name: Matthias Blume | |
2799 | Date: 2000/06/19 13:40:00 | |
2800 | Tag: blume-20000619-manual | |
2801 | Description: | |
2802 | ||
2803 | CM manual and system/README update. This only covers the fact that | |
2804 | there are no more implicit anchors. (Path environments and the "bind" | |
2805 | option to "cm" have yet to be documented.) | |
2806 | ||
2807 | ---------------------------------------------------------------------- | |
2808 | Name: Matthias Blume | |
2809 | Date: 2000/06/19 11:05:00 JST | |
2810 | Tag: blume-20000619-chdir-bugfix | |
2811 | Description: | |
2812 | ||
2813 | Fixed a bug in new SrcPath module that sometimes led to a bad chDir call. | |
2814 | ||
2815 | ---------------------------------------------------------------------- | |
2816 | Name: Matthias Blume | |
2817 | Date: 2000/06/18 22:00:10 JST | |
2818 | Tag: blume-20000618-implicit-anchors-really-gone | |
2819 | Description: | |
2820 | ||
2821 | I updates the previous HISTORY entry where I forgot to mention that | |
2822 | implicit anchors are no longer with us. | |
2823 | ||
2824 | The current update also gets rid of the (now useless) controller | |
2825 | CM.Control.implicit_anchors. | |
2826 | ||
2827 | ---------------------------------------------------------------------- | |
2828 | Name: Matthias Blume | |
2829 | Date: 2000/06/16 17:30:00 JST | |
2830 | Tag: blume-20000616-anchorenv | |
2831 | Description: | |
2832 | ||
2833 | This patch implements the long anticipated (just kidding :) "anchor | |
2834 | environment" mechanism. In the course of doing this, I also | |
2835 | re-implemented CM's internal "SrcPath" module from scratch. The new | |
2836 | one should be more robust in certain boundary cases. In any case, it | |
2837 | is a lot cleaner than its predecessor (IMHO). | |
2838 | ||
2839 | This time, although there is yet another boot file format change, I | |
2840 | kept the unpickler backward-compatible. As a result, no new bootfiles | |
2841 | are necessary and bootstrapping is straightforward. (You cannot read | |
2842 | new bootfiles into an old system, but the other way around is no | |
2843 | problem.) | |
2844 | ||
2845 | Visible changes: | |
2846 | ||
2847 | ** 0. Implicit path anchors (without the leading $-symbol) are no | |
2848 | longer recognized at all. This means that such path names are not | |
2849 | illegal either. For example, the name basis.cm simply refers to a | |
2850 | local file called "basis.cm" (i.e, the name is an ordinary path | |
2851 | relative to .cm-files directory). Or, to put it differently, only | |
2852 | names that start with $ are anchored paths. | |
2853 | ||
2854 | ** 1. The $<singlearc> abbreviation for $/<singlearc> has finally | |
2855 | vanished. | |
2856 | ||
2857 | John (Reppy) had critizised this as soon as I originally proposed and | |
2858 | implemented it, but at that time I did not really deeply believe | |
2859 | him. :) Now I came full-circle because I need the $<singlearc> syntax | |
2860 | in another place where it cannot be seen as an abbreviation for | |
2861 | $/<singlearc>. To avoid the confusion, $<singlearc> now means what it | |
2862 | seems to mean (i.e., it "expands" into the corresponding anchor | |
2863 | value). | |
2864 | ||
2865 | However, when paths are used as members in CM description files, it | |
2866 | continues to be true that there must be at least another arc after the | |
2867 | anchor. This is now enforced separately during semantic analysis | |
2868 | (i.e., from a lexical/syntactical point of view, the notation is ok.) | |
2869 | ||
2870 | ** 2. The "cm" class now accepts an option "bind". The option's value | |
2871 | is a sub-option list of precisely two items -- one labeled "anchor" | |
2872 | and the other one labeled "value". As you might expect, "anchor" is | |
2873 | used to specify an anchor name to be bound, and "value" specifies what | |
2874 | the anchor is being bound to. | |
2875 | ||
2876 | The value must be a directory name and can be given in either standard | |
2877 | syntax (including the possibility that it is itself an anchored path) | |
2878 | or native syntax. | |
2879 | ||
2880 | Examples: | |
2881 | ||
2882 | foo.cm (bind:(anchor:bar value:$mystuff/bar)) | |
2883 | lib.cm (bind:(anchor:a value:"H:\\x\\y\\z")) (* only works under windows *) | |
2884 | ||
2885 | and so on. | |
2886 | ||
2887 | The meaning of this is that the .cm-file will be processed with an | |
2888 | augmented anchor environment where the given anchor(s) is/are bound to | |
2889 | the given values(s). | |
2890 | ||
2891 | The rationale for having this feature is this: Suppose you are trying | |
2892 | to use two different (already stable) libraries a.cm and b.cm (that | |
2893 | you perhaps didn't write yourself). Further, suppose each of these | |
2894 | two libraries internally uses its own auxiliary library $aux/lib.cm. | |
2895 | Normally you would now have a problem because the anchor "lib" can not | |
2896 | be bound to more than one value globally. Therefore, the project that | |
2897 | uses both a.cm and b.cm must locally redirect the anchor to some other | |
2898 | place: | |
2899 | ||
2900 | a.cm (bind:(anchor:lib value:/usr/lib/smlnj/a-stuff)) | |
2901 | b.cm (bind:(anchor:lib value:/usr/lib/smlnj/b-stuff)) | |
2902 | ||
2903 | This hard-wires $lib/aux.cm to /usr/lib/smlnj/a-stuff/aux.cm or | |
2904 | /usr/lib/smlnj/b-stuff/aux.cm, respectively. | |
2905 | ||
2906 | Hard-wiring path names is a bit inflexible (and CM will verbosely warn | |
2907 | you when you do so at the time of CM.stabilize). Therefore, you can | |
2908 | also use an anchored path as the value: | |
2909 | ||
2910 | a.cm (bind:(anchor:lib value:$a-lib)) | |
2911 | b.cm (bind:(anchor:lib value:$b-lib)) | |
2912 | ||
2913 | Now you can globally configure (using the usual CM.Anchor.anchor or | |
2914 | pathconfig machinery) bindings for "a-lib" and "b-lib". Since "lib" | |
2915 | itself is always locally bound, setting it globally is no longer | |
2916 | meaningful or necessary (but it does not hurt either). In fact, "lib" | |
2917 | can still be used as a global anchor for separate purposes. As a | |
2918 | matter of fact, one can locally define "lib" in terms of a global | |
2919 | "lib": | |
2920 | ||
2921 | a.cm (bind:(anchor:lib value:$lib/a)) | |
2922 | b.cm (bind:(anchor:lib value:$lib/b)) | |
2923 | ||
2924 | ** 3: The encoding of path names has changed. This affects the way | |
2925 | path names are shown in CM's progress report and also the internal | |
2926 | protocol encoding used for parallel make. | |
2927 | ||
2928 | The encoding now uses one or more ':'-separated segments. Each | |
2929 | segments corresponds to a file that has been specified relative to the | |
2930 | file given by its preceding segment. The first segment is either | |
2931 | relative to the CWD, absolute, or anchored. Each segment itself is | |
2932 | basically a Unix pathname; all segments but the first are relative. | |
2933 | ||
2934 | Example: | |
2935 | ||
2936 | $foo/bar/baz.cm:a/b/c.sml | |
2937 | ||
2938 | This path denotes the file bar/a/b/c.sml relative to the directory | |
2939 | denoted by anchor "foo". Notice that the encoding also includes | |
2940 | baz.cm which is the .cm-file that listed a/b/c.sml. As usual, such | |
2941 | paths are resolved relative to the .cm-files directory, so baz.cm must | |
2942 | be ignored to get the "real" pathname. | |
2943 | ||
2944 | To make this fact more obvious, CM puts the names of such "virtual | |
2945 | arcs" into parentheses when they appear in progress reports. (No | |
2946 | parentheses will appear in the internal protocol encoding.) Thus, | |
2947 | what you really see is: | |
2948 | ||
2949 | $foo/bar/(baz.cm):a/b/c.sml | |
2950 | ||
2951 | I find this notation to be much more informative than before. | |
2952 | ||
2953 | Another new feature of the encoding is that special characters | |
2954 | including parentheses, colons, (back)slashes, and white space are | |
2955 | written as \ddd (where ddd is the decimal encoding of the character). | |
2956 | ||
2957 | *** The CM manual still needs to be updated. | |
2958 | ||
2959 | ---------------------------------------------------------------------- | |
2960 | Name: Allen Leung | |
2961 | Date: 2000/06/15 00:38:00 | |
2962 | Tag: leunga-20000615-x86-peephole | |
2963 | ||
2964 | x86 Peephole fix by Fermin. Affects c-- and moby only. | |
2965 | ||
2966 | ---------------------------------------------------------------------- | |
2967 | Name: Matthias Blume | |
2968 | Date: 2000/06/12 11:40:00 | |
2969 | Tag: blume-20000612-parmakefix | |
2970 | Description: | |
2971 | ||
2972 | More cleanup after changing the file naming scheme: This time I | |
2973 | repaired the parallel make mechanism for CMB.make which I broke earlier. | |
2974 | ||
2975 | ---------------------------------------------------------------------- | |
2976 | Name: Allen Leung | |
2977 | Date: 2000/06/09 01:25:00 | |
2978 | Tag: leunga-20000609-various | |
2979 | ||
2980 | None of these things should affect normal SML/NJ operations | |
2981 | ||
2982 | 1. Peephole improvements provided by Fermin (c--) | |
2983 | 2. New annotation DEFUSE for adding extra dependence (moby) | |
2984 | 3. New X86 LOCK instructions (moby) | |
2985 | 4. New machine description language for reservation tables (scheduling) | |
2986 | 5. Fixes to various optimization/analysis modules (branch chaining, dominator | |
2987 | trees etc.) | |
2988 | 6. I've changed the CM files so that they can work with versions | |
2989 | 110.0.6, 110.25 and 110.28 | |
2990 | ||
2991 | ---------------------------------------------------------------------- | |
2992 | Name: Matthias Blume | |
2993 | Date: 2000/06/09 12:40:00 | |
2994 | Tag: blume-20000609-log | |
2995 | Description: | |
2996 | ||
2997 | - Removed all(?) remaining RCS Log entries from sources. | |
2998 | ||
2999 | - Fixed bug in ml-yacc and ml-lex sources (use explicit anchors for | |
3000 | anchored paths). | |
3001 | ||
3002 | ---------------------------------------------------------------------- | |
3003 | Name: Matthias Blume | |
3004 | Date: 2000/06/07 17:00:00 JST | |
3005 | Tag: blume-20000607-no-implicit-anchors | |
3006 | Description: | |
3007 | ||
3008 | 1. This update changes the default setting for | |
3009 | CM.Control.implicit_anchors from true to false. This means that | |
3010 | implicit anchors are no longer permitted by default. I also tried to | |
3011 | make sure that nothing else still relies on implicit anchors. | |
3012 | (This is the next step on the schedule towards a CM that does not even | |
3013 | have the notion of implicit anchors anymore.) | |
3014 | ||
3015 | 2. More CM manual updates. | |
3016 | ||
3017 | 3. I managed to track down and fix the pickling bug I mentioned last | |
3018 | time. Because of the previously existing workaround, this entails no | |
3019 | immediate practical changes. | |
3020 | ||
3021 | ---------------------------------------------------------------------- | |
3022 | Name: Matthias Blume | |
3023 | Date: 2000/06/06 11:15:00 JST | |
3024 | Tag: blume-20000606-lazierpickle | |
3025 | Description: | |
3026 | ||
3027 | !!!! NEW BOOT FILES !!!! | |
3028 | ||
3029 | * The main purpose of this update is to make library pickles lazier in | |
3030 | order to reduce the initial space penalty for autoloading a library. | |
3031 | As a result, it is now possible to have $smlnj/compiler.cm | |
3032 | pre-registered. This should take care of the many complaints or | |
3033 | inquiries about missing structure Compiler. This required changes to | |
3034 | CM's internal data structures and small tweaks to some algorithms. | |
3035 | ||
3036 | As a neat additional effect, it is no longer necessary (for the sake | |
3037 | of lean heap image files) to distinguish between a "minimal" CM and a | |
3038 | "full" CM. Now, there is only one CM (i.e., the "full" version: | |
3039 | $smlnj/cm.cm aka $smlnj/cm/full.cm), and it is always available at the | |
3040 | interactive top level. ($smlnj/cm/minimal.cm is gone.) | |
3041 | ||
3042 | To make the life of compiler-hackers easier, "makeml" now also | |
3043 | pre-registers $smlnj/cmb.cm (aka $smlnj/cmb/current.cm). In other | |
3044 | words, after you bootstrap a new sml for the first time, you will not | |
3045 | have to autoload $smlnj/cmb.cm again afterwards. (The first time | |
3046 | around you will still have to do it, though.) | |
3047 | ||
3048 | * A second change consists of major updates to the CM manual. There | |
3049 | are now several appendices with summary information and also a full | |
3050 | specification of the CM description file syntax. | |
3051 | ||
3052 | * In directory src/system I added the script "allcross". This script | |
3053 | invokes sml and cross-compiles the compiler for all supported | |
3054 | architectures. (Useful when providing a new set of boot files.) | |
3055 | ||
3056 | * There seems to be a latent bug in my "lazy pickles" mechanism. I | |
3057 | added a small tweak to pickle-util.sml to work around this problem, | |
3058 | but it is not a proper fix yet. I will investigate further. (The | |
3059 | effect of the bug was an inflation of library pickle size.) | |
3060 | ||
3061 | * Version number increased to 110.28.1 (to avoid compatibility problems). | |
3062 | ||
3063 | ---------------------------------------------------------------------- | |
3064 | Name: Allen Leung | |
3065 | Date: 2000/05/25 17:28 EDT | |
3066 | Tag: leunga-20000525-ra | |
3067 | Description: | |
3068 | ||
3069 | Fixed a bug in freezing phase of the register allocator. | |
3070 | ||
3071 | ---------------------------------------------------------------------- | |
3072 | Name: Allen Leung | |
3073 | Date: 2000/05/15 22:53 EDT | |
3074 | Tag: leunga-20000515-alpha-x86-ra | |
3075 | Description: | |
3076 | ||
3077 | 1. Alpha | |
3078 | ||
3079 | Slight cleanup. Removed the instruction SGNXL | |
3080 | ||
3081 | 2. X86 | |
3082 | ||
3083 | Added the following instructions to the instruction set: | |
3084 | ||
3085 | ROLx, RORx, | |
3086 | BTx, BTSx, BTLx, BTRx, | |
3087 | XCHGx, and variants with the LOCK prefix | |
3088 | ||
3089 | 3. Register Allocation | |
3090 | ||
3091 | The module ra-rewrite-with-renaming has been improved. | |
3092 | ||
3093 | These have no effect on SML/NJ. | |
3094 | ||
3095 | ---------------------------------------------------------------------- | |
3096 | Name: Matthias Blume | |
3097 | Date: 2000/05/15 16:20:00 JST | |
3098 | Tag: blume-20000515-lightrebuild | |
3099 | Description: | |
3100 | ||
3101 | 1. I added an alternative to "-rebuild" to "makeml". The difference is | |
3102 | that prior to calling CMB.make' the CM-variable "LIGHT" will be | |
3103 | defined. In effect, the command will not build any cross-compiler | |
3104 | backends and therefore finish more quickly. | |
3105 | ||
3106 | The "fixpt" script also takes a "-light" switch to be able to use | |
3107 | this new facility while compiling for a fixpoint. | |
3108 | ||
3109 | 2. I replaced all mentions of anchored paths in group owner specifications | |
3110 | with simple relative paths (usually starting with ".."). | |
3111 | The rationale is that a library's internal workings should not be | |
3112 | compromised by the lack of some anchor. (An anchor is necessary | |
3113 | for someone who wants to refer to the library by an anchored path, | |
3114 | but it should not be necessary to build the same library in the first | |
3115 | place.) | |
3116 | ||
3117 | 3. I changed the way CM's tool mechanism determines the shell command | |
3118 | string used for things like ml-yacc etc. so that it does not break | |
3119 | when CM.Control.implicit_anchors is turned off. | |
3120 | ||
3121 | ---------------------------------------------------------------------- | |
3122 | Name: Matthias Blume | |
3123 | Date: 2000/05/12 18:20:00 JST | |
3124 | Tag: blume-20000512-ml-build | |
3125 | Description: | |
3126 | ||
3127 | Fixed a bug in config/_ml-build that prevented ml-yacc and ml-lex from | |
3128 | getting installed properly (by config/install.sh). | |
3129 | ||
3130 | ---------------------------------------------------------------------- | |
3131 | Name: Matthias Blume | |
3132 | Date: 2000/05/12 17:30:00 JST | |
3133 | Tag: blume-20000512-anchors | |
3134 | Description: | |
3135 | ||
3136 | !!! NEW BOOT FILES !!! | |
3137 | ||
3138 | This change is in preparation of fading out support for "implicitly | |
3139 | anchored path names". I went through all sources and used the | |
3140 | explicit (and relatively new) $-notation. See system/README and the | |
3141 | CM manual for more info on this. | |
3142 | ||
3143 | I also modified the anchoring scheme for some things such as "smlnj", | |
3144 | "MLRISC", "cm", etc. to take advantage of the fact that explicit | |
3145 | anchors are more expressive: anchor name and first arc do not have to | |
3146 | coincide. This entails the following user-visible change: | |
3147 | ||
3148 | You have to write $smlnj/foo/bar instead of smlnj/foo/bar. In | |
3149 | particular, when you fire up sml with a command-line argument, say, | |
3150 | e.g.: | |
3151 | ||
3152 | sml '$smlnj/cmb.cm' | |
3153 | ||
3154 | At the ML toplevel prompt: | |
3155 | ||
3156 | CM.autoload "$smlnj/cmb.cm"; | |
3157 | ||
3158 | There is also a new controller in CM.Control that can be used to turn | |
3159 | off all remaining support for implicit anchors by saying: | |
3160 | ||
3161 | CM.autoload "$smlnj/ | |
3162 | #set CM.Control.implicit_anchors false; | |
3163 | ||
3164 | This causes CM to reject implicitly anchored paths. This is (for the | |
3165 | time being) less permissive than the "final" version where there will | |
3166 | be no more such implicit anchors and relative paths will be just that: | |
3167 | relative. | |
3168 | ||
3169 | The next step (version after next version?) will be to make the | |
3170 | default for CM.Control.implicit_anchors false. After the dust has | |
3171 | settled, I can then produce the "final" version of this... | |
3172 | ||
3173 | Note: Since bootstrapping is a bit tricky, I provided new boot files. | |
3174 | ||
3175 | ---------------------------------------------------------------------- | |
3176 | Name: Matthias Blume | |
3177 | Date: 2000/05/11 16:30:00 JST | |
3178 | Tag: blume-20000511-sources | |
3179 | Description: | |
3180 | ||
3181 | The main change is that I added function CM.sources as a generalized | |
3182 | version of the earlier CM.makedepend. This entails the following | |
3183 | additional changes: | |
3184 | ||
3185 | - CM.makedepend has been dropped. | |
3186 | ||
3187 | - CM manual has been updated. | |
3188 | ||
3189 | - TOOLS signature and API have been changed. | |
3190 | ||
3191 | ---------------------------------------------------------------------- | |
3192 | Name: Allen Leung | |
3193 | Date: 2000/05/10 21:17 EDT | |
3194 | Tag: leunga-20000510-moby-c--ssa | |
3195 | Description: | |
3196 | ||
3197 | Various bug fixes and new features for C--, Moby and MLRISC optimizations. | |
3198 | None of these affect SML/NJ. | |
3199 | ||
3200 | 1. Register Allocation | |
3201 | ||
3202 | a. A new ra spilling module (ra/ra-spill-with-renaming) is implemented. | |
3203 | This module tries to remove local (i.e. basic block level) redundancies | |
3204 | during spilling. | |
3205 | ||
3206 | b. A new framework for performing region based register allocation. | |
3207 | Not yet entirely functional. | |
3208 | ||
3209 | 2. X86 | |
3210 | ||
3211 | a. DefUse for POP was missing the stack pointer [found by Lal] | |
3212 | b. Reload for CALL was incorrect in X86Spill [found by John] | |
3213 | c. Various fixes in X86Spill so that it can be used correctly for | |
3214 | the new spilling module. | |
3215 | ||
3216 | 3. SSA/IR | |
3217 | ||
3218 | a. New module ir/dj-dataflow.sml implements elimination based | |
3219 | data flow analysis. | |
3220 | ||
3221 | 4. MLRiscGen | |
3222 | ||
3223 | a. Fix for gc type annotation | |
3224 | ||
3225 | 5. MDGen | |
3226 | ||
3227 | Various fixes for machine description -> ml code translation. For ssa | |
3228 | only. | |
3229 | ||
3230 | ---------------------------------------------------------------------- | |
3231 | Name: Allen Leung | |
3232 | Date: 2000/05/08 22:17 EDT | |
3233 | Tag: leunga-20000508-labexp | |
3234 | Description: | |
3235 | ||
3236 | Fermin has found a few assembly problems with constant expressions | |
3237 | generated in LabelExp. Mostly, the problems involve extra parentheses, | |
3238 | which choke on dumb assemblers. This is his fix. | |
3239 | ||
3240 | ---------------------------------------------------------------------- | |
3241 | Name: Dave MacQueen | |
3242 | Date: 2000/04/09 14:00 EDT | |
3243 | Tag: dbm-20000502-Version_110_28 | |
3244 | Description: | |
3245 | ||
3246 | 1. Updated src/compiler/TopLevel/main/version.sml to version 110.28 | |
3247 | ||
3248 | 2. Updated config/version to 110.28 | |
3249 | ||
3250 | 3. Updated config/srcarchiveurl | |
3251 | ||
3252 | 3. New boot files! | |
3253 | ftp://ftp.research.bell-labs.com/dist/smlnj/working/110.28/ | |
3254 | ||
3255 | ---------------------------------------------------------------------- | |
3256 | Name: Matthias Blume | |
3257 | Date: 2000/05/01 19:05:00 JST | |
3258 | Tag: blume-20000501-noweb | |
3259 | Description: | |
3260 | ||
3261 | A new noweb tool has been added. The existing system is entirely | |
3262 | unaffected by this, but some CM users have asked for renewed noweb | |
3263 | support. Everything is documented in the CM manual. | |
3264 | ||
3265 | New (plugin) libraries: | |
3266 | ||
3267 | noweb-tool.cm | |
3268 | nw-ext.cm | |
3269 | ||
3270 | ---------------------------------------------------------------------- | |
3271 | Name: Dave MacQueen | |
3272 | Date: 2000/04/30 12:40PM EDT | |
3273 | Tag: dbm-20000430-bug_fixes | |
3274 | Description: | |
3275 | ||
3276 | 1. Fix for bug 1498 | |
3277 | smlnj/src/system/Basis/Implementation/Unsafe/object.sig | |
3278 | smlnj/src/system/Basis/Implementation/Unsafe/object.sml | |
3279 | added toRealArray function | |
3280 | smlnj/src/compiler/MiscUtil/print/ppobj.sml | |
3281 | added check for tag Obj.RealArray to array printing case in ppObj | |
3282 | ||
3283 | 2. Fix for bug 1510 | |
3284 | smlnj/src/compiler/Semant/types/typesutil.sml | |
3285 | fixed definition of dummyargs (used by equalTycon) so that | |
3286 | dummy args are distinct types | |
3287 | ||
3288 | ---------------------------------------------------------------------- | |
3289 | Name: Matthias Blume | |
3290 | Date: 2000/04/30 01:00:00 JST | |
3291 | Tag: blume-20000430-versions | |
3292 | Description: | |
3293 | ||
3294 | 1. CM version numbering added. This is an implementation of Lal's | |
3295 | proposal for adding version numbers and version checking to .cm | |
3296 | files. Lal said that his proposal was just that -- a proposal. | |
3297 | For the time being I went ahead and implemented it so that people | |
3298 | can comment on it. Everything is completely backward-compatible | |
3299 | (except for the stable library format, i.e., new bootfiles!). | |
3300 | ||
3301 | As usual, see the CM manual for details. | |
3302 | ||
3303 | 2. An alternative syntax for anchored paths has been implemented. | |
3304 | Dave has recently voiced the same concerns that I had when I did | |
3305 | this, so there should be some support. My take is that eventually | |
3306 | I will let support for the current syntax (where anchors are | |
3307 | "implicit") fade out in favor of the new, explicit syntax. | |
3308 | In order to be backward-compatible, both old and new syntax are | |
3309 | currently supported. | |
3310 | ||
3311 | Again, see the CM manual for details. | |
3312 | ||
3313 | 3. Parallel make is trying to be slightly smarter: When the master | |
3314 | process finds a "bottleneck", i.e., when there is only one | |
3315 | compilation unit that can be compiled and everybody else is | |
3316 | waiting on it, then it will simply compile it directly instead | |
3317 | of clumsily telling one of the slaves to do it. | |
3318 | ||
3319 | 4. Support for "unsharing" added. This is necessary in order to be | |
3320 | able to have two different versions of the same library running | |
3321 | at the same time (e.g., for trying out a new MLRISC while still | |
3322 | having the old MLRISC linked into the current compiler, etc.) | |
3323 | See the CM manual. | |
3324 | ||
3325 | 5. Simple "makedepend" functionality added for generating Makefile | |
3326 | dependency information. (This is rather crude at the moment. | |
3327 | Expect some changes here in the future.) | |
3328 | ||
3329 | 6. ".fun" added as a recognized suffix for ML files. Also documented | |
3330 | explicitly in the manual that the fallback behavior (unknown suffix | |
3331 | -> ML file) is not an official feature! | |
3332 | ||
3333 | 7. Small changes to the pickler for stable libraries. | |
3334 | ||
3335 | 8. Several internal changes to CM (for cleanup/improvement). | |
3336 | ||
3337 | ||
3338 | !!!! NEW BINFILES !!!! | |
3339 | ||
3340 | ---------------------------------------------------------------------- | |
3341 | Name: Matthias Blume | |
3342 | Date: 2000/04/28 17:30:00 JST | |
3343 | Tag: blume-20000428-pathconfig | |
3344 | Description: | |
3345 | ||
3346 | 1. I changed config/install.sh to remove duplicate entries from the | |
3347 | lib/pathconfig file at the end. Moreover, the final version of | |
3348 | lib/pathconfig is sorted alphabetically. The same (sorting) is done | |
3349 | in src/system/installml. | |
3350 | ||
3351 | 2. The config/install.sh script now consistently uses relative | |
3352 | pathnames in lib/pathconfig whenever the anchor is in the lib | |
3353 | directory. (So far this was true for the libraries that come | |
3354 | pre-compiled and bundled as part of the bootfiles but not for | |
3355 | libraries that are compiled by the script itself.) | |
3356 | ||
3357 | ---------------------------------------------------------------------- | |
3358 | Name: Matthias Blume | |
3359 | Date: 2000/04/26 13:10:00 JST | |
3360 | Tag: blume-20000426-fun_suffix | |
3361 | Description: | |
3362 | ||
3363 | Added ".fun" as a recognized file name suffix (for ML code). | |
3364 | ||
3365 | ---------------------------------------------------------------------- | |
3366 | Name: Allen Leung | |
3367 | Date: 2000/04/25 17:00:00 EST | |
3368 | Tag: leunga-20000425-alpha-ra | |
3369 | Description: | |
3370 | ||
3371 | 1. Alpha | |
3372 | ||
3373 | PSEUDOARITH was missing in AlphaRewrite. This causes an endless loop | |
3374 | in C--. | |
3375 | ||
3376 | 2. RA | |
3377 | ||
3378 | Added a flag "ra-dump-size" to print out the size of the flowgraph | |
3379 | and the interference graph. | |
3380 | ||
3381 | ---------------------------------------------------------------------- | |
3382 | Name: Dave MacQueen | |
3383 | Date: 2000/04/25/ | |
3384 | Tag: dbm-20000425-mlyacc_doc_examples | |
3385 | Description: | |
3386 | Updated mlyacc.tex sections 5 and 7 for SML '97 and CM. | |
3387 | Updated all three examples in src/ml-yacc/examples to run | |
3388 | under 110.* using CM.make. | |
3389 | ||
3390 | ---------------------------------------------------------------------- | |
3391 | Name: Allen Leung | |
3392 | Date: 2000/04/20 23:04:00 EST | |
3393 | Tag: leunga-20000420-ssa-c---stuff | |
3394 | Description: | |
3395 | ||
3396 | This update synchronizes my repository with Yale's. Most of these | |
3397 | changes, however, do not affect SML/NJ at all (the RA is an exception). | |
3398 | ||
3399 | 1. Register Allocator | |
3400 | ||
3401 | a. An improvement in the interference graph construction: | |
3402 | Given a copy | |
3403 | ||
3404 | s <- t | |
3405 | ||
3406 | no interference edge between s and t is added for this definition of s. | |
3407 | ||
3408 | b. I've added two new spill heuristic modules that Fermin and I developed | |
3409 | (in the new library RA.cm). These are unused in SML/NJ but maybe | |
3410 | useful for others (Moby?) | |
3411 | ||
3412 | 2. X86 | |
3413 | ||
3414 | a. Various fixes in the backend provided by Fermin [C--] and Lal. | |
3415 | ||
3416 | 3. Alpha | |
3417 | ||
3418 | a. Added the BSR instruction and code generation that goes with it [C--] | |
3419 | b. Other fixes too numerous to recount provided by Fermin [C--] | |
3420 | ||
3421 | 4. Regmaps | |
3422 | ||
3423 | a. The regmaps are not initialized with the identity physical bindings | |
3424 | at creation time. This is unneeded. | |
3425 | ||
3426 | 5. MLRISC Optimizations | |
3427 | ||
3428 | a. The DJ-Graph module can now compute the iterated dominance frontiers | |
3429 | intersects with liveness incrementally in linear time! Woohoo! | |
3430 | This is now used in my new SSA construction algorithm. | |
3431 | ||
3432 | b. THe branch reorganization module is now smarter about linear chains of | |
3433 | basic blocks. | |
3434 | ||
3435 | ||
3436 | ---------------------------------------------------------------------- | |
3437 | Name: Matthias Blume | |
3438 | Date: 2000/04/12 13:52:00 JST | |
3439 | Tag: blume_main_v110p27_1 | |
3440 | Description: | |
3441 | ||
3442 | Changed install.sh script to handle archive files without version number | |
3443 | and to use "boot.<arch>-<os>" instead of "sml.boot.<arch>-<os>" for the | |
3444 | name of the boot file archive. | |
3445 | ||
3446 | ---------------------------------------------------------------------- | |
3447 | Name: Dave MacQueen | |
3448 | Date: 2000/04/09 14:00 EDT | |
3449 | Tag: dbm-20000410-Version_110_27 | |
3450 | Description: | |
3451 | ||
3452 | 1. Updated src/compiler/TopLevel/main/version.sml to version 110.27 | |
3453 | ||
3454 | 2. Updated src/config/version to 110.27 | |
3455 | ||
3456 | 3. New boot files! | |
3457 | ||
3458 | ---------------------------------------------------------------------- | |
3459 | Name: Allen Leung | |
3460 | Date: 2000/04/09 19:09:00 EST | |
3461 | Tag: leunga-20000409-misc | |
3462 | Description: | |
3463 | ||
3464 | 1. Yet another fix for x86 assembly for idivl, imull, mull and friends. | |
3465 | ||
3466 | 2. Miscellaneous improvements to MLRISC (unused in sml/nj) | |
3467 | ||
3468 | ---------------------------------------------------------------------- | |
3469 | Name: Stefan | |
3470 | Date: 2000/04/07 10:00:00 EDT | |
3471 | Tag: monnier-20000406-branch-handling | |
3472 | Description: | |
3473 | ||
3474 | Improved handling of branches (mostly those generated from | |
3475 | polymorphic equality), removed switchoff and changed the | |
3476 | default optimization settings (more cpsopt and less flintopt). | |
3477 | ||
3478 | ---------------------------------------------------------------------- | |
3479 | Name: Allen Leung | |
3480 | Date: 2000/04/06 01:30:00 EST | |
3481 | Tag: leunga-20000406-peephole-x86-SSA-2 | |
3482 | Description: | |
3483 | ||
3484 | Forgot a few files. | |
3485 | ||
3486 | ---------------------------------------------------------------------- | |
3487 | Name: Allen Leung | |
3488 | Date: 2000/04/06 00:36:00 EST | |
3489 | Tag: leunga-20000406-peephole-x86-SSA | |
3490 | Description: | |
3491 | ||
3492 | 1. New Peephole code | |
3493 | ||
3494 | 2. Minor improvement to X86 instruction selection | |
3495 | ||
3496 | 3. Various fixes to SSA and machine description -> code translator | |
3497 | ||
3498 | ---------------------------------------------------------------------- | |
3499 | Name: Matthias Blume | |
3500 | Date: 2000/04/05 12:30:00 JST | |
3501 | Tag: blume_main_v110p26p2_3 | |
3502 | Description: | |
3503 | ||
3504 | This update just merges three minor cosmetic updates to CM's sources | |
3505 | to get ready for the 110.27 code freeze on Friday. No functionality | |
3506 | has changed. | |
3507 | ||
3508 | ---------------------------------------------------------------------- | |
3509 | Name: Allen Leung | |
3510 | Date: 2000/04/04 19:39:00 EST | |
3511 | Tag: leunga-20000404-x86-asm | |
3512 | Description: | |
3513 | ||
3514 | 1. Fixed a problem in X86 assembly. | |
3515 | ||
3516 | Things like | |
3517 | ||
3518 | jmp %eax | |
3519 | jmp (%eax) | |
3520 | ||
3521 | should be output as | |
3522 | ||
3523 | jmp *%eax | |
3524 | jmp *(%eax) | |
3525 | ||
3526 | 2. Assembly output | |
3527 | ||
3528 | Added a new flag | |
3529 | ||
3530 | "asm-indent-copies" (default to false) | |
3531 | ||
3532 | When this flag is on, parallel copies will be indented an extra level. | |
3533 | ||
3534 | ---------------------------------------------------------------------- | |
3535 | Name: Allen Leung | |
3536 | Date: 2000/04/04 03:18:00 EST | |
3537 | Tag: leunga-20000404-C--Moby | |
3538 | Description: | |
3539 | ||
3540 | All of these fixes are related to C--, Moby, and my own optimization | |
3541 | stuff; so they shouldn't affect SML/NJ. | |
3542 | ||
3543 | 1. X86 | |
3544 | ||
3545 | Various fixes related floating point, and extensions. | |
3546 | ||
3547 | 2. Alpha | |
3548 | ||
3549 | Some extra patterns related to loads with signed/zero extension | |
3550 | provided by Fermin. | |
3551 | ||
3552 | 3. Assembly | |
3553 | ||
3554 | When generating assembly, resolve the value of client defined constants, | |
3555 | instead of generating symbolic values. This is controlled by the | |
3556 | new flag "asm-resolve-constants", which is default to true. | |
3557 | ||
3558 | 4. Machine Descriptions | |
3559 | ||
3560 | a. The precedence parser was slightly broken when parsing infixr symbols. | |
3561 | b. The type generalizing code had the bound variables reversed, resulting | |
3562 | in a problem during arity raising. | |
3563 | c. Various fixes in machine descriptions. | |
3564 | ||
3565 | ---------------------------------------------------------------------- | |
3566 | Name: Matthias Blume | |
3567 | Date: 2000/04/03 16:05:00 JST | |
3568 | Tag: blume_main_v110p26p2_2 | |
3569 | Description: | |
3570 | ||
3571 | I eliminated coreEnv from compInfo. Access to the "Core" structure is | |
3572 | now done via the ordinary static environment that is context to each | |
3573 | compilation unit. | |
3574 | ||
3575 | To this end, I arranged that instead of "structure Core" as "structure | |
3576 | _Core" is bound in the pervasive environment. Core access is done via | |
3577 | _Core (which can never be accidentally rebound because _Core is not a | |
3578 | legal surface-syntax symbol). | |
3579 | ||
3580 | The current solution is much cleaner because the core environment is | |
3581 | now simply part of the pervasive environment which is part of every | |
3582 | compilation unit's context anyway. In particular, this eliminates all | |
3583 | special-case handling that was necessary until now in order to deal | |
3584 | with dynamic and symbolic parts of the core environment. | |
3585 | ||
3586 | Remaining hackery (to bind the "magic" symbol _Core) is localized in the | |
3587 | compilation manager's bootstrap compiler (actually: in the "init group" | |
3588 | handling). See the comments in src/system/smlnj/init/init.cmi for | |
3589 | more details. | |
3590 | ||
3591 | I also tried to track down all mentions of "Core" (as string argument | |
3592 | to Symbol.strSymbol) in the compiler and replaced them with a | |
3593 | reference to the new CoreSym.coreSym. Seems cleaner since the actual | |
3594 | name appears in one place only. | |
3595 | ||
3596 | Binfile and bootfile format have not changed, but the switchover from | |
3597 | the old "init.cmi" to the new one is a bit tricky, so I supplied new | |
3598 | bootfiles anyway. | |
3599 | ||
3600 | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- |
3601 | Name: Allen Leung | Name: Allen Leung |
3602 | Date: 2000/04/02 21:17:00 EST | Date: 2000/04/02 21:17:00 EST |
# | Line 113 | Line 3699 |
3699 | (specified in the .cm file at each instance where the tool's class is | (specified in the .cm file at each instance where the tool's class is |
3700 | used). | used). |
3701 | ||
3702 | This was done to accomodate the new "make" and "shell" tools which | This was done to accommodate the new "make" and "shell" tools which |
3703 | facilitate fairly seemless hookup to portions of code managed using | facilitate fairly seamless hookup to portions of code managed using |
3704 | Makefiles or Shell scripts. | Makefiles or Shell scripts. |
3705 | ||
3706 | There are no classes "shared" or "private" anymore. Instead, the | There are no classes "shared" or "private" anymore. Instead, the |
# | Line 126 | Line 3712 |
3712 | ||
3713 | All existing tools are described in the CM manual. | All existing tools are described in the CM manual. |
3714 | ||
3715 | - Slightly better error handling. (CM now surpresses many followup | - Slightly better error handling. (CM now suppresses many followup |
3716 | error messages that tended to be more annoying than helpful.) | error messages that tended to be more annoying than helpful.) |
3717 | ||
3718 | 2. Major changes to the compiler's static environment data structures. | 2. Major changes to the compiler's static environment data structures. |
# | Line 157 | Line 3743 |
3743 | elaborator). There were a lot of changes during my "linkpath" trials | elaborator). There were a lot of changes during my "linkpath" trials |
3744 | that could have been reverted to their original state but weren't. | that could have been reverted to their original state but weren't. |
3745 | Please, don't be too harsh on me for messing with this code a bit more | Please, don't be too harsh on me for messing with this code a bit more |
3746 | than what was strictly necessary... (I _did_ resist the tempation | than what was strictly necessary... (I _did_ resist the temptation |
3747 | of doing any "global reformatting" to avoid an untimely death at | of doing any "global reformatting" to avoid an untimely death at |
3748 | Dave's hands. :) | Dave's hands. :) |
3749 | ||
# | Line 260 | Line 3846 |
3846 | ||
3847 | I've changed andl to testl in the floating point test sequence |