mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +00:00
compiler/notes/coding_standards.html:
Document our usual initial comment block.
Document vim modelines a bit more extensively.
Document short %---% lines.
Fix bad formatting results caused by tabs in the HTML code.
Fix documentation rot.
compiler/notes/compiler_design.html:
Explain the terms HLDS, LLDS and MLDS just after their first occurrences.
Fix incorrect references to "passes".
Describe the components of the LLDS and MLDS backends the same way
where possible.
Fix documentation rot.
Fix bugs in English expression.
compiler/notes/developer_intro.html:
Fix documentation rot.
compiler/notes/glossary.html:
Explain that functions also have pred_infos.
compiler/notes/overall_design.html:
Fix bugs in English expression.
compiler/notes/reviews.html:
Fix documentation rot.
Fix bugs in English expression.
compiler/notes/work_in_progress.html:
Use a more accurate name for this page.
61 lines
1.7 KiB
HTML
61 lines
1.7 KiB
HTML
<!--
|
|
vim: ts=4 sw=4 expandtab ft=html
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<title>Partially implemented features</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Partially implemented features</h1>
|
|
|
|
The compiler contains some code for the following features,
|
|
which are not yet completed but work on which has stopped
|
|
(often when the person doing that work has graduated)
|
|
since finishing them off would be quite a bit more work,
|
|
and our current priorities lie elsewhere.
|
|
Still, these could make interesting and worthwhile projects
|
|
if someone has the time for it.
|
|
<p>
|
|
|
|
<ul>
|
|
<li>
|
|
We have incomplete support for a new, more expressive design
|
|
for representing information about
|
|
type classes and type class instances at runtime.
|
|
When complete, the new design
|
|
would allow runtime tests of type class membership,
|
|
it would allow the tabling of predicates with type class constraints,
|
|
and it would allow the debugger to print type_class_infos.
|
|
<li>
|
|
We have added support for dynamic link libraries (DLLs) on Windows.
|
|
This is not yet enabled by default because it has not yet been tested properly.
|
|
<li>
|
|
There is an accurate garbage collector (the hlc.agc grade).
|
|
See the comments in compiler/ml_elim_nested.m
|
|
and the paper on our web page for more details.
|
|
<li>
|
|
There is a `--generate-bytecode' option,
|
|
for a back-end that generates bytecode.
|
|
The bytecode generator is basically complete,
|
|
but we don't have a bytecode interpreter.
|
|
<li>
|
|
A new implementation of the mode system using constraints.
|
|
<li>
|
|
Support for automatic structure reuse
|
|
(reusing old data structures that are no longer live,
|
|
rather than allocating new memory on the heap)
|
|
and compile time garbage collection.
|
|
<li>
|
|
A SOAP interface.
|
|
<!--
|
|
<li>
|
|
Better support for inter-module analysis and optimization.
|
|
-->
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|