13 |
Description: |
Description: |
14 |
|
|
15 |
---------------------------------------------------------------------- |
---------------------------------------------------------------------- |
16 |
|
Name: Allen Leung |
17 |
|
Date: 2002/03/21 20:30:00 EST |
18 |
|
Tag: leunga-20020321-cfg |
19 |
|
Description: |
20 |
|
|
21 |
|
Fixed a potential problem in cfg edge splitting. |
22 |
|
|
23 |
|
---------------------------------------------------------------------- |
24 |
|
Name: Allen Leung |
25 |
|
Date: 2002/03/21 17:15:00 EST |
26 |
|
Tag: leunga-20020321-x86-fp-cfg |
27 |
|
Description: |
28 |
|
|
29 |
|
1. Recoded the buggy parts of x86-fp. |
30 |
|
|
31 |
|
a. All the block reordering code has been removed. |
32 |
|
We now depend on the block placement phases to do this work. |
33 |
|
|
34 |
|
b. Critical edge splitting code has been simplified and moved into the |
35 |
|
CFG modules, as where they belong. |
36 |
|
|
37 |
|
Both of these were quite buggy and complex. The code is now much, much |
38 |
|
simpler. |
39 |
|
|
40 |
|
2. X86 backend. |
41 |
|
|
42 |
|
a. Added instructions for 64-bit support. Instruction selection for |
43 |
|
64-bit has not been committed, however, since that |
44 |
|
requires changes to MLTREE which haven't been approved by |
45 |
|
Lal and John. |
46 |
|
|
47 |
|
b. Added support for FUCOMI and FUCOMIP when generating code for |
48 |
|
PentiumPro and above. We only generate these instructions in |
49 |
|
the fast-fp mode. |
50 |
|
|
51 |
|
c. Added cases for JP and JNP in X86FreqProps. |
52 |
|
|
53 |
|
3. CFG |
54 |
|
|
55 |
|
CFG now has a bunch of methods for edge splitting and merging. |
56 |
|
|
57 |
|
4. Machine description. |
58 |
|
|
59 |
|
John's simplification of MLTREE_BASIS.fcond broke a few machine |
60 |
|
description things: |
61 |
|
|
62 |
|
rtl-build.{sig,sml} and hppa.mdl fixed. |
63 |
|
|
64 |
|
NOTE: the machine description stuff in the repository is still broken. |
65 |
|
Again, I can't put my fixes in because that involves |
66 |
|
changes to MLTREE. |
67 |
|
|
68 |
|
---------------------------------------------------------------------- |
69 |
|
Name: Matthias Blume |
70 |
|
Date: 2002/03/20 15:55:00 EST |
71 |
|
Tag: blume-20020320-kmp |
72 |
|
Description: |
73 |
|
|
74 |
|
Implemented Knuth-Morris-Pratt string matching in PreString and used |
75 |
|
it for String.isSubstring, Substring.isSubstring, and |
76 |
|
Substring.position. |
77 |
|
|
78 |
|
(Might need some stress-testing. Simple examples worked fine.) |
79 |
|
|
80 |
|
---------------------------------------------------------------------- |
81 |
|
Name: Matthias Blume |
82 |
|
Date: 2002/03/19 16:37:00 EST |
83 |
|
Tag: blume-20020319-witnesses |
84 |
|
Description: |
85 |
|
|
86 |
|
Added a structure C.W and functions convert/Ptr.convert to ml-nlffi-lib. |
87 |
|
|
88 |
|
This implements a generic mechanism for changing constness qualifiers |
89 |
|
anywhere within big C types without resorting to outright "casts". |
90 |
|
(So far, functions such as C.rw/C.ro or C.Ptr.rw/C.Ptr.ro only let you |
91 |
|
modify the constness at the outermost level.) |
92 |
|
The implementation of "convert" is based on the idea of "witness" |
93 |
|
values -- values that are not used by the operation but whose types |
94 |
|
"testify" to their applicability. On the implementation side, "convert" |
95 |
|
is simply a projection (returning its second curried argument). With |
96 |
|
cross-module inlining, it should not result in any machine code being |
97 |
|
generated. |
98 |
|
|
99 |
|
---------------------------------------------------------------------- |
100 |
|
Name: Matthias Blume |
101 |
|
Date: 2002/03/15 16:40:00 EST |
102 |
|
Tag: blume-20020315-basis |
103 |
|
Description: |
104 |
|
|
105 |
|
Provided (preliminary?) implementations for |
106 |
|
|
107 |
|
{String,Substring}.{concatWith,isSuffix,isSubstring} |
108 |
|
|
109 |
|
and |
110 |
|
|
111 |
|
Substring.full |
112 |
|
|
113 |
|
Those are in the Basis spec but they were missing in SML/NJ. |
114 |
|
|
115 |
|
---------------------------------------------------------------------- |
116 |
|
Name: Matthias Blume |
117 |
|
Date: 2002/03/14 21:30:00 EST |
118 |
|
Tag: blume-20020314-controls |
119 |
|
Description: |
120 |
|
|
121 |
|
Controls: |
122 |
|
--------- |
123 |
|
|
124 |
|
1. Factored out the recently-added Controls : CONTROLS stuff and put |
125 |
|
it into its own library $/controls-lib.cm. The source tree for |
126 |
|
this is under src/smlnj-lib/Controls. |
127 |
|
|
128 |
|
2. Changed the names of types and functions in this interface, so they |
129 |
|
make a bit more "sense": |
130 |
|
|
131 |
|
module -> registry |
132 |
|
'a registry -> 'a group |
133 |
|
|
134 |
|
3. The interface now deals in ref cells only. The getter/setter interface |
135 |
|
is (mostly) gone. |
136 |
|
|
137 |
|
4. Added a function that lets one register an already-existing ref cell. |
138 |
|
|
139 |
|
5. Made the corresponding modifications to the rest of the code so that |
140 |
|
everything compiles again. |
141 |
|
|
142 |
|
6. Changed the implementation of Controls.MLRISC back to something closer |
143 |
|
to the original. In particular, this module (and therefore MLRISC) |
144 |
|
does not depend on Controls. There now is some link-time code in |
145 |
|
int-sys.sml that registers the MLRISC controls with the Controls |
146 |
|
module. |
147 |
|
|
148 |
|
CM: |
149 |
|
--- |
150 |
|
|
151 |
|
* One can now specify the lambda-split aggressiveness in init.cmi. |
152 |
|
|
153 |
|
---------------------------------------------------------------------- |
154 |
|
Name: Allen Leung |
155 |
|
Date: 2002/03/13 17:30:00 EST |
156 |
|
Tag: leunga-20020313-x86-fp-unary |
157 |
|
Description: |
158 |
|
|
159 |
|
Bug fix for: |
160 |
|
|
161 |
|
> leunga@weaselbane:~/Yale/tmp/sml-dist{21} bin/sml |
162 |
|
> Standard ML of New Jersey v110.39.1 [FLINT v1.5], March 08, 2002 |
163 |
|
> - fun f(x,(y,z)) = Real.~ y; |
164 |
|
> [autoloading] |
165 |
|
> [autoloading done] |
166 |
|
> fchsl (%eax), 184(%esp) |
167 |
|
> Error: MLRisc bug: X86MCEmitter.emitInstr |
168 |
|
> |
169 |
|
> uncaught exception Error |
170 |
|
> raised at: ../MLRISC/control/mlriscErrormsg.sml:16.14-16.19 |
171 |
|
|
172 |
|
The problem was that the code generator did not generate any fp registers |
173 |
|
in this case, and the ra didn't know that it needed to run the X86FP phase to |
174 |
|
translate the pseudo fp instruction. This only happened with unary fp |
175 |
|
operators in certain situations. |
176 |
|
|
177 |
|
---------------------------------------------------------------------- |
178 |
|
Name: Matthias Blume |
179 |
|
Date: 2002/03/13 14:00:00 EST |
180 |
|
Tag: blume-20020313-overload-etc |
181 |
|
Description: |
182 |
|
|
183 |
|
1. Added _overload as a synonym for overload for backward compatibility. |
184 |
|
(Control.overloadKW must be true for either version to be accepted.) |
185 |
|
|
186 |
|
2. Fixed bug in install script that caused more things to be installed |
187 |
|
than what was requested in config/targets. |
188 |
|
|
189 |
|
3. Made CM aware of the (_)overload construct so that autoloading |
190 |
|
works. |
191 |
|
|
192 |
|
---------------------------------------------------------------------- |
193 |
|
Name: Matthias Blume |
194 |
|
Date: 2002/03/12 22:03:00 EST |
195 |
|
Tag: blume-20020312-url |
196 |
|
Description: |
197 |
|
|
198 |
|
Forgot to update BOOT and srcarchiveurl. |
199 |
|
|
200 |
|
---------------------------------------------------------------------- |
201 |
|
Name: Matthias Blume |
202 |
|
Date: 2002/03/12 17:30:00 EST |
203 |
|
Tag: blume-20020312-version110392 |
204 |
|
Description: |
205 |
|
|
206 |
|
Yet another version number bump (because of small changes to the |
207 |
|
binfile format). Version number is now 110.39.2. NEW BOOTFILES! |
208 |
|
|
209 |
|
Changes: |
210 |
|
|
211 |
|
The new pid generation scheme described a few weeks ago was overly |
212 |
|
complicated. I implemented a new mechanism that is simpler and |
213 |
|
provides a bit more "stability": Once CM has seen a compilation |
214 |
|
unit, it keeps its identity constant (as long as you do not delete |
215 |
|
those crucial CM/GUID/* files). This means that when you change |
216 |
|
an interface, compile, then go back to the old interface, and |
217 |
|
compile again, you arrive at the original pid. |
218 |
|
|
219 |
|
There now also is a mechanism that instructs CM to use the plain |
220 |
|
environment hash as a module's pid (effectively making its GUID |
221 |
|
the empty string). For this, "noguid" must be specified as an |
222 |
|
option to the .sml file in question within its .cm file. |
223 |
|
This is most useful for code that is being generated by tools such |
224 |
|
as ml-nlffigen (because during development programmers tend to |
225 |
|
erase the tool's entire output directory tree including CM's cached |
226 |
|
GUIDs). "noguid" is somewhat dangerous (since it can be used to locally |
227 |
|
revert to the old, broken behavior of SML/NJ, but in specific cases |
228 |
|
where there is no danger of interface confusion, its use is ok |
229 |
|
(I think). |
230 |
|
|
231 |
|
ml-nlffigen by default generates "noguid" annotations. They can be |
232 |
|
turned off by specifying -guid in its command line. |
233 |
|
|
234 |
|
---------------------------------------------------------------------- |
235 |
|
Name: Lal George |
236 |
|
Date: 2002/03/12 12 14:42:36 EST |
237 |
|
Tag: george-20020312-frequency-computation |
238 |
|
Description: |
239 |
|
|
240 |
|
Integrated jump chaining and static block frequency into the |
241 |
|
compiler. More details and numbers later. |
242 |
|
|
243 |
|
---------------------------------------------------------------------- |
244 |
|
Name: Lal George |
245 |
|
Date: 2002/03/11 11 22:38:53 EST |
246 |
|
Tag: george-20020311-jump-chain-elim |
247 |
|
Description: |
248 |
|
|
249 |
|
Tested the jump chain elimination on all architectures (except the |
250 |
|
hppa). This is on by default right now and is profitable for the |
251 |
|
alpha and x86, however, it may not be profitable for the sparc and ppc |
252 |
|
when compiling the compiler. |
253 |
|
|
254 |
|
The gc test will typically jump to a label at the end of the cluster, |
255 |
|
where there is another jump to an external cluster containing the actual |
256 |
|
code to invoke gc. This is to allow factoring of common gc invocation |
257 |
|
sequences. That is to say, we generate: |
258 |
|
|
259 |
|
f: |
260 |
|
testgc |
261 |
|
ja L1 % jump if above to L1 |
262 |
|
|
263 |
|
L1: |
264 |
|
jmp L2 |
265 |
|
|
266 |
|
|
267 |
|
After jump chain elimination the 'ja L1' instructions is converted to |
268 |
|
'ja L2'. On the sparc and ppc, many of the 'ja L2' instructions may end |
269 |
|
up being implemented in their long form (if L2 is far away) using: |
270 |
|
|
271 |
|
jbe L3 % jump if below or equal to L3 |
272 |
|
jmp L2 |
273 |
|
L3: |
274 |
|
... |
275 |
|
|
276 |
|
|
277 |
|
For large compilation units L2 may be far away. |
278 |
|
|
279 |
|
|
280 |
|
---------------------------------------------------------------------- |
281 |
|
Name: Matthias Blume |
282 |
|
Date: 2002/03/11 13:30:00 EST |
283 |
|
Tag: blume-20020311-mltreeeval |
284 |
|
Description: |
285 |
|
|
286 |
|
A functor parameter was missing. |
287 |
|
|
288 |
|
---------------------------------------------------------------------- |
289 |
|
Name: Allen Leung |
290 |
|
Date: 2002/03/11 10:30:00 EST |
291 |
|
Tag: leunga-20020311-runtime-string0 |
292 |
|
Description: |
293 |
|
|
294 |
|
The representation of the empty string now points to a |
295 |
|
legal null terminated C string instead of unit. It is now possible |
296 |
|
to convert an ML string into C string with InlineT.CharVector.getData. |
297 |
|
This compiles into one single machine instruction. |
298 |
|
|
299 |
|
---------------------------------------------------------------------- |
300 |
|
Name: Allen Leung |
301 |
|
Date: 2002/03/10 23:55:00 EST |
302 |
|
Tag: leunga-20020310-x86-call |
303 |
|
Description: |
304 |
|
|
305 |
|
Added machine generation for CALL instruction (relative displacement mode) |
306 |
|
|
307 |
|
---------------------------------------------------------------------- |
308 |
|
Name: Matthias Blume |
309 |
|
Date: 2002/03/08 16:05:00 |
310 |
|
Tag: blume-20020308-entrypoints |
311 |
|
Description: |
312 |
|
|
313 |
|
Version number bumped to 110.39.1. NEW BOOTFILES! |
314 |
|
|
315 |
|
Entrypoints: non-zero offset into a code object where execution should begin. |
316 |
|
|
317 |
|
- Added the notion of an entrypoint to CodeObj. |
318 |
|
- Added reading/writing of entrypoint info to Binfile. |
319 |
|
- Made runtime system bootloader aware of entrypoints. |
320 |
|
- Use the address of the label of the first function given to mlriscGen |
321 |
|
as the entrypoint. This address is currently always 0, but it will |
322 |
|
not be 0 once we turn on block placement. |
323 |
|
- Removed the linkage cluster code (which was The Other Way(tm) of dealing |
324 |
|
with entry points) from mlriscGen. |
325 |
|
|
326 |
|
---------------------------------------------------------------------- |
327 |
|
Name: Allen Leung |
328 |
|
Date: 2002/03/07 20:45:00 EST |
329 |
|
Tag: leunga-20020307-x86-cmov |
330 |
|
Description: |
331 |
|
|
332 |
|
Bug fixes for CMOVcc on x86. |
333 |
|
|
334 |
|
1. Added machine code generation for CMOVcc |
335 |
|
2. CMOVcc is now generated in preference over SETcc on PentiumPro or above. |
336 |
|
3. CMOVcc cannot have an immediate operand as argument. |
337 |
|
|
338 |
|
---------------------------------------------------------------------- |
339 |
|
Name: Matthias Blume |
340 |
|
Date: 2002/03/07 16:15:00 EST |
341 |
|
Tag: blume-20020307-controls |
342 |
|
Description: |
343 |
|
|
344 |
|
This is a very large but mostly boring patch which makes (almost) |
345 |
|
every tuneable compiler knob (i.e., pretty much everything under |
346 |
|
Control.* plus a few other things) configurable via both the command |
347 |
|
line and environment variables in the style CM did its configuration |
348 |
|
until now. |
349 |
|
|
350 |
|
Try starting sml with '-h' (or, if you are brave, '-H') |
351 |
|
|
352 |
|
To this end, I added a structure Controls : CONTROLS to smlnj-lib.cm which |
353 |
|
implements the underlying generic mechanism. |
354 |
|
|
355 |
|
The interface to some of the existing such facilities has changed somewhat. |
356 |
|
For example, the MLRiscControl module now provides mkFoo instead of getFoo. |
357 |
|
(The getFoo interface is still there for backward-compatibility, but its |
358 |
|
use is deprecated.) |
359 |
|
|
360 |
|
The ml-build script passes -Cxxx=yyy command-line arguments through so |
361 |
|
that one can now twiddle the compiler settings when using this "batch" |
362 |
|
compiler. |
363 |
|
|
364 |
|
TODO items: |
365 |
|
|
366 |
|
We should go through and throw out all controls that are no longer |
367 |
|
connected to anything. Moreover, we should go through and provide |
368 |
|
meaningful (and correct!) documentation strings for those controls |
369 |
|
that still are connected. |
370 |
|
|
371 |
|
Currently, multiple calls to Controls.new are accepted (only the first |
372 |
|
has any effect). Eventually we should make sure that every control |
373 |
|
is being made (via Controls.new) exactly once. Future access can then |
374 |
|
be done using Controls.acc. |
375 |
|
|
376 |
|
Finally, it would probably be a good idea to use the getter-setter |
377 |
|
interface to controls rather than ref cells. For the time being, both |
378 |
|
styles are provided by the Controls module, but getter-setter pairs are |
379 |
|
better if thread-safety is of any concern because they can be wrapped. |
380 |
|
|
381 |
|
***************************************** |
382 |
|
|
383 |
|
One bug fix: The function blockPlacement in three of the MLRISC |
384 |
|
backpatch files used to be hard-wired to one of two possibilities at |
385 |
|
link time (according to the value of the placementFlag). But (I |
386 |
|
think) it should rather sense the flag every time. |
387 |
|
|
388 |
|
***************************************** |
389 |
|
|
390 |
|
Other assorted changes (by other people who did not supply a HISTORY entry): |
391 |
|
|
392 |
|
1. the cross-module inliner now works much better (Monnier) |
393 |
|
2. representation of weights, frequencies, and probabilities in MLRISC |
394 |
|
changed in preparation of using those for weighted block placement |
395 |
|
(Reppy, George) |
396 |
|
|
397 |
|
---------------------------------------------------------------------- |
398 |
|
Name: Lal George |
399 |
|
Date: 2002/03/07 14:44:24 EST 2002 |
400 |
|
Tag: george-20020307-weighted-block-placement |
401 |
|
|
402 |
|
Tested the weighted block placement optimization on all architectures |
403 |
|
(except the hppa) using AMPL to generate the block and edge frequencies. |
404 |
|
Changes were required in the machine properties to correctly |
405 |
|
categorize trap instructions. There is an MLRISC flag |
406 |
|
"weighted-block-placement" that can be used to enable weighted block |
407 |
|
placement, but this will be ineffective without block/edge |
408 |
|
frequencies (coming soon). |
409 |
|
|
410 |
|
|
411 |
|
---------------------------------------------------------------------- |
412 |
Name: Lal George |
Name: Lal George |
413 |
Date: 2002/03/05 17:24:48 EST |
Date: 2002/03/05 17:24:48 EST |
414 |
Tag: george-20020305-linkage-cluster |
Tag: george-20020305-linkage-cluster |
415 |
|
|
416 |
In order to support the block placement optimization, the first |
In order to support the block placement optimization, a new cluster |
417 |
cluster that is generated (called the linkage cluster) contains a jump |
is generated as the very first cluster (called the linkage cluster). |
418 |
to the entry point for the compilation unit. The linkage cluster |
It contains a single jump to the 'real' entry point for the compilation |
419 |
contains only one function, so block placement will have no effect on |
unit. Block placement has no effect on the linkage cluster itself, but |
420 |
the linkage cluster itself, but all the other clusters have full |
all the other clusters have full freedom in the manner in which they |
421 |
freedom in the manner in which they reorder blocks or functions. |
reorder blocks or functions. |
422 |
|
|
423 |
On the x86 the typical linkage code that is generated is: |
On the x86 the typical linkage code that is generated is: |
424 |
---------------------- |
---------------------- |
425 |
.align 2 |
.align 2 |
426 |
L0: |
L0: |
427 |
addl $L1-L0, 72(%esp) |
addl $L1-L0, 72(%esp) |
428 |
jmp L0 |
jmp L1 |
429 |
|
|
430 |
|
|
431 |
.align 2 |
.align 2 |
434 |
|
|
435 |
72(%esp) is the memory location for the stdlink register. This |
72(%esp) is the memory location for the stdlink register. This |
436 |
must contain the address of the CPS function being called. In the |
must contain the address of the CPS function being called. In the |
437 |
above example, it contains the address of memory for L0; before |
above example, it contains the address of L0; before |
438 |
calling L1 (the real entry point for the compilation unit), it |
calling L1 (the real entry point for the compilation unit), it |
439 |
must contain the address for L1, and hence |
must contain the address for L1, and hence |
440 |
|
|
441 |
addl $L1-L0, 72(%esp) |
addl $L1-L0, 72(%esp) |
442 |
|
|
443 |
I have tested this on all architectures except the hppa. |
I have tested this on all architectures except the hppa.The increase |
444 |
|
in code size is of course negligible |
445 |
|
|
446 |
---------------------------------------------------------------------- |
---------------------------------------------------------------------- |
447 |
Name: Allen Leung |
Name: Allen Leung |