vote up 1 vote down star

I want to make a Java compiler for compilation and execution of all kinds of java programs.

flag
2  
Go for it, then – Ben James Oct 31 at 12:13
1  
Anders? Is that you? – bobince Oct 31 at 12:17
1  
Yeah, good luck with that. – Paul Tomblin Oct 31 at 12:19
2  
You should give reasons why the normal javac or the Eclipse compiler ecj does not fulfill your needs. That helps people understand what you want to accomplish. – Thorbjørn Ravn Andersen Oct 31 at 12:42
Good for you! :D – Ali Parr Oct 31 at 12:55
show 2 more comments

closed as not a real question by Jesper, notnoop, Thorbjørn Ravn Andersen, Amro, Joachim Sauer Oct 31 at 13:25

6 Answers

vote up 0 vote down

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 a(b);

link|flag
vote up 3 vote down

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.

link|flag
vote up 0 vote down

You'll need the language and VM specs, as noted earlier, but maybe you'd like to know a little more:

  1. You'll need to write a language parser to turn .java files into abstract syntax trees (AST). ANTLR is an excellent parser-generator, and I believe it has a Java grammar with which you can start. I don't recall if it's JDK 4 or 5.
  2. Once you have an AST, you'll need to walk the tree and emit byte code to generate the .class file. You'll need to learn ANTLR's capabilities there and the VM spec very well.

It's not an easy task.

Maybe a good warm-up would be to try a simpler language and work your way up.

link|flag
What would be a simpler language to write a parser for ? – whatnick Oct 31 at 13:11
One that you make up - simple variables, operations, etc. Or maybe something like this: jonathan.tang.name/files/scheme_in_48/…. Google "writing a simple parser". – duffymo Oct 31 at 13:20
PostScript would be simpler to write a parser for. Not that you should want to program in PostScript... – uckelman Oct 31 at 15:11
vote up 2 vote down

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.

link|flag
I'm told recently that the Dragon book is considered dated these days. I haven't seen the latest edition. – duffymo Oct 31 at 12:22
vote up 11 vote down
  1. I hope you are really confident with compiler construction.
  2. Read The Java Language Specification
  3. Read The Java Virtual Machine Specification
  4. Go ahead and write your compiler
link|flag
+1 Good reply. It is informative and relevant to the question. – luiscubal Oct 31 at 13:19
vote up 1 vote down

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.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.