13 |
Description: |
Description: |
14 |
|
|
15 |
---------------------------------------------------------------------- |
---------------------------------------------------------------------- |
16 |
Name: Matthias Blume (blume@tti-c.org) |
Name: Matthias Blume (blume (at) tti - c (dot) org) |
17 |
|
Date: 2004/07/14 16:25:00 CDT |
18 |
|
Tag: blume-20040714-union |
19 |
|
Description: |
20 |
|
|
21 |
|
Added C_UNION to c-calls/c-types.sml and updated the machinery |
22 |
|
(ml-nlffigen, cproto.sml) that conveys C function interface |
23 |
|
information to the code generator. |
24 |
|
|
25 |
|
However, the actual architecture-specific implementation of function |
26 |
|
arguments and results that are C unions is still not implemented. |
27 |
|
|
28 |
|
---------------------------------------------------------------------- |
29 |
|
Name: Allen Leung (leunga (at) reservoir (dot) com) |
30 |
|
Date: 2004/07/14 14:38:00 EST |
31 |
|
Tag: leunga-110_46_1-ppc-lwzu |
32 |
|
Description: |
33 |
|
|
34 |
|
Added these instructions to the PowerPC architecture: |
35 |
|
LBZU(X), LHZU(X), LWZU(X), |
36 |
|
STWU(X), STFDU, STFSU |
37 |
|
|
38 |
|
etc... |
39 |
|
|
40 |
|
Note: I haven't added their instruction encoding into the description. |
41 |
|
|
42 |
|
---------------------------------------------------------------------- |
43 |
|
Name: Allen Leung (leunga (at) reservoir (dot) com) |
44 |
|
Date: 2004/07/13 15:04:00 EST |
45 |
|
Tag: leunga-110_46_1-ppc-lwarx |
46 |
|
Description: |
47 |
|
|
48 |
|
Added the two instructions LWARX and STWCX to the PowerPC |
49 |
|
instruction set. |
50 |
|
|
51 |
|
A (untested) rewrite of loop-structure.sml. The old version |
52 |
|
is completely broken. |
53 |
|
|
54 |
|
---------------------------------------------------------------------- |
55 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
56 |
|
Date: 2004/07/13 13:50:00 CDT |
57 |
|
Tag: blume-20040713-nlffi |
58 |
|
Description: |
59 |
|
|
60 |
|
- use paramAlloc to report c-calls with too many arguments |
61 |
|
(for PPC version where parameter area is pre-allocated) |
62 |
|
- added ccall_maxargspace to machspec (to implement the above) |
63 |
|
- made "make" commend in CM's "make" tool configurable |
64 |
|
- added option (default: on) for passing the name of the SML/NJ's "bin" |
65 |
|
directory to "make"; the call looks like this: |
66 |
|
|
67 |
|
make <options> SMLNJ_BINDIR=<dir> <target> |
68 |
|
|
69 |
|
This can be used by the Makefile to, e.g., pick the "right" version |
70 |
|
of ml-nlffigen. |
71 |
|
- minor code tweaks |
72 |
|
|
73 |
|
---------------------------------------------------------------------- |
74 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
75 |
|
Date: 2004/07/12 22:50:00 CDT |
76 |
|
Tag: blume-110_46_1-macosx-nlffi |
77 |
|
Description: |
78 |
|
|
79 |
|
NLFFI under Mac OS X now working (sort of). This is largely untested, |
80 |
|
though. |
81 |
|
|
82 |
|
Note: 1. You have to make a new, clean build of the runtime system. |
83 |
|
2. There are new BOOTFILES, you have to use them! |
84 |
|
(Doing the bootstrap process yourself would be *very* painful! |
85 |
|
If you absolutely have to do it, build the system under |
86 |
|
a different architecture and then cross-compile.) |
87 |
|
|
88 |
|
Version bumped to 110.46.1 to account for runtime data format changes. |
89 |
|
|
90 |
|
---------------------------------------------------------------------- |
91 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
92 |
|
Date: 2004/06/18 14:30:00 CDT |
93 |
|
Tag: blume-20040618-unix |
94 |
|
Description: |
95 |
|
|
96 |
|
Changed the implementation of structure Unix so that the same stream |
97 |
|
is returned every time one of the {text,bin}{In,Out}streamOf functions |
98 |
|
is invoked on the same proc. This is not what the spec currently |
99 |
|
says -- although IMO it arguably should. (See discussion below.) |
100 |
|
|
101 |
|
---------------------------------------------------------------------- |
102 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
103 |
|
Date: 2004/06/17 18:15:00 CDT |
104 |
|
Tag: Release_110_46 |
105 |
|
Description: |
106 |
|
|
107 |
|
New working version (110.46). NEW BOOTFILES! |
108 |
|
|
109 |
|
---------------------------------------------------------------------- |
110 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
111 |
|
Date: 2004/06/17 17:20:00 CDT |
112 |
|
Tag: blume-20040617-timer-unix |
113 |
|
Description: |
114 |
|
|
115 |
|
Changed the interface of structures Timer and Unix to match the most |
116 |
|
recent Basis spec. |
117 |
|
|
118 |
|
In the case of Unix there still seems to be an open/weird issue: |
119 |
|
|
120 |
|
The {text,bin}{In,Out}streamOf functions are supposed to create |
121 |
|
fresh streams whenever they are called -- as opposed to have them |
122 |
|
return the same stream every time. This design is supposed to |
123 |
|
prevent space leaks caused by proc values hanging on to streams. |
124 |
|
|
125 |
|
The reap function, on the other hand, is supposed to close the |
126 |
|
streams. This cannot be done without having a handle on the |
127 |
|
stream in proc after all... |
128 |
|
|
129 |
|
I took the liberty to implement the following stopgap solution: |
130 |
|
|
131 |
|
The proc value hangs on to the most recently created stream(s). |
132 |
|
Reap closes those. If either or both of the two streams hadn't |
133 |
|
been created at all yet, then reap will close the corresponding |
134 |
|
file descriptors directly. |
135 |
|
|
136 |
|
PS: I don't understand the original space leak argument anymore. If |
137 |
|
a proc hangs on to the imperative stream, then I/O operations on those |
138 |
|
will advance the state of the cached stream and avoid the space leak. |
139 |
|
|
140 |
|
---------------------------------------------------------------------- |
141 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
142 |
|
Date: 2004/05/28 16:45:00 CDT |
143 |
|
Tag: blume-20040528-basis |
144 |
|
Description: |
145 |
|
|
146 |
|
Added signature PACK_REAL and exported functor PrimIO. |
147 |
|
|
148 |
|
---------------------------------------------------------------------- |
149 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
150 |
|
Date: 2004/05/25 16:00:00 CDT |
151 |
|
Tag: blume-20040525-group-owner |
152 |
|
Description: |
153 |
|
|
154 |
|
CM now ignores (but still accepts) the "owner" information in group |
155 |
|
descriptions. The owner of a group is its next enclosing |
156 |
|
library. Each group must have a unique owner. (There is a virtual |
157 |
|
"toplevel" library that owns groups which are not nested within a real |
158 |
|
library.) Previously, each group had to explicitly declare its owner, |
159 |
|
and CM would check that such a declaration is correct. The new scheme |
160 |
|
is to have CM check that for each group there is precisely one owning |
161 |
|
library. |
162 |
|
|
163 |
|
The advantage of the new scheme is that the programmer no longer needs |
164 |
|
to maintain the somewhat annoying owner information. The downside is |
165 |
|
that CM cannot enforce the ownership rule across multiple runs of |
166 |
|
CM.make. Fortunately, enclosing the same group in two different |
167 |
|
libraries A and B which are not part of the same program does not |
168 |
|
cause real problems. |
169 |
|
|
170 |
|
---------------------------------------------------------------------- |
171 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
172 |
|
Date: 2004/05/20 16:00:00 CDT |
173 |
|
Tag: blume-20040520-win32 |
174 |
|
Description: |
175 |
|
|
176 |
|
Made the win32 version work again. (Strangely, a misplaced comma had |
177 |
|
slipped into win32-process.c which prevented the runtime from being |
178 |
|
compiled correctly.) |
179 |
|
|
180 |
|
Also, included a minor addition to ml-build.bat analogous to what was |
181 |
|
done in blume-20040519-ml-build. |
182 |
|
|
183 |
|
---------------------------------------------------------------------- |
184 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
185 |
|
Date: 2004/05/19 22:10:00 CDT |
186 |
|
Tag: blume-20040519-ml-build |
187 |
|
Description: |
188 |
|
|
189 |
|
Arranged for ml-build to clean up after itself a little bit better. |
190 |
|
The script generates a temporary SML source file and compiles it using |
191 |
|
CM, so CM generates metadata (GUID, SKEL, objectfile) for it. It now |
192 |
|
gets rid of those at the end, so they don't accumulate under .cm. |
193 |
|
|
194 |
|
This required a minor change to install.sh because the name of the |
195 |
|
metadata directory (default: .cm) is actually configurable at |
196 |
|
installation time. |
197 |
|
|
198 |
|
---------------------------------------------------------------------- |
199 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
200 |
|
Date: 2004/05/18 15:50:00 CDT |
201 |
|
Tag: blume-20040518-mkreader |
202 |
|
Description: |
203 |
|
|
204 |
|
Added Posix.IO.mk{Bin,Text}{Reader,Writer} by lifting their respective |
205 |
|
implementations from internal modules PosixBinPrimIO and PosixTextPrimIO. |
206 |
|
|
207 |
|
---------------------------------------------------------------------- |
208 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
209 |
|
Date: 2004/05/11 14:35:00 CDT |
210 |
|
Tag: blume-20040511-win32sock |
211 |
|
Description: |
212 |
|
|
213 |
|
Added previously missing support for many socket-related functions |
214 |
|
under win32. Thanks to David Hansel <hansel@reactive-systems.com> |
215 |
|
for the voluminous patch! |
216 |
|
|
217 |
|
(I have not tested this patch under win32 yet.) |
218 |
|
|
219 |
|
Here is David's e-mail: |
220 |
|
|
221 |
|
Hi, |
222 |
|
|
223 |
|
Attached to this email you find a diff against sml/nj 110.45 |
224 |
|
that will enable socket support under Windows. |
225 |
|
|
226 |
|
To apply the patch (using unix or cygwin) |
227 |
|
1) gunzip runtime.diff.gz |
228 |
|
2) "cd" into "src/runtime" in the source tree of a fresh |
229 |
|
110.45 installation. |
230 |
|
3) patch -p 1 < [your/path/to]runtime.diff |
231 |
|
|
232 |
|
The code compiles fine but has NOT yet been extensively tested. |
233 |
|
I only ran a few tests for basic socket client functionality |
234 |
|
(which worked fine). Especially the functions that use ioctl |
235 |
|
are not tested at all and might not work (see below). |
236 |
|
|
237 |
|
I implemented this since we want to move to a newer version of sml/nj |
238 |
|
but need socket support in order to use it. This is the first time I |
239 |
|
even had a look at the sml/nj source, so please review my changes |
240 |
|
before making this part of the distribution! Here are a few issues |
241 |
|
that I think might be better for someone to solve who is more |
242 |
|
familiar with the sml/nj source (and socket programming): |
243 |
|
|
244 |
|
- getnetbyaddr.c and getnetbyname.c will raise a "not implemented" |
245 |
|
exception since I could not figure out what the windows equivalent |
246 |
|
of these functions is |
247 |
|
|
248 |
|
- In sockets-osdep.h there are a some #include statements that are |
249 |
|
only used in a few files that include sockets-osdep.h |
250 |
|
|
251 |
|
- In smlnj-sock-lib.c, function init_fn() calls WSAStartup() but |
252 |
|
does not process its return value since I don't know how to |
253 |
|
report an error upwards. |
254 |
|
|
255 |
|
- It would probably be good to have a call to WSACleanup() when |
256 |
|
the library is unloaded (if there is such a possibility). |
257 |
|
Otherwise I think Windows will take care of this automatically |
258 |
|
when the process finishes. |
259 |
|
|
260 |
|
- I used ioctlsocket() as a replacement for ioctl() but I have |
261 |
|
no idea if that is actually the proper replacement on Windows. |
262 |
|
|
263 |
|
- All these issues are marked in the code by "FIXME" comments. |
264 |
|
|
265 |
|
We use sml/nj extensively in our products and are quite happy |
266 |
|
with it. I hope this contribution will help you. |
267 |
|
|
268 |
|
Keep up the good work! |
269 |
|
|
270 |
|
David |
271 |
|
|
272 |
|
---------------------------------------------------------------------- |
273 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
274 |
|
Date: 2004/05/11 14:20:00 CDT |
275 |
|
Tag: blume-20040511-installml |
276 |
|
Description: |
277 |
|
|
278 |
|
Fixed two bugs in installml script. (Thanks to Vesa A. Norrman for |
279 |
|
the patch.) |
280 |
|
|
281 |
|
---------------------------------------------------------------------- |
282 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
283 |
|
Date: 2004/05/11 14:05:00 CDT |
284 |
|
Tag: blume-20040511-nlffi-netbsd |
285 |
|
Description: |
286 |
|
|
287 |
|
Added support for nlffi under netbsd. (Thanks to Vesa A. Norrman for |
288 |
|
the patch.) |
289 |
|
|
290 |
|
---------------------------------------------------------------------- |
291 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
292 |
|
Date: 2004/05/11 12:05:00 CDT |
293 |
|
Tag: blume-20040511-exports |
294 |
|
Description: |
295 |
|
|
296 |
|
As per request by Adam Chlipala <adam@hcoop.net>, extended various |
297 |
|
export lists in compiler-related .cm-files. |
298 |
|
|
299 |
|
---------------------------------------------------------------------- |
300 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
301 |
|
Date: 2004/05/11 11:35:00 CDT |
302 |
|
Tag: blume-20040511-allsource |
303 |
|
Description: |
304 |
|
|
305 |
|
The installer now honors the "src-smlnj" target again, although its meaning |
306 |
|
has changed from "all sources required for the compiler" to "all sources |
307 |
|
the installer knows about". In other words, if you enable "src-smlnj" |
308 |
|
in the "targets" file, then the installer will pull in sources for |
309 |
|
everything. (Notice that this refers to source code only. Compiled |
310 |
|
code is still only installed for modules that were requested explicitly |
311 |
|
or which are required for other modules that were requested explicitly.) |
312 |
|
|
313 |
|
---------------------------------------------------------------------- |
314 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
315 |
|
Date: 2004/04/23 17:40:00 CDT |
316 |
|
Tag: blume-20040423-ieee-scan |
317 |
|
Description: |
318 |
|
|
319 |
|
Fixed IEEEReal.scan (and .fromString) so that if there is an overflow |
320 |
|
in the exponent calculation we get INF or ZERO (depending on the mantissa |
321 |
|
and the sign of the exponent). |
322 |
|
|
323 |
|
---------------------------------------------------------------------- |
324 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
325 |
|
Date: 2004/04/23 10:40:00 CDT |
326 |
|
Tag: blume-20040423-ml-build |
327 |
|
Description: |
328 |
|
|
329 |
|
The ml-build script now terminates with a non-0 status when something |
330 |
|
goes wrong. |
331 |
|
|
332 |
|
---------------------------------------------------------------------- |
333 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
334 |
|
Date: 2004/04/22 16:35:00 CDT |
335 |
|
Tag: blume-20040422-Option |
336 |
|
Description: |
337 |
|
|
338 |
|
Made exception Option to be the same as exception Option.Option |
339 |
|
(as it should be). |
340 |
|
|
341 |
|
---------------------------------------------------------------------- |
342 |
|
Name: Allen Leung (leunga (at) reservoir (dot) com) |
343 |
|
Date: 2004/03/19 14:40:00 EST |
344 |
|
Tag: leunga-20040319-cygwin-nlffi |
345 |
|
Description: |
346 |
|
|
347 |
|
Fixed the runtime so that ml-nlffi-lib runs on the cygwin version |
348 |
|
of SML/NJ. The problem is that |
349 |
|
|
350 |
|
lib = dlopen(NULL, ...) |
351 |
|
f = dlsym(lib, "malloc"); |
352 |
|
|
353 |
|
does not work on Windows unless we explicitly export symbols |
354 |
|
such as 'malloc' during linking. We fixed this by explicitly |
355 |
|
exporting the required symbols with the magic gcc incantation: |
356 |
|
|
357 |
|
-Wl,--export-all cygwin.def |
358 |
|
|
359 |
|
where cygwin.def is a file containing all the symbols that |
360 |
|
we wish to export. |
361 |
|
|
362 |
|
I suspect this is a Windows problem and we'll have to |
363 |
|
do the same (somehow with windows compilers) when |
364 |
|
we build the native win32 version with the system |
365 |
|
calls LoadLibrary/GetProcAddress. |
366 |
|
|
367 |
|
---------------------------------------------------------------------- |
368 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
369 |
|
Date: 2004/03/04 16:35:00 CST |
370 |
|
Tag: blume-20040304-intinf-fmt |
371 |
|
Description: |
372 |
|
|
373 |
|
Fixed problem with IntInf.fmt (sign would show up on the right instead |
374 |
|
of on the left for BIN, OCT, and HEX). |
375 |
|
|
376 |
|
---------------------------------------------------------------------- |
377 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
378 |
|
Date: 2004/03/04 11:25:00 CST |
379 |
|
Tag: blume-20040304-symlinks |
380 |
|
Description: |
381 |
|
|
382 |
|
Fixed problem with installer script (unix only) where bin/ml-yacc and |
383 |
|
friends pointed (via symlinks) to absolute locations instead of just |
384 |
|
.run-sml. This was reported by Vesa A Norrman. |
385 |
|
|
386 |
|
---------------------------------------------------------------------- |
387 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
388 |
|
Date: 2004/02/13 14:50:00 CST |
389 |
|
Tag: Release_110_45 |
390 |
|
Description: |
391 |
|
|
392 |
|
New working version (110.45). New bootfiles. |
393 |
|
|
394 |
|
---------------------------------------------------------------------- |
395 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
396 |
|
Date: 2004/01/26 15:15:15 CST |
397 |
|
Tag: blume-20040126-toplevel |
398 |
|
Description: |
399 |
|
|
400 |
|
Improved handling of exceptions at the interactive toplevel. |
401 |
|
|
402 |
|
---------------------------------------------------------------------- |
403 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
404 |
|
Date: 2004/01/26 11:25:00 |
405 |
|
Tag: blume-20040126-app |
406 |
|
Description: |
407 |
|
|
408 |
|
Type of top-level "app" corrected. |
409 |
|
Added code for setting vp_limitPtrMask to Win32-specific runtime. |
410 |
|
|
411 |
|
---------------------------------------------------------------------- |
412 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
413 |
|
Date: 2003/11/18 17:10 CST |
414 |
|
Tag: blume-20031118-basis-fiddle |
415 |
|
Description: |
416 |
|
|
417 |
|
- changed Timer interface to what might become the spec |
418 |
|
- POSIX_FLAGS -> BIT_FLAGS according to spec |
419 |
|
- some other minor discrepancies wrt. spec eliminated |
420 |
|
|
421 |
|
---------------------------------------------------------------------- |
422 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
423 |
|
Date: 2003/11/06 12:00:00 CST |
424 |
|
Tag: Release_110_44 |
425 |
|
Description: |
426 |
|
|
427 |
|
New working version (110.44). New bootfiles. |
428 |
|
|
429 |
|
---------------------------------------------------------------------- |
430 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
431 |
|
Date: 2003/11/04 11:50:00 CST |
432 |
|
Tag: blume-20031104-move-libraries |
433 |
|
Description: |
434 |
|
|
435 |
|
Eliminated the "dont_move_libraries" directive in config/targets. |
436 |
|
(The mechanism was broken and could not be fixed easily. Moreover, |
437 |
|
there does not seem to be any reason not to move all libraries into |
438 |
|
lib during installation. I originally implemented this directive as a |
439 |
|
backward-compatibility feature when I first introduced the new CM. |
440 |
|
Now that things have been stable for a long time and going back to the |
441 |
|
old CM is not an option, there is no reason to keep it around.) |
442 |
|
|
443 |
|
---------------------------------------------------------------------- |
444 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
445 |
|
Date: 2003/11/03 16:00:00 CST |
446 |
|
Tag: blume-20031103-installdir |
447 |
|
Description: |
448 |
|
|
449 |
|
Made installer honor INSTALLDIR variable again. (Thanks to Chris |
450 |
|
Richards for pointing out the problem and providing the solution.) |
451 |
|
|
452 |
|
---------------------------------------------------------------------- |
453 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
454 |
|
Date: 2003/10/01 17:05:00 CDT |
455 |
|
Tag: blume-20031001-lal-mlrisc |
456 |
|
Description: |
457 |
|
|
458 |
|
MLRISC bug fix from Lal. |
459 |
|
|
460 |
|
---------------------------------------------------------------------- |
461 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
462 |
|
Date: 2003/09/30 16:10:00 CDT |
463 |
|
Tag: blume-20030930-primio-bat |
464 |
|
Description: |
465 |
|
|
466 |
|
1. Added openVector, nullRd, and nullWr to PRIM_IO. |
467 |
|
2. Improved .bat files (for Win32 port) to make things work under Win95. |
468 |
|
(thanks to Aaron S. Hawley for this one) |
469 |
|
|
470 |
|
---------------------------------------------------------------------- |
471 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
472 |
|
Date: 2003/09/26 16:05:00 CDT |
473 |
|
Tag: blume-20030926-wrappriv |
474 |
|
Description: |
475 |
|
|
476 |
|
Added missing wrapper for privilege "primitive" in $smlnj/viscomp/core.cm. |
477 |
|
|
478 |
|
---------------------------------------------------------------------- |
479 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
480 |
|
Date: 2003/09/26 15:00:00 CDT |
481 |
|
Tag: blume-20030926-110_43_3 |
482 |
|
Description: |
483 |
|
|
484 |
|
- additional cleanup |
485 |
|
- version number bump, NEW BOOTFILES |
486 |
|
|
487 |
|
---------------------------------------------------------------------- |
488 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
489 |
|
Date: 2003/09/26 12:00:00 CDT |
490 |
|
Tag: blume-20030926-ppautoload |
491 |
|
Description: |
492 |
|
|
493 |
|
I modified the read-eval-print loop so that the autoloader gets |
494 |
|
invoked whenever the prettyprinter tries to look up a symbol that |
495 |
|
is not currently defined in the toplevel environment but which |
496 |
|
appears in CM's autoload registry. As a result, we see far fewer of |
497 |
|
those ?.Foo.Bar.xxx names in the prettyprinter's output. |
498 |
|
|
499 |
|
In addition to this I tried to clean up some pieces of the Basis |
500 |
|
implementation (e.g., Socket, Word8Array) in order to prevent other |
501 |
|
instances of these ?.Foo.Bar.xxx names from being printed. |
502 |
|
|
503 |
|
The mechanism that picks names for types still needs some work, though. |
504 |
|
(Right now it seems that if there is a type A.t which is defined to |
505 |
|
be B.u, but B is unavailable at toplevel, then A.t gets printed as |
506 |
|
"?.B.u" although the perhaps more sensible solution would be to use |
507 |
|
"A.t" in this case. In other words, the prettyprinter should follow |
508 |
|
a chain of DEFtycs not farther than there are corresponding toplevel |
509 |
|
names in the current environment.) |
510 |
|
|
511 |
|
---------------------------------------------------------------------- |
512 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
513 |
|
Date: 2003/09/24 16:31:00 CDT |
514 |
|
Tag: blume-20030924-installer |
515 |
|
Description: |
516 |
|
|
517 |
|
Another installer tweak: All the ML code for the installer is now |
518 |
|
compiled during CMB.make and put into a little library called |
519 |
|
$smlnj/installer.cm. The installation then simply invokes |
520 |
|
|
521 |
|
sml -m $smlnj/installer.cm |
522 |
|
|
523 |
|
and everything happens automagically. |
524 |
|
|
525 |
|
Win32: ML code senses value of environment variable SMLNJ_HOME. |
526 |
|
Unix: ML code senses values of environment variables ROOT, CONFIGDIR, |
527 |
|
and BINDIR. |
528 |
|
|
529 |
|
The new scheme guarantees that the ML code responsible for the installation |
530 |
|
is in sync with the APIs of the main system. Also, the installer is |
531 |
|
somewhat faster because the installer script is precompiled. |
532 |
|
|
533 |
|
---------------------------------------------------------------------- |
534 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
535 |
|
Date: 2003/09/24 15:35:00 CDT |
536 |
|
Tag: blume-20030924-synsock |
537 |
|
Description: |
538 |
|
|
539 |
|
Added a signature SYNCHRONOUS_SOCKET to basis.cm. This is like SOCKET |
540 |
|
but excludes all non-blocking operations. Defined SOCKET (in Basis) |
541 |
|
and CML_SOCKET in terms of SYNCHRONOUS_SOCKET. Removed superfluous |
542 |
|
implementations of non-blocking operations from CML's Socket |
543 |
|
structure. |
544 |
|
|
545 |
|
---------------------------------------------------------------------- |
546 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
547 |
|
Date: 2003/09/24 15:10:05 CDT |
548 |
|
Tag: blume-20030924-sockets |
549 |
|
Description: |
550 |
|
|
551 |
|
1. Fixed SOCKET API and implementation to match Basis spec. |
552 |
|
This required changing the internal representation of sockets to one |
553 |
|
that remembers (for each socket file descriptor) whether it is currently |
554 |
|
blocking or non-blocking. This state is maintained lazily (i.e., a system |
555 |
|
call is made only if the state actually needs to change). |
556 |
|
|
557 |
|
2. OS-specific details of sockets were moved into separate files, thus |
558 |
|
making it possible to unify the bulk of the socket implementations |
559 |
|
between Unix and Win32. |
560 |
|
|
561 |
|
3. CML's socket API changed accordingly. |
562 |
|
(Note that we need to remove non-blocking functions from this API |
563 |
|
since they are redundant in the case of CML!) |
564 |
|
|
565 |
|
4. CML's socket implementation now makes use of non-blocking functions |
566 |
|
provided by Basis, thus removing all OS-dependent code from this part |
567 |
|
of CML. |
568 |
|
|
569 |
|
5. Changed Real64.precision from 52 to 53. Minor cleanup in Real64 code. |
570 |
|
|
571 |
|
---------------------------------------------------------------------- |
572 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
573 |
|
Date: 2003/09/22 12:10:00 CDT |
574 |
|
Tag: blume-20030922-110_43_2 |
575 |
|
Description: |
576 |
|
|
577 |
|
Made a new interim version and bootfiles for developer's bootstrapping |
578 |
|
convenience. |
579 |
|
|
580 |
|
110.43.2 -- NEW BOOTFILES |
581 |
|
|
582 |
|
---------------------------------------------------------------------- |
583 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
584 |
|
Date: 2003/09/19 15:55:00 CDT |
585 |
|
Tag: blume-20030919-cmdir |
586 |
|
Description: |
587 |
|
|
588 |
|
1. new-install.sh -> install.sh |
589 |
|
2. changed default CM "metadata" directory name to ".cm" (instead of "CM") |
590 |
|
3. tweaked installer so that another name instead of .cm can be chosen |
591 |
|
at install time (by setting the CM_DIR_ARC environment variable |
592 |
|
during installation); once installation is complete, the name is |
593 |
|
fixed |
594 |
|
|
595 |
|
---------------------------------------------------------------------- |
596 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
597 |
|
Date: 2003/09/18 16:00:00 CDT |
598 |
|
Tag: blume-20030918-110_43_1 |
599 |
|
Description: |
600 |
|
|
601 |
|
Made a new interim version and bootfiles for developer's bootstrapping |
602 |
|
convenience. |
603 |
|
|
604 |
|
110.43.1 -- NEW BOOTFILES |
605 |
|
|
606 |
|
---------------------------------------------------------------------- |
607 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
608 |
|
Date: 2003/09/18 15:20:00 CDT |
609 |
|
Tag: blume-20030918-misc |
610 |
|
Description: |
611 |
|
|
612 |
|
1. Exported fractionsPerSecond etc. from TimeImp (but not from Time as |
613 |
|
this seems to be controversial at the moment) and used those in |
614 |
|
Posix.ProcEnv.times. |
615 |
|
|
616 |
|
2. Added Time.{from,to}Nanoseconds to Time. |
617 |
|
|
618 |
|
3. Improved Real.{from,to}LargeInt by avoiding needless calculations. |
619 |
|
For example, fromLargeInt never needs to look at more than 3 "big |
620 |
|
digits" to get its 53 bits of precision. |
621 |
|
|
622 |
|
---------------------------------------------------------------------- |
623 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
624 |
|
Date: 2003/09/17 16:30:00 CDT |
625 |
|
Tag: blume-20030917-real32-slices |
626 |
|
Description: |
627 |
|
|
628 |
|
Added an entry to the primitive environment |
629 |
|
(compiler/Semant/statenv/prim.sml) for int32->real64 conversion and |
630 |
|
added code to compiler/CodeGen/main/mlriscGen.sml to implement it. |
631 |
|
|
632 |
|
Removed some of the "magic" constants in real64.sml and replaced them |
633 |
|
with code that generates these values from their corresponding |
634 |
|
integer counterparts. |
635 |
|
|
636 |
|
Made all(?) the slice-related changes to the Basis and made everything |
637 |
|
compile again... |
638 |
|
|
639 |
|
---------------------------------------------------------------------- |
640 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
641 |
|
Date: 2003/09/15 17:45:00 CDT |
642 |
|
Tag: blume-20030915-rbase |
643 |
|
Description: |
644 |
|
|
645 |
|
Fixed bug in Real.fromLargeInt. |
646 |
|
|
647 |
|
---------------------------------------------------------------------- |
648 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
649 |
|
Date: 2003/09/13 18:11:00 CDT |
650 |
|
Tag: blume-20030913-libinstall |
651 |
|
Description: |
652 |
|
|
653 |
|
Minor bugfix in config/libinstall (set anchor with path to |
654 |
|
standalone tool after installing it, otherwise libraries that |
655 |
|
need ml-lex or ml-yacc won't compile the first time the installer |
656 |
|
runs). |
657 |
|
|
658 |
|
---------------------------------------------------------------------- |
659 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
660 |
|
Date: 2003/09/12 11:45:00 CDT |
661 |
|
Tag: blume-20030912-various |
662 |
|
Description: |
663 |
|
|
664 |
|
- fixed bug in Real.toLargeInt |
665 |
|
- fixed bug in Posix.ProcEnv.times |
666 |
|
- changed inputLine functions to return an option |
667 |
|
- minor installer improvements / bugfixes |
668 |
|
- changed default @SMLalloc parameter for x86/celeron to 64k |
669 |
|
|
670 |
|
---------------------------------------------------------------------- |
671 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
672 |
|
Date: 2003/09/09 22:00:00 CDT |
673 |
|
Tag: Release_110_43 |
674 |
|
Description: |
675 |
|
|
676 |
|
New working release 110.43. New bootfiles. |
677 |
|
|
678 |
|
---------------------------------------------------------------------- |
679 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
680 |
|
Date: 2003/09/09 19:20:00 CDT |
681 |
|
Tag: blume-20030909-installer |
682 |
|
Description: |
683 |
|
|
684 |
|
Rewrote large parts of config/install.sh in SML (config/libinstall.sml). |
685 |
|
Modified config/install.bat to take advantage of it. Also modified |
686 |
|
config/install.sh (and called it config/new-install.sh) to take advantage |
687 |
|
of it on Unix systems. (The SML code is (supposed to be) platform- |
688 |
|
independent.) |
689 |
|
|
690 |
|
The installer can now install everything under Win32 |
691 |
|
as well as under *nix as long as it compiles. |
692 |
|
|
693 |
|
Other changes: |
694 |
|
|
695 |
|
- made CML compile again under Win32 |
696 |
|
- made eXene compile under Win32 (by providing a fake structure UnixSock |
697 |
|
and by using OS.Process.getEnv instead of Posix.ProcEnv.getenv) |
698 |
|
- fixed a bug in nowhere: it assumed that type OS.Process.status is the |
699 |
|
same as type int; under Win32 it isn't |
700 |
|
- fixed some slice-related problems in the win32-specific parts of CML |
701 |
|
- added a functor argument "sameVol" to os-path-fn.sml in the Basis |
702 |
|
(under Win32, the volume name is case-insensitive, and the |
703 |
|
OS.Path code compares volume names for equality) |
704 |
|
|
705 |
|
---------------------------------------------------------------------- |
706 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
707 |
|
Date: 2003/09/08 11:55:00 CDT |
708 |
|
Tag: blume-20030908-fullpath |
709 |
|
Description: |
710 |
|
|
711 |
|
Made Win32 version of OS.FileSys.fullPath return current directory |
712 |
|
when given an empty string. This is what the spec says, and incidentally, |
713 |
|
CM depends on it. (CM otherwise goes into an infinite loop in certain |
714 |
|
cases when presented with the name of a non-existing .cm file.) |
715 |
|
|
716 |
|
---------------------------------------------------------------------- |
717 |
|
Name: Matthias Blume (blume (at) tti - c (dot) org) |
718 |
Date: 2003/09/04 16:30:00 CDT |
Date: 2003/09/04 16:30:00 CDT |
719 |
Tag: blume-20030905-slices-etc |
Tag: blume-20030905-slices-etc |
720 |
Description: |
Description: |
755 |
ArraySlice). |
ArraySlice). |
756 |
|
|
757 |
---------------------------------------------------------------------- |
---------------------------------------------------------------------- |
758 |
Name: Matthias Blume (blume@tti-c.org) |
Name: Matthias Blume (blume (at) tti - c (dot) org) |
759 |
Date: 2003/08/28 17:00:00 CDT |
Date: 2003/08/28 17:00:00 CDT |
760 |
Tag: blume-20030828-intinf |
Tag: blume-20030828-intinf |
761 |
Description: |
Description: |
842 |
has been added. |
has been added. |
843 |
|
|
844 |
---------------------------------------------------------------------- |
---------------------------------------------------------------------- |
845 |
Name: Matthias Blume (blume@tti-c.org) |
Name: Matthias Blume (blume (at) tti - c (dot) org) |
846 |
Date: 2003/08/11 15:45:00 CDT |
Date: 2003/08/11 15:45:00 CDT |
847 |
Tag: blume-20030811-windows |
Tag: blume-20030811-windows |
848 |
Description: |
Description: |
937 |
use by MacQueen, (Lucasz) Zairek, and (George) Cao at uchicago. |
use by MacQueen, (Lucasz) Zairek, and (George) Cao at uchicago. |
938 |
|
|
939 |
---------------------------------------------------------------------- |
---------------------------------------------------------------------- |
940 |
Name: Matthias Blume (blume@tti-c.org) |
Name: Matthias Blume (blume (at) tti - c (dot) org) |
941 |
Date: 2003/05/27 16:55:00 CDT |
Date: 2003/05/27 16:55:00 CDT |
942 |
Tag: blume-20030527-polyeq |
Tag: blume-20030527-polyeq |
943 |
Description: |
Description: |
945 |
Tried to eliminated most cases of polymorphic equality. |
Tried to eliminated most cases of polymorphic equality. |
946 |
|
|
947 |
---------------------------------------------------------------------- |
---------------------------------------------------------------------- |
948 |
Name: Matthias Blume (blume@tti-c.org) |
Name: Matthias Blume (blume (at) tti - c (dot) org) |
949 |
Date: 2003/05/21 17:45:00 CDT |
Date: 2003/05/21 17:45:00 CDT |
950 |
Tag: blume-20030517-complete |
Tag: blume-20030517-complete |
951 |
Description: |
Description: |
958 |
without a single non-exhaustive match- or bind warning. |
without a single non-exhaustive match- or bind warning. |
959 |
|
|
960 |
---------------------------------------------------------------------- |
---------------------------------------------------------------------- |
961 |
Name: Matthias Blume (blume@tti-c.org) |
Name: Matthias Blume (blume (at) tti - c (dot) org) |
962 |
Date: 2003/05/17 10:20:00 CDT |
Date: 2003/05/17 10:20:00 CDT |
963 |
Tag: blume-20030517-absyn |
Tag: blume-20030517-absyn |
964 |
Description: |
Description: |