MiniD.2.0_doc.7z Phobos.1.037_doc.7z Phobos.2.021_doc.7z Tango.0.99.7_doc.7z dil.1.000-a_doc.7z
Purpose
dil is a hand-crafted compiler implementation for the D programming language written in D 1.0 using the Tango standard library. The lexer and the parser are fully implemented. Semantic analysis is being worked on. The backend will most probably be LLVM.
What dil can do at the present:
- dil is fully internationalized and can output compiler messages in English, German, Turkish and Finnish. You can determine which language to use with a setting in the configuration file.
- Generate documentation from Ddoc comments. In comparison to dmd, dil has fewer bugs and also offers a few treats. It is possible to generate PDF documents from the HTML files using PrinceXML. See kandil for more information. Example documentation of some projects (outdated; will be updated soon):
- dil 1.000-a (7zip, PDF)
- Tango 0.99.7 (7zip, PDF, report)
- Phobos 1.037 (7zip, PDF)
- Phobos 2.021 (7zip)
- MiniD 2.0 (7zip).
- Generate XML or HTML documents. You can choose to generate tags for tokens only or you can also have the whole parse tree unparsed. The whitespace of the original source file is preserved. You can view the HTML documents in any browser you like. The XML documents can only be viewed in W3C-standards compatible browsers(*) in combination with an XML formatting CSS document. dil provides two ordinary CSS documents (for XML/HTML) which can be customized to one's heart's content. Example: dil's source code in XML or HTML. (*Note: Internet Explorer is the only browser that spectacularly fails at this job.)
- Produce module dependency graphs using the graphviz dot format. For example, see the dot file of dil: rendered in SVG, PNG (2.7MB) or GIF. Cyclic edges (import statements) and nodes (modules) are highlighted in red. The edges of public imports are bold.
- Output code statistics (lines of code, count syntax tree nodes and tokens, number of whitespace characters etc.) When dil has advanced enough OO-metrics will be supported. Example: dstress (1.5MB text; totals are at the bottom)
- dil can parse D 2.0 additions:
- Delimited and token string literals.
- ForeachRangeStatement.
- Optional TemplateParameterList in IsExpression.
- const and invariant in IsExpressions.
- TemplateThisParameter.
- Cast expressions: cast(const) and cast(invariant).
- Type constructors: const(Type) and invariant(Type).
- const and invariant attributes after the parameter list of a function (C++ style.)
- typeof(return).
- Traits expressions: __traits(Identifier) and __traits(Identifier, TemplateArguments).
- const/invariant/final/scope/static as storage classes in parameter lists (e.g. void func(ref const Foo f);).
- invariant as a storage class for declarations (e.g. invariant Foo f;).
- The identifier __EOF__ is interpreted as the end of file.
- Template Constraints.
- auto return type for Function Templates.
- Modified syntax for Enums (manifest constants.)
Help
Writing a fully functional compiler is a huge undertaking and can therefore take months and years for a single person. Perhaps you would like to give a hand and speed up the development of this project. Here are some of the things you could do for dil and the D community:
- Document the inner workings of DMD's front-end, specifically semantic analysis (SA.) This would help me immensely to implement SA for dil and be as close to the official D compiler as possible. Or you could:
- Lobby for better and clearer D language specifications.
- Learn git and start writing code for dil. The code you write will be credited to you, even if I commit the patches (as git distinguishes between author and submitter of revisions.)
- Any kind of interesting feedback is always welcome.
Planned Features
- Refactoring (renaming symbols, modules; changing the type of a symbol etc.)
- Coding rules enforcement.
- Code search.
- Code analysis (lint-like).
- Code formatting.
- Translate D code to other languages.
- Port D 1.0 code to D 2.0.
Meaning:
The word dil comes from the Turkish language and means among other things a) tongue or b) language. It is a very fitting name for this project because of its meaning and because it starts with the letter d and for the reason that the project owner has Turkish origins.
Contact
Feel free to join my IRC channel, #dil, which I've set up on freenode.net. You can also send me a plain e-Mail if you have questions regarding my project.
License
Some people might not like the license under which dil is currently being developed. In fact, it could be off-putting for some programmers who would like to contribute to it or make use of it as a client. However, please keep in mind that a lot of hours were spent in order to come up with a compiler that is well documented and has a solid design. It is not unlikely that the author will put the project under a less restrictive license one time or another. It could be LGPL3 or even BSD. It very much depends on how many cookies and apple pies somebody might be willing to stuff the author with.
Download
There are no downloadable binaries yet. If you have DSSS you can use the fetch command, "dsss net fetch dil.zip", to get the latest revision of the source code. Click the "Source"-tab to find out how to get the sources using Git.