I want to make a Java compiler for compilation and execution of all kinds of java programs.
|
|
|||||||||||||||||||
|
closed as not a real question by Jesper, notnoop, Thorbjørn Ravn Andersen, Amro, Joachim Sauer Oct 31 at 13:25 |
|
|
You will first need a Parser, and ANTLR (http://www.antlr.org/) has a parser for the Java language and some stub code. The ANTLR reference has a lot of discussion about ambiguities in languages such as Java and C(++, #) such as |
||
|
|
|
|
You can find the source code of Sun's Java compiler in the OpenJDK project. Your question sounds a bit naive - creating a compiler is a huge and complicated software development project, and people who seriously want to do this normally have a lot of experience and knowledge and don't need to ask a question like this. |
||
|
|
|
|
You'll need the language and VM specs, as noted earlier, but maybe you'd like to know a little more:
It's not an easy task. Maybe a good warm-up would be to try a simpler language and work your way up. |
||||||
|
|
|
Essentially buy a good book on the subject of compliers, probably Compilers: Principles, Techniques, and Tools by Aho, Sethi and Ullman. Work all the way through that. Learn the required low level languages, learn to use tools like lex, yacc, bison and the like, probably also gain a reasonably in depth understanding of your target hardware architectures and you should be good to go. |
||
|
|
|
|
||
|
|
|
Well, Eclipse is open source and it includes a Java compiler built-in. Or I believe GCJ is also open source. You can have a look at either of those for ideas. Aho et al is the seminal reference we used twenty odd years ago and I suspect it's still as relevant today (although there may be better tools available that lex and yacc). You can see the JVM spec from here. Those class files are what you will be compiling to. However keep in mind that Java is more than just the language - there's a huge class library that you will need to implement if you don't use Sun's (or someone else's). But, seriously, why would you want to? It may be an interesting exercise in compiler writing but I doubt it would ever amount to competition for the JDK. And, if you want such an "interesting exercise", there are easier languages to use. |
|||
|
|
