vote up 1 vote down star
2

I'm looking for a way to compile C source code into high-performance Java bytecode. I've successfully used NestedVM, but the performance hit is not acceptable for a project I'm working on. I've also seen various open source projects aimed at this problem and a couple of commercial products. This SO question deals with general problem of converting non-Java into Java source, but I only want to go from C to Java bytecode.

What's the best way to compile C source code into high-performance, pure Java bytecode?

flag

73% accept rate
What are you comparing the performance to? Are you saying the converted C code runs slower in the VM than native C code? or are you saying that it runs slower than Java under the VM? If it is the first then I'm don't think you can do anything about (maybe use JNI but that's not your question) – hhafez Jan 20 at 1:32
NestedVM works by creating a virtual maching on top of the JVM. This leads to significant overhead, compared to an approach where the C source is compiled directly into bytecode. – Rich Apodaca Jan 21 at 23:57

6 Answers

vote up 4 vote down check

Um, that's called "a compiler". You're asking for a C compiler that targets the JVM.

Google for that and you will find the Axiomatic Ansi C Compiler.

link|flag
vote up 2 vote down

Being the author of Cibyl, I might be biased here. Anyway, I've looked at the java bytecode generated by the axiomatic C compiler, and it is not efficient. NestedVM and Cibyl both works by compiling MIPS binaries and then translating the binary into Java bytecode. It's surprisingly efficient, with the main problem being memory access of 8- and 16-byte values (which needs to be done in multiple steps).

NestedVM and Cibyl have slightly different performance characteristics, with Cibyl typically being faster for integer-heavy workloads whereas NestedVM handles floats and doubles better. This is because Cibyl uses GCC soft-float support (though using "real" Java bytecode floating point instructions) while NestedVM translates MIPS FPU instructions.

Cibyl is also more targeted to J2ME environments, although it's definately useable on other platforms as well. My guess is that you would have more luck with either of them than with the Axiomatic C compiler.

link|flag
vote up 1 vote down

It's not exactly what you asked for, but Cibyl converts compiled C programs into JVM bytecode. It's the same idea as NestedVM (which you mentioned) but might be faster for your task being as how it's an independent implementation.

link|flag
vote up 1 vote down

I believe some projects have attempted this, but there is just no way to deal with pointers without some pretty severe restrictions about what can access what (essentially they have to be converted into array indexes and arrays allocated instead of memory)

If you have C without too much reliance on pointers, and you want it into the JVM, you might just convert it to Java--should be pretty easy and the performance shouldn't be too bad. C still beats Java in most areas by about 2x with some areas much worse and in a few areas Java actually beats C (heap memory management, for one), but compared to most other languages (interpreted ones at least), java and c are 100x faster, so the difference between them is pretty meaningless from that point of view.

link|flag
vote up 1 vote down

try C2J software................

type c to java translator in google .you will get the link to download

link|flag
vote up 0 vote down

Thanks to feroz, I was reminded of C2J, which looks like it's GPL-licensed (at least for the beta period - which started in... 2001?). Not sure if it uses a NestedVM-type approach or something else. Might be worth checking out again.

link|flag

Your Answer

Get an OpenID
or

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