This repository has been archived by the owner on Jul 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
limitations.phtml
64 lines (44 loc) · 1.94 KB
/
limitations.phtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
require "shared.inc";
standard_header("Current Limitations");
?>
<p>Here are some limitations of our Dylan implementations:</p>
<h3>Open Dylan</h3>
<ul>
<li>The IDE only runs on Windows because there is only a win32 backend
for DUIM. There is a mostly-completed gtk+ backend.</li>
<li>The generated code doesn't run as fast as it could. More
optimizations are needed.</li>
</ul>
<h3>Gwydion Dylan</h3>
<ul>
<li>d2c (the Gwydion compiler) generates fast code slowly. This
problem was solved in the Open Dylan compiler by supporting
incremental compilation. We'd like to do the same in d2c
eventually.</li>
<li>The Dylan-to-C interface is good, but sometimes has problems with
unusual constructs in system header files.</li>
<!-- What kind of problems? How does it manifest? -->
<li><strong>Debugging is uncomfortable.</strong> Although there's
support on most platforms for dybug, a gdb wrapper that understands
Dylan, this can hardly be called elegant. But at least it's there.</li>
<li>d2c supports most of the Dylan language as specified in the
<a href="books/drm/">Dylan Reference Manual</a> (DRM), but is lacking
support for some features, such as limited collections.</li>
</ul>
<h3>Mindy</h3>
<ul>
<li><strong>Mindy generates slow code quickly.</strong> You can
compile an enormous program into bytecodes in a blink of an eye, but
it won't run as fast as the average Perl script—it certainly
won't compete with GCC. Because Mindy has such a short turn-around
time (and a built-in debugger), some developers use it to prototype
programs, or just to make sure source files will compile before
subjecting them to a (relatively slow) d2c compile.</li>
<li><strong>Mindy doesn't support Dylan macros</strong> and a number
of other useful features.</li>
<li>No further work will be done on Mindy, and it will not be included
with 2.5.0 and later versions. All current work is focused on d2c and
Open Dylan.</li>
</ul>
<?php standard_footer(); ?>