vote up 4 vote down star
1

Is there a java compiler flag that allows me to use goto as a valid construct? If not, are there any third-party java compilers that supports goto? If not, are there any other languages that support goto while at the same time can easily call methods written in Java?

The reason is I'm making a language that is implemented in Java. Gotos are an important part of my language; I want to be able to compile it to native or JVM bytecode, although it has to be able to easily use Java libraries (ie. C supports goto, but to use it I'd have to rewrite the libraries in C).

I want to generate C or Java, etc source files, and not bytecode or machine code. I'm using a third-party compiler to do that.

flag

1  
Plan B: Download the OpenJDK, and hack up the Java compiler in it to support goto. :-P – Chris Jester-Young Jun 14 at 14:48

7 Answers

vote up 6 vote down check

JVM support goto at bytecode level. If you are doing your own language, you should use libraries like BCEL or ASM, not generating .java file.

link|flag
vote up 4 vote down

The JVM bytecode contains a goto instruction (e.g. see the BCEL documentation).

Don't forget that Java itself supports the concept of jumping to labels, using:

break {labelname}

or

continue {labelname}

See this JDC tech tip for more info. If your language is compiled to JVM bytecode, then you may be able to make use of this.

link|flag
syntax is without the brackets: break labelname; – Thorbjørn Ravn Andersen Jul 21 at 16:00
Yes. I was putting {labelname} to indicate some label should be inserted there. Perhaps not very clear, I appreciate. – Brian Agnew Jul 21 at 17:04
vote up 2 vote down

By definition, no Java compiler allows goto. Java compilers must implement the JLS, and the JLS does not allow gotos. However, it is also clearly possible to compile a language with gotos to the JVM. AMPC is one C-to-JVM compiler that claims to support C89.

Also note that Java bytecode has a goto instruction, though it's obviously instruction-based not line-based.

link|flag
vote up 1 vote down

You can write your code generator to target Jasmin. You can use goto in Jasmin as much as you like. :-)

link|flag
Targeting Jasmin is about equivalent to targeting ASM/BCEL (as in J-16's answer), so meh. :-P – Chris Jester-Young Jun 14 at 14:46
vote up 1 vote down

The goto keyword is reserved but unused in the Java programming language. (From Section 3.9 of The Java Language Specification.)

Therefore, at least in the Java programming language, there is no way to enable the use of goto.

However, as already noted, the goto opcode in the Java virtual machine is functional, and used when the Java compiler produces bytecode from the source.

Chapter 7: Compiling for the Java Virtual Machine from The Java Virtual Machine Specification may be of interest when implementing a JVM language.

link|flag
vote up 1 vote down

Pretty much anything you can do with goto you can do with a loop. goto is really redundant and generally discredited way to program. IMHO.

If you want to goto backwards

LABEL: do {
// code before goto

// goto LABEL
continue LABEL;

// code after goto
break;
} while(true);

If you want to goto forwards

LABEL: do {
// code before goto

// goto LABEL
continue LABEL;

// code after goto
break;
} while(false);
// Label is effectively here
// code after LABEL.
link|flag
vote up 1 vote down

You shouldn't, ever, use goto, as it's EVIL ;-)

More seriously, maybe you could have a look at the famous article from E. Dijkstra : http://www.u.arizona.edu/~rubinson/copyright_violations/Go_To_Considered_Harmful.html

link|flag

Your Answer

Get an OpenID
or

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