11 |
Date: yyyy/mm/dd |
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/15 12:08:00 EST |
18 |
|
Tag: blume-20020215-iptrs |
19 |
|
Description: |
20 |
|
|
21 |
|
Two improvements to ml-nlffigen: |
22 |
|
|
23 |
|
1. Write files only if they do not exist or if their current contents |
24 |
|
do not coincide with what's being written. (That is, avoid messing |
25 |
|
with the time stamps unless absolutely necessary.) |
26 |
|
|
27 |
|
2. Implement a "repository" mechanism for generated files related |
28 |
|
to "incomplete pointer types". See the README file for details. |
29 |
|
|
30 |
|
---------------------------------------------------------------------- |
31 |
|
Name: Matthias Blume |
32 |
|
Date: 2002/02/14 11:50:00 EST |
33 |
|
Tag: blume-20020214-quote |
34 |
|
Description: |
35 |
|
|
36 |
|
Added a type 't t_' to tag.sml (in ml-nlffi-lib.cm). This is required |
37 |
|
because of the new and improved tag generation scheme. (Thanks to Allen |
38 |
|
Leung for pointing it out.) |
39 |
|
|
40 |
|
---------------------------------------------------------------------- |
41 |
|
Name: Lal George |
42 |
|
Date: 2002/02/14 09:55:27 EST 2002 |
43 |
|
Tag: george-20020214-isabelle-bug |
44 |
|
Description: |
45 |
|
|
46 |
|
Fixed the MLRISC bug sent by Markus Wenzel regarding the compilation |
47 |
|
of Isabelle on the x86. |
48 |
|
|
49 |
|
From Allen: |
50 |
|
----------- |
51 |
|
I've found the problem: |
52 |
|
|
53 |
|
in ra-core.sml, I use the counter "blocked" to keep track of the |
54 |
|
true number of elements in the freeze queue. When the counter goes |
55 |
|
to zero, I skip examining the queue. But I've messed up the |
56 |
|
bookkeeping in combine(): |
57 |
|
|
58 |
|
else (); |
59 |
|
case !ucol of |
60 |
|
PSEUDO => (if !cntv > 0 then |
61 |
|
(if !cntu > 0 then blocked := !blocked - 1 else (); |
62 |
|
^^^^^^^^^^^^^^^^^^^^^^^ |
63 |
|
moveu := mergeMoveList(!movev, !moveu) |
64 |
|
) |
65 |
|
else (); |
66 |
|
|
67 |
|
combine() is called to coalesce two nodes u and v. |
68 |
|
I think I was thinking that if the move counts of u and v are both |
69 |
|
greater than zero then after they are coalesced then one node is |
70 |
|
removed from the freeze queue. Apparently I was thinking that |
71 |
|
both u and v are of low degree, but that's clearly not necessarily true. |
72 |
|
|
73 |
|
|
74 |
|
02/12/2002: |
75 |
|
Here's the patch. HOL now compiles. |
76 |
|
|
77 |
|
I don't know how this impact on performance (compile |
78 |
|
time or runtime). This bug caused the RA (especially on the x86) |
79 |
|
to go thru the potential spill phase when there are still nodes on the |
80 |
|
freeze queue. |
81 |
|
|
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
---------------------------------------------------------------------- |
86 |
|
Name: Matthias Blume |
87 |
|
Date: 2002/02/13 22:40:00 EST |
88 |
|
Tag: blume-20020213-fptr-rtti |
89 |
|
Description: |
90 |
|
|
91 |
|
Fixed a bug in ml-nlffigen that was introduced with one of the previous |
92 |
|
updates. |
93 |
|
|
94 |
|
---------------------------------------------------------------------- |
95 |
|
Name: Matthias Blume |
96 |
|
Date: 2002/02/13 16:41:00 EST |
97 |
|
Tag: blume-20020213-cmlpq |
98 |
|
Description: |
99 |
|
|
100 |
|
Added new priority queue export symbols (which have just been added to |
101 |
|
smlnj-lib.cm) to CML's version of smlnj-lib.cm. (Otherwise CML would |
102 |
|
not compile and the installer would choke.) |
103 |
|
|
104 |
|
---------------------------------------------------------------------- |
105 |
|
Name: Matthias Blume |
106 |
|
Date: 2002/02/13 16:15:00 EST |
107 |
|
Tag: blume-20020213-various |
108 |
|
Description: |
109 |
|
|
110 |
|
1. More tweaks to ml-nlffigen: |
111 |
|
|
112 |
|
- better internal datastructures (resulting in slight speedup) |
113 |
|
- "-match" option requires exact match |
114 |
|
- "localized" gensym counters (untagged structs/unions nested within |
115 |
|
other structs/unions or within typedefs get a fresh counter; their |
116 |
|
tag will be prefixed by a concatenation of their parents' tags) |
117 |
|
- bug fixes (related to calculation of transitive closure of types |
118 |
|
to be included in the output) |
119 |
|
|
120 |
|
2. Minor Basis updates: |
121 |
|
|
122 |
|
- added implementations for List.collate and Option.app |
123 |
|
|
124 |
|
---------------------------------------------------------------------- |
125 |
|
Name: Matthias Blume |
126 |
|
Date: 2002/02/11 15:55:00 EST |
127 |
|
Tag: blume-20020211-gensym |
128 |
|
Description: |
129 |
|
|
130 |
|
Added a "-gensym" option to command line of ml-nlffigen. This can be |
131 |
|
used to specify a "stem" -- a string that is inserted in all "gensym'd" |
132 |
|
names (ML structure names that correspond to unnamed C structs, unions, |
133 |
|
and enums), so that separate runs of ml-nlffigen do not clash. |
134 |
|
|
135 |
|
---------------------------------------------------------------------- |
136 |
|
Name: Matthias Blume |
137 |
|
Date: 2002/02/11 12:05:00 EST |
138 |
|
Tag: blume-20020211-gensml |
139 |
|
Description: |
140 |
|
|
141 |
|
A quick fix for a problem with GenSML (in the pgraph-util library): |
142 |
|
Make generation of toplevel "local" optional. (Strictly speaking, |
143 |
|
signature definitions within "local" are not legal SML.) |
144 |
|
|
145 |
|
Other than that: updates to INSTALL and cm/TODO. |
146 |
|
|
147 |
|
---------------------------------------------------------------------- |
148 |
|
Name: Matthias Blume |
149 |
|
Date: 2002/02/08 15:00:00 EST |
150 |
|
Tag: blume-20020208-uniquepid |
151 |
|
Description: |
152 |
|
|
153 |
|
0. Version number has been bumped to 110.38.1. NEW BOOTFILES!!! |
154 |
|
|
155 |
|
1. The installer (config/install.sh) has gotten smarter: |
156 |
|
|
157 |
|
- Configuration options are a bit easier to specify now |
158 |
|
(in config/targets). |
159 |
|
- Bug in recognizing .tar.bz2 files fixed. |
160 |
|
- Installer automatically resolves dependencies between |
161 |
|
configuration options (e.g., if you ask for eXene, you will |
162 |
|
also get cml -- regardless whether you asked for it or not). |
163 |
|
- Installer can run in "quieter mode" by setting the environment |
164 |
|
variable INSTALL_QUIETLY to "true". "Quieter" does not mean |
165 |
|
"completely silent", though. |
166 |
|
- Build HashCons library as part of smlnj-lib. |
167 |
|
|
168 |
|
2. A new scheme for assigning persistent identifiers to compilation |
169 |
|
units (and, by extension, to types etc.) has been put into place. |
170 |
|
This fixes a long-standing bug where types and even dynamic values |
171 |
|
can get internally confused, thereby compromising type safety |
172 |
|
(abstraction) and dynamic correctness. See |
173 |
|
|
174 |
|
http://cm.bell-labs.com/cm/cs/who/blume/pid-confusion.tgz |
175 |
|
|
176 |
|
for an example of how things could go wrong until now. |
177 |
|
|
178 |
|
The downside of the new scheme is that pids are not quite as |
179 |
|
persistent as they used to be: CM will generate a fresh pid |
180 |
|
for every compilation unit that it thinks it sees for the first |
181 |
|
time. That means that if you compile starting from a clean, fresh |
182 |
|
source tree at two different times, you end up with different |
183 |
|
binaries. |
184 |
|
|
185 |
|
Cutoff recompilation, however, has not been compromised because |
186 |
|
CM keeps pid information in special caches between runs. |
187 |
|
|
188 |
|
---------------------------------------------------------------------- |
189 |
|
Name: Lal George |
190 |
|
Date: 2002/02/07 15:34:13 EST 2002 |
191 |
|
Tag: <none> |
192 |
|
Description: |
193 |
|
|
194 |
|
Compilers that generate assembly code may produce global labels |
195 |
|
whose value is resolved at link time. The various peephole optimization |
196 |
|
modules did not take this in account. |
197 |
|
|
198 |
|
TODO. The Labels.addrOf function should really return an option |
199 |
|
type so that clients are forced to deal with this issue, rather |
200 |
|
than an exception being raised. |
201 |
|
|
202 |
|
---------------------------------------------------------------------- |
203 |
|
Name: Lal George |
204 |
|
Date: 2002/02/06 13:55:02 EST |
205 |
|
Tag: george-20020206-ra-breakup |
206 |
|
Description: |
207 |
|
|
208 |
|
1. A bug fix from Allen. |
209 |
|
|
210 |
|
A typo causes extra fstp %st(0)'s to be generated at compensation |
211 |
|
edges, which might cause stack underflow traps at runtime. This |
212 |
|
occurs in fft where there are extraneous fstps right before the 'into' |
213 |
|
trap instruction (in this case they are harmless since none of the |
214 |
|
integers overflow.) |
215 |
|
|
216 |
|
2. Pulled out various utility modules that were embedded in the modules |
217 |
|
of the register allocator. I need these modules for other purposes, but |
218 |
|
they are not complete enough to put into a library (just yet). |
219 |
|
---------------------------------------------------------------------- |
220 |
|
Name: Matthias Blume |
221 |
|
Date: 2002/01/31 16:05:00 EST |
222 |
|
Tag: blume-20020131-sparc-ccalls |
223 |
|
Description: |
224 |
|
|
225 |
|
1. C-calls on Sparc needlessly allocated a huge chunk (96 bytes) |
226 |
|
of extra stack space by mistake. Fixed. |
227 |
|
|
228 |
|
2. Bug in logic of handling of command-line options in ml-nlffigen fixed. |
229 |
|
|
230 |
|
---------------------------------------------------------------------- |
231 |
|
Name: Allen Leung |
232 |
|
Date: 2002/01/30 |
233 |
|
Tag: leunga-20020130-nowhere-bug-fix |
234 |
|
Description: |
235 |
|
|
236 |
|
MLRISC bug fixes: |
237 |
|
1. Fixed a bindings computation bug in the 'nowhere' program generator tool. |
238 |
|
2. MachineInt.fromString was negating its value. |
239 |
|
|
240 |
|
---------------------------------------------------------------------- |
241 |
|
Name: Matthias Blume |
242 |
|
Date: 2002/01/29 |
243 |
|
Tag: blume-20020129-INSTALL |
244 |
|
Description: |
245 |
|
|
246 |
|
- Added somewhat detailed installation instructions (file INSTALL). |
247 |
|
- Fixed curl-detection bug in config/install.sh. |
248 |
|
- It is now possible to select the URL getter using the URLGETTER |
249 |
|
environment variable: |
250 |
|
|
251 |
|
not set / "unknown" --> automatic detection (script tries wget, |
252 |
|
curl, and lynx) |
253 |
|
"wget" / "curl" / "lynx" --> use the specified program (script "knows" |
254 |
|
how to properly invoke them) |
255 |
|
other --> use $URLGETTER directly, it must take |
256 |
|
precisely two command-line arguments |
257 |
|
(source URL and destination file name) |
258 |
|
|
259 |
|
---------------------------------------------------------------------- |
260 |
|
Name: Matthias Blume |
261 |
|
Date: 2002/01/28 |
262 |
|
Tag: blume-20020128-sparc-ccalls |
263 |
|
Description: |
264 |
|
|
265 |
|
- Fixed problem with calculation of "used" registers in sparc-c-calls. |
266 |
|
- Make use of the allocParam argument in sparc-c-calls. |
267 |
|
|
268 |
|
---------------------------------------------------------------------- |
269 |
|
Name: Matthias Blume |
270 |
|
Date: 2002/01/28 |
271 |
|
Tag: blume-20020128-allocParam |
272 |
|
Description: |
273 |
|
|
274 |
|
John Reppy: Changes c-calls API to accept client-callback for |
275 |
|
allocating extra stack space. |
276 |
|
me: Corresponding changes to mlriscGen (using a dummy argument that |
277 |
|
does not change the current behavior). |
278 |
|
|
279 |
|
---------------------------------------------------------------------- |
280 |
|
Name: Matthias Blume |
281 |
|
Date: 2002/01/28 12:00:00 |
282 |
|
Tag: Release_110_38 |
283 |
|
Description: |
284 |
|
|
285 |
|
This time for real!!! |
286 |
|
|
287 |
|
---------------------------------------------------------------------- |
288 |
|
Name: Matthias Blume |
289 |
|
Date: 2002/01/28 10:56:00 EST |
290 |
|
Tag: blume-20020128-retraction |
291 |
|
Description: |
292 |
|
|
293 |
|
0. Retracted earlier 110.38. (The Release_110_38 tag has been replaced |
294 |
|
with blume-Release_110_38-retracted.) |
295 |
|
|
296 |
|
1. Fixed a problem with incorrect rounding modes in real64.sml. |
297 |
|
(Thanks to Andrew Mccreight <andrew.mccreight@yale.edu>.) |
298 |
|
|
299 |
|
2. A bug in ml-nlffigen related to the handling of unnamed structs, unions, |
300 |
|
and enums fixed. The naming of corresponding ML identifiers should |
301 |
|
now be consistent again. |
302 |
|
|
303 |
|
---------------------------------------------------------------------- |
304 |
|
Name: Allen Leung |
305 |
|
Date: 2002/01/27 |
306 |
|
Tag: leunga-20020127-nowhere |
307 |
|
Description: |
308 |
|
|
309 |
|
Added a target called nowhere in the configuration scripts. |
310 |
|
Enabling this will build the MLRISC 'nowhere' tool (for translating |
311 |
|
programs with where-clauses into legal SML code) during installation. |
312 |
|
|
313 |
|
---------------------------------------------------------------------- |
314 |
|
Name: Matthias Blume |
315 |
|
Date: 2002/01/25 21:27:00 EST |
316 |
|
Tag: blume-Release_110_38-retracted |
317 |
|
Description: |
318 |
|
|
319 |
|
Call it a (working) release! Version is 110.38. Bootfiles are ready. |
320 |
|
|
321 |
|
README will be added later. |
322 |
|
|
323 |
|
!!! NOTE: Re-tagged as blume-Release_110_38-retracted. Original tag |
324 |
|
(Release_110_38) removed. Reason: Last-minute bug fixes. |
325 |
|
|
326 |
|
---------------------------------------------------------------------- |
327 |
|
Name: Matthias Blume |
328 |
|
Date: 2002/01/25 |
329 |
|
Tag: blume-20020125-ffi |
330 |
|
Description: |
331 |
|
|
332 |
|
A large number of tweaks and improvements to ml-nlffi-lib and |
333 |
|
ml-nlffigen: |
334 |
|
|
335 |
|
- ML represenation types have been streamlined |
336 |
|
- getter and setter functions work with concrete values, not abstract |
337 |
|
ones where possible |
338 |
|
- ml-nlffigen command line more flexible (see README file there) |
339 |
|
- some bugs have been fixed (hopefully) |
340 |
|
|
341 |
|
---------------------------------------------------------------------- |
342 |
|
Name: Lal George |
343 |
|
Date: 2002/01/24 |
344 |
|
Tag: george-20020124-risc-ra-interface |
345 |
|
Description: |
346 |
|
|
347 |
|
There is a dramatic simplification in the interface to the |
348 |
|
register allocator for RISC architectures as a result of making |
349 |
|
parallel copy instructions explicit. |
350 |
|
|
351 |
|
---------------------------------------------------------------------- |
352 |
|
Name: Matthias Blume |
353 |
|
Date: 2002/01/22 |
354 |
|
Tag: blume-20020122-x86-ccalls |
355 |
|
Description: |
356 |
|
|
357 |
|
Bug fix for c-calls on x86 (having to do with how char- and |
358 |
|
short-arguments are being handled). |
359 |
|
|
360 |
|
---------------------------------------------------------------------- |
361 |
|
Name: Matthias Blume |
362 |
|
Date: 2002/01/21 |
363 |
|
Tag: blume-20020121-ff |
364 |
|
Description: |
365 |
|
|
366 |
|
Another day of fiddling with the FFI... |
367 |
|
|
368 |
|
1. Bug fix/workaround: CKIT does not complain about negative array |
369 |
|
dimensions, so ml-nlffigen has to guard itself against this possibility. |
370 |
|
(Otherwise a negative dimension would send it into an infinite loop.) |
371 |
|
|
372 |
|
2. Some of the abstract types (light objects, light pointers, most "base" |
373 |
|
types) in structure C are now eqtypes. |
374 |
|
|
375 |
|
3. Added constructors and test functions for NULL function pointers. |
376 |
|
|
377 |
|
---------------------------------------------------------------------- |
378 |
|
Name: Matthias Blume |
379 |
|
Date: 2002/01/18 |
380 |
|
Tag: blume-20020118-ready-for-new-release |
381 |
|
Description: |
382 |
|
|
383 |
|
Made config/srcarchiveurl point to a new place. (Will provide boot |
384 |
|
files shortly.) |
385 |
|
|
386 |
|
Maybe we christen this to be 110.38? |
387 |
|
|
388 |
|
---------------------------------------------------------------------- |
389 |
|
Name: Matthias Blume |
390 |
|
Date: 2002/01/18 |
391 |
|
Tag: blume-20020118-more-ffifiddle |
392 |
|
Description: |
393 |
|
|
394 |
|
Today's FFI fiddling: |
395 |
|
|
396 |
|
- Provided a structure CGetSet with "convenient" versions of C.Get.* and |
397 |
|
C.Set.* that use concrete (MLRep.*) arguments and results instead |
398 |
|
of abstract ones. |
399 |
|
|
400 |
|
- Provided word-style bit operations etc. for "int" representation |
401 |
|
types in MLRep.S<Foo>Bitops where <Foo> ranges over Char, Int, Short, |
402 |
|
and Long. |
403 |
|
|
404 |
|
---------------------------------------------------------------------- |
405 |
|
Name: Matthias Blume |
406 |
|
Date: 2002/01/18 |
407 |
|
Tag: blume-20020118-use-x86-fp |
408 |
|
Description: |
409 |
|
|
410 |
|
Now that x86-fast-fp seems to be working, I turned it back on again |
411 |
|
by default. (Seems to work fine now, even with the FFI.) |
412 |
|
|
413 |
|
Other than that, I added some documentation about the FFI to |
414 |
|
src/ml-nlffigen/README and updated the FFI test examples in |
415 |
|
src/ml-nlffi-lib/Tests/*. |
416 |
|
|
417 |
|
---------------------------------------------------------------------- |
418 |
|
Name: Allen Leung |
419 |
|
Date: 2002/01/17 |
420 |
|
Tag: leunga-20020117-x86-fast-fp-call |
421 |
|
Description: |
422 |
|
|
423 |
|
1. Fixed a problem with handling return fp values when x86's fast fp |
424 |
|
mode is turned on. |
425 |
|
|
426 |
|
2. Minor pretty printing fix for cellset. Print %st(0) as %st(0) instead |
427 |
|
of %f32. |
428 |
|
|
429 |
|
3. Added a constructor INT32lit to the ast of MLRISC tools. |
430 |
|
|
431 |
|
---------------------------------------------------------------------- |
432 |
|
Name: Matthias Blume |
433 |
|
Date: 2002/01/16 |
434 |
|
Tag: blume-20020116-ffifiddle |
435 |
|
Description: |
436 |
|
|
437 |
|
More fiddling with the FFI interface: |
438 |
|
|
439 |
|
- Make constness 'c instead of rw wherever possible. This eliminates |
440 |
|
the need for certain explicit coercions. (However, due to ML's |
441 |
|
value polymorphism, there will still be many cases where explicit |
442 |
|
coercions are necessary. Phantom types are not the whole answer |
443 |
|
to modeling a subtyping relationship in ML.) |
444 |
|
|
445 |
|
- ro/rw coersions for pointers added. (Avoids the detour through */&.) |
446 |
|
|
447 |
|
- "printf" test example added to src/ml-nlffi-lib/Tests. (Demonstrates |
448 |
|
clumsy workaround for varargs problem.) |
449 |
|
|
450 |
|
---------------------------------------------------------------------- |
451 |
|
Name: Lal George |
452 |
|
Date: 2002/01/15 |
453 |
|
Tag: <none> |
454 |
|
Description: |
455 |
|
|
456 |
|
1. Since COPY instructions are no longer native to the architecture, |
457 |
|
a generic functor can be used to implement the expandCopies function. |
458 |
|
|
459 |
|
2. Allowed EXPORT and IMPORT pseudo-op declarations to appear inside a |
460 |
|
TEXT segment. |
461 |
|
|
462 |
|
---------------------------------------------------------------------- |
463 |
|
Name: Matthias Blume |
464 |
|
Date: 2002/01/15 |
465 |
|
Tag: blume-20020115-ffiupdates |
466 |
|
Description: |
467 |
|
|
468 |
|
1. Fix for bug resulting in single-precision float values being returned |
469 |
|
incorrectly from FFI calls. |
470 |
|
|
471 |
|
2. Small modifications to C FFI API: |
472 |
|
|
473 |
|
- memory-allocation routines return straight objects (no options) |
474 |
|
and raise an exception in out-of-memory situations |
475 |
|
- unsafe extensions to cast between function pointers and pointers |
476 |
|
from/to ints |
477 |
|
- added structure C_Debug as an alternative to structure C where |
478 |
|
pointer-dereferencing (|*| and |*!) always check for null-pointers |
479 |
|
- added open_lib' to DynLinkage; open_lib' works like open_lib |
480 |
|
but also takes a (possibly empty) list of existing library handles |
481 |
|
that the current library depends on |
482 |
|
|
483 |
|
---------------------------------------------------------------------- |
484 |
|
Name: Matthias Blume |
485 |
|
Date: 2002/01/10 |
486 |
|
Tag: blume-20020110-newffigen |
487 |
|
Description: |
488 |
|
|
489 |
|
1. Updates to portable graph code. |
490 |
|
|
491 |
|
2. Major update to ml-nlffigen and ml-nlffi-lib. Things are much |
492 |
|
more scalable now so that even huge interfaces such as the one |
493 |
|
for GTK compile in finite time and space. :-) |
494 |
|
See src/ml-nlffigen/README for details on what's new. |
495 |
|
|
496 |
---------------------------------------------------------------------- |
---------------------------------------------------------------------- |
497 |
Name: Lal George |
Name: Lal George |
498 |
Date: 2001/01/09 14:31:35 EST 2002 |
Date: 2001/01/09 14:31:35 EST 2002 |
837 |
|
|
838 |
---------------------------------------------------------------------- |
---------------------------------------------------------------------- |
839 |
Name: Matthias Blume |
Name: Matthias Blume |
|
>>>>>>> 1.169 |
|
840 |
Date: 2001/09/18 15:35:00 EDT |
Date: 2001/09/18 15:35:00 EDT |
841 |
Tag: blume-20010918-readme11036 |
Tag: blume-20010918-readme11036 |
842 |
Description: |
Description: |