0

Is it possible to automatically translate Java bytecode to IJVM? Is there any possibility you know?

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197

1 Answers1

0

IJVM contains a subset of the JVM instruction set, so you could claim it is possible, theoretically, to automatically convert a set of programs that would be compiled only to that particular instruction subset.

I don't know of anything that would actually do it, though. The point of IJVM is to teach assembly, so I suppose that would be counterproductive.

Kraylog
  • 7,383
  • 1
  • 24
  • 35